summaryrefslogtreecommitdiff
path: root/app-misc/mendeleydesktop/mendeleydesktop-0.9.8.2.ebuild
diff options
context:
space:
mode:
authorCtibor <ctibor.brancik@seznam.cz>2012-10-25 00:24:37 +0200
committerCtibor <ctibor.brancik@seznam.cz>2012-10-25 00:24:37 +0200
commit583709d476c5ab6f2a32ca13905c5c53ff987c8c (patch)
tree7dc00d1088a09f790e9004fd409e97fc68a847be /app-misc/mendeleydesktop/mendeleydesktop-0.9.8.2.ebuild
parentcb176805638d07b39db83531fa54419d8bc359a5 (diff)
downloadbrancik-overlay-583709d476c5ab6f2a32ca13905c5c53ff987c8c.tar.gz
brancik-overlay-583709d476c5ab6f2a32ca13905c5c53ff987c8c.tar.bz2
Cleanup of the unused and obsolete ebuilds.
Diffstat (limited to 'app-misc/mendeleydesktop/mendeleydesktop-0.9.8.2.ebuild')
-rw-r--r--app-misc/mendeleydesktop/mendeleydesktop-0.9.8.2.ebuild61
1 files changed, 0 insertions, 61 deletions
diff --git a/app-misc/mendeleydesktop/mendeleydesktop-0.9.8.2.ebuild b/app-misc/mendeleydesktop/mendeleydesktop-0.9.8.2.ebuild
deleted file mode 100644
index b1badbe..0000000
--- a/app-misc/mendeleydesktop/mendeleydesktop-0.9.8.2.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=2
-
-inherit eutils
-
-if [ "${ARCH}" = "amd64" ] ; then
- LNXARCH="linux-x86_64"
-else
- LNXARCH="linux-i486"
-fi
-
-DESCRIPTION="A free research management tool for desktop & web"
-HOMEPAGE="http://www.mendeley.com/"
-SRC_URI="${HOMEPAGE}/downloads/linux/${P}-${LNXARCH}.tar.bz2"
-
-LICENSE="Mendelay-EULA"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-RESTRICT="mirror"
-RDEPEND="dev-libs/openssl:0.9.8
- media-libs/fontconfig
- media-libs/freetype
- media-libs/libpng:1.2"
-
-S="${WORKDIR}/${P}-${LNXARCH}"
-
-MENDELEY_INSTALL_DIR="/opt/${PN}"
-
-src_install() {
- # install menu
- domenu "share/applications/${PN}.desktop"
- # Install commonly used icon sizes
- for res in 16x16 22x22 32x32 48x48 64x64 128x128 ; do
- insinto "/usr/share/icons/hicolor/${res}/apps"
- doins "share/icons/hicolor/${res}/apps/${PN}.png" || \
- die "Installing icons failed."
- done
- insinto "/usr/share/pixmaps"
- doins "share/icons/hicolor/48x48/apps/${PN}.png" || \
- die "Installing pixmap failed."
-
- # dodoc
- dodoc "share/doc/${PN}/"* || die "Installing docs failed."
-
- # create directories for installation
- dodir ${MENDELEY_INSTALL_DIR} || die "dodir failed"
- dodir "${MENDELEY_INSTALL_DIR}/lib" || die "dodir failed"
- dodir "${MENDELEY_INSTALL_DIR}/share" || die "dodir failed"
-
- # install binaries
- mv "bin" "${D}${MENDELEY_INSTALL_DIR}" || die "Installing bin failed."
- mv "lib" "${D}${MENDELEY_INSTALL_DIR}" || die "Installing libs failed."
- mv "share/${PN}" "${D}${MENDELEY_INSTALL_DIR}/share" || \
- die "Installing shared files failed."
- dosym "${MENDELEY_INSTALL_DIR}/bin/${PN}" "/opt/bin/${PN}" || \
- die "Installing launcher symlinks failed."
-}