diff options
author | Tomas Chvatal <scarabeus@gentoo.org> | 2012-02-18 09:04:57 +0000 |
---|---|---|
committer | Tomas Chvatal <scarabeus@gentoo.org> | 2012-02-18 09:04:57 +0000 |
commit | 97509274ca718dd1056fd027372058e03142172d (patch) | |
tree | c7a721587437bc07a1402c392d407f2b99c78d75 /app-office/libreoffice-bin | |
parent | Cleanup (diff) | |
download | gentoo-2-97509274ca718dd1056fd027372058e03142172d.tar.gz gentoo-2-97509274ca718dd1056fd027372058e03142172d.tar.bz2 gentoo-2-97509274ca718dd1056fd027372058e03142172d.zip |
Fix the revdep-rebuild thingie for good. Wrt bug#404105
(Portage version: 2.2.0_alpha86/cvs/Linux x86_64)
Diffstat (limited to 'app-office/libreoffice-bin')
-rw-r--r-- | app-office/libreoffice-bin/ChangeLog | 6 | ||||
-rw-r--r-- | app-office/libreoffice-bin/libreoffice-bin-3.4.5.2.ebuild | 11 |
2 files changed, 13 insertions, 4 deletions
diff --git a/app-office/libreoffice-bin/ChangeLog b/app-office/libreoffice-bin/ChangeLog index c659a95a908e..8f803f04df94 100644 --- a/app-office/libreoffice-bin/ChangeLog +++ b/app-office/libreoffice-bin/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-office/libreoffice-bin # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-office/libreoffice-bin/ChangeLog,v 1.50 2012/02/17 15:19:29 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-office/libreoffice-bin/ChangeLog,v 1.51 2012/02/18 09:04:57 scarabeus Exp $ + + 18 Feb 2012; Tomáš Chvátal <scarabeus@gentoo.org> + libreoffice-bin-3.4.5.2.ebuild: + Fix the revdep-rebuild thingie for good. Wrt bug#404105 16 Feb 2012; Tomáš Chvátal <scarabeus@gentoo.org> libreoffice-bin-3.4.5.2.ebuild: diff --git a/app-office/libreoffice-bin/libreoffice-bin-3.4.5.2.ebuild b/app-office/libreoffice-bin/libreoffice-bin-3.4.5.2.ebuild index ba1283e19ba2..cb580a295b6f 100644 --- a/app-office/libreoffice-bin/libreoffice-bin-3.4.5.2.ebuild +++ b/app-office/libreoffice-bin/libreoffice-bin-3.4.5.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-office/libreoffice-bin/libreoffice-bin-3.4.5.2.ebuild,v 1.3 2012/02/16 17:47:47 scarabeus Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-office/libreoffice-bin/libreoffice-bin-3.4.5.2.ebuild,v 1.4 2012/02/18 09:04:57 scarabeus Exp $ EAPI=4 @@ -10,7 +10,7 @@ CMAKE_REQUIRED="never" BASE_AMD64_URI="http://dev.gentoo.org/~pacho/libreoffice/" BASE_X86_URI="http://gentoo-pr.org/libreo/libreo/" -inherit kde4-base java-pkg-opt-2 pax-utils +inherit kde4-base java-pkg-opt-2 pax-utils prefix DESCRIPTION="LibreOffice, a full office productivity suite. Binary package" HOMEPAGE="http://www.libreoffice.org" @@ -137,6 +137,11 @@ src_unpack() { default } +src_prepare() { + cp "${FILESDIR}"/50-${PN} "${T}" + eprefixify "${T}"/50-${PN} +} + src_configure() { :; } src_compile() { :; } @@ -146,7 +151,7 @@ src_install() { cp -aR "${S}"/usr/* "${ED}"/usr/ # prevent revdep-rebuild from attempting to rebuild all the time - insinto /etc/revdep-rebuild && doins "${FILESDIR}/50-${PN}" + insinto /etc/revdep-rebuild && doins "${T}/50-${PN}" } |