diff options
author | Michael Weber <xmw@gentoo.org> | 2014-08-29 11:40:55 +0000 |
---|---|---|
committer | Michael Weber <xmw@gentoo.org> | 2014-08-29 11:40:55 +0000 |
commit | 260aa4133038cbd15dd852ee08b5decfcb69ffb9 (patch) | |
tree | 16a0d94d9a2082cd313e2fa2e74c64df53183e1b /sci-misc | |
parent | Stable for amd64 wrt bug #518214 (diff) | |
download | gentoo-2-260aa4133038cbd15dd852ee08b5decfcb69ffb9.tar.gz gentoo-2-260aa4133038cbd15dd852ee08b5decfcb69ffb9.tar.bz2 gentoo-2-260aa4133038cbd15dd852ee08b5decfcb69ffb9.zip |
Version bump (bug 520256, non-maint commit)
(Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 62EEF090)
Diffstat (limited to 'sci-misc')
-rw-r--r-- | sci-misc/mendeleydesktop/ChangeLog | 7 | ||||
-rw-r--r-- | sci-misc/mendeleydesktop/mendeleydesktop-1.12.1.ebuild | 105 |
2 files changed, 111 insertions, 1 deletions
diff --git a/sci-misc/mendeleydesktop/ChangeLog b/sci-misc/mendeleydesktop/ChangeLog index 1c7000c22852..3df33d56c499 100644 --- a/sci-misc/mendeleydesktop/ChangeLog +++ b/sci-misc/mendeleydesktop/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sci-misc/mendeleydesktop # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-misc/mendeleydesktop/ChangeLog,v 1.16 2014/04/29 11:46:28 vikraman Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-misc/mendeleydesktop/ChangeLog,v 1.17 2014/08/29 11:40:55 xmw Exp $ + +*mendeleydesktop-1.12.1 (29 Aug 2014) + + 29 Aug 2014; Michael Weber <xmw@gentoo.org> +mendeleydesktop-1.12.1.ebuild: + Version bump (bug 520256, non-maint commit) *mendeleydesktop-1.11 (29 Apr 2014) diff --git a/sci-misc/mendeleydesktop/mendeleydesktop-1.12.1.ebuild b/sci-misc/mendeleydesktop/mendeleydesktop-1.12.1.ebuild new file mode 100644 index 000000000000..091ce9eafa50 --- /dev/null +++ b/sci-misc/mendeleydesktop/mendeleydesktop-1.12.1.ebuild @@ -0,0 +1,105 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-misc/mendeleydesktop/mendeleydesktop-1.12.1.ebuild,v 1.1 2014/08/29 11:40:55 xmw Exp $ + +EAPI="4" + +inherit eutils multilib + +MY_P_AMD64="${P}-linux-x86_64" +MY_P_X86="${P}-linux-i486" + +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=">=dev-qt/qtcore-4.6:4 + >=dev-qt/qtgui-4.6:4 + >=dev-qt/qtsvg-4.6:4 + >=dev-qt/qtwebkit-4.6:4 + >=dev-qt/qtxmlpatterns-4.6:4" + +QA_PRESTRIPPED=" + /opt/mendeleydesktop/$(get_libdir)/mendeleydesktop/libexec/.* + /opt/mendeleydesktop/$(get_libdir)/lib.*so.*" + +pkg_nofetch() { + elog "Please download ${A} from:" + elog "http://www.mendeley.com/download-mendeley-desktop/" + elog "and move it to ${DISTDIR}" +} + +src_unpack() { + unpack ${A} + + cd "${WORKDIR}" + + if use amd64 || use amd64-linux ; then + mv -f "${MY_P_AMD64}" "${P}" + else + mv -f "${MY_P_X86}" "${P}" + fi +} + +src_prepare() { + # remove bundled Qt libraries + rm -rf lib/mendeleydesktop/plugins \ + || die "failed to remove plugin directory" + 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}/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 + + # install launch script + exeinto /opt/bin + doexe "${FILESDIR}"/${PN} +} |