diff options
author | Angelo Arrifano <miknix@gentoo.org> | 2012-02-11 03:39:17 +0000 |
---|---|---|
committer | Angelo Arrifano <miknix@gentoo.org> | 2012-02-11 03:39:17 +0000 |
commit | 381063d0ca3be8bae8fd6ef5e2ea589e5887ecff (patch) | |
tree | 799fbdf74e0f7f5e3c32eba91a512b6809d31d57 /sci-misc/mendeleydesktop | |
parent | Add License for upcoming package sci-misc/mendeleydesktop (diff) | |
download | gentoo-2-381063d0ca3be8bae8fd6ef5e2ea589e5887ecff.tar.gz gentoo-2-381063d0ca3be8bae8fd6ef5e2ea589e5887ecff.tar.bz2 gentoo-2-381063d0ca3be8bae8fd6ef5e2ea589e5887ecff.zip |
Initial ebuild for sci-misc/mendeleydesktop
(Portage version: 2.1.10.41/cvs/Linux x86_64)
Diffstat (limited to 'sci-misc/mendeleydesktop')
-rw-r--r-- | sci-misc/mendeleydesktop/ChangeLog | 16 | ||||
-rw-r--r-- | sci-misc/mendeleydesktop/mendeleydesktop-1.3.1.ebuild | 103 | ||||
-rw-r--r-- | sci-misc/mendeleydesktop/metadata.xml | 10 |
3 files changed, 129 insertions, 0 deletions
diff --git a/sci-misc/mendeleydesktop/ChangeLog b/sci-misc/mendeleydesktop/ChangeLog new file mode 100644 index 000000000000..331f47fb0225 --- /dev/null +++ b/sci-misc/mendeleydesktop/ChangeLog @@ -0,0 +1,16 @@ +# ChangeLog for sci-misc/mendeleydesktop +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sci-misc/mendeleydesktop/ChangeLog,v 1.1 2012/02/11 03:39:17 miknix Exp $ + +*mendeleydesktop-1.3.1 (11 Feb 2012) + + 11 Feb 2012; Angelo Arrifano <miknix@gentoo.org> + +mendeleydesktop-1.3.1.ebuild, +metadata.xml: + Initial ebuild. + + Ebuild copied from http://gentoo-overlays.zugaina.org/funtoo + Credits due to Jean-Francis Roy <jeanfrancisroy@gmail.com> + + No changes other than forcing the user to download the tarball + were made. + diff --git a/sci-misc/mendeleydesktop/mendeleydesktop-1.3.1.ebuild b/sci-misc/mendeleydesktop/mendeleydesktop-1.3.1.ebuild new file mode 100644 index 000000000000..09a71e7c7049 --- /dev/null +++ b/sci-misc/mendeleydesktop/mendeleydesktop-1.3.1.ebuild @@ -0,0 +1,103 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-misc/mendeleydesktop/mendeleydesktop-1.3.1.ebuild,v 1.1 2012/02/11 03:39:17 miknix Exp $ + +EAPI="4" + +inherit eutils multilib + +MY_P_AMD64="${P}-linux-x86_64" +MY_P_X86="${P}-linux-i486" + +if use amd64 || use amd64-linux ; then + MY_P="${MY_P_AMD64}" +elif use x86 || use x86-linux ; then + MY_P="${MY_P_X86}" +fi + +DESCRIPTION="A free research management tool for desktop and web" +HOMEPAGE="http://www.mendeley.com/" +SRC_URI="amd64? ( ${MY_P_AMD64}.tar.bz2 ) + x86? ( ${MY_P_X86}.tar.bz2 ) + amd64-linux? ( ${MY_P_AMD64}.tar.bz2 ) + x86-linux? ( ${MY_P_X86}.tar.bz2 )" + +LICENSE="Mendeley-EULA" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RESTRICT="fetch" + +DEPEND="" +RDEPEND=">=x11-libs/qt-core-4.6 + >=x11-libs/qt-gui-4.6 + >=x11-libs/qt-svg-4.6 + >=x11-libs/qt-webkit-4.6 + >=x11-libs/qt-xmlpatterns-4.6" + +S="${WORKDIR}/${MY_P}" + +QA_PRESTRIPPED=" + /opt/mendeleydesktop/$(get_libdir)/mendeleydesktop/libexec/.* + /opt/mendeleydesktop/$(get_libdir)/lib.*so.*" + +pkg_nofetch() { + elog "Please download ${MY_P} from:" + elog "http://www.mendeley.com" + elog "and move it to ${DISTDIR}" +} + +src_prepare() { + # remove bundled Qt libraries + rm -rf lib/mendeleydesktop/plugins \ + || die "failed to remove plugin directory" + rm lib/mendeleydesktop/libexec/qt.conf \ + || die "failed to remove qt configuration file" + rm -rf lib/qt || die "failed to remove qt libraries" + + # force use of system Qt libraries + sed -i "s:sys\.argv\.count(\"--force-system-qt\") > 0:True:" \ + bin/mendeleydesktop || die "failed to patch startup script" + + # fix library paths + sed -i \ + -e "s:lib/mendeleydesktop:$(get_libdir)/mendeleydesktop:g" \ + -e "s:MENDELEY_BASE_PATH + \"/lib/\":MENDELEY_BASE_PATH + \"/$(get_libdir)/\":g" \ + bin/mendeleydesktop || die "failed to patch library path" +} + +src_install() { + # install menu + domenu share/applications/${PN}.desktop + + # install application icons + insinto /usr/share/icons + doins -r share/icons/hicolor + + # install default icon + insinto /usr/share/pixmaps + doins share/icons/hicolor/48x48/apps/${PN}.png + + # install documentation, but no license file + dodoc share/doc/${PN}/FAQ.pdf + dodoc share/doc/${PN}/Readme.txt + + # install binary + into /opt/${PN} + dobin bin/* + + # install libraries + dolib.so lib/lib*.so* + + # install programs + exeinto /opt/mendeleydesktop/$(get_libdir)/mendeleydesktop/libexec + doexe lib/mendeleydesktop/libexec/* + + # install shared files + insinto /opt/${PN}/share + doins -r share/mendeleydesktop + + # make symbolic to known location + dosym /opt/${PN}/bin/${PN} /opt/bin/${PN} +} diff --git a/sci-misc/mendeleydesktop/metadata.xml b/sci-misc/mendeleydesktop/metadata.xml new file mode 100644 index 000000000000..65c23c0b1c1c --- /dev/null +++ b/sci-misc/mendeleydesktop/metadata.xml @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> + +<pkgmetadata> +<maintainer> + <email>miknix@gentoo.org</email> + <name>Angelo Arrifano</name> +</maintainer> +<longdescription>Mendeley(TM) is a free reference manager and academic social network that can help you organize your research, collaborate with others online, and discover the latest research.</longdescription> +</pkgmetadata> |