diff options
author | Fabian Groffen <grobian@gentoo.org> | 2010-10-26 09:34:51 +0000 |
---|---|---|
committer | Fabian Groffen <grobian@gentoo.org> | 2010-10-26 09:34:51 +0000 |
commit | b503e7e31d9615e2c079c59467a37d6f131476ab (patch) | |
tree | 7529da810a9e24bb70efc00782f7b351ceed22b6 /media-libs/raptor | |
parent | Stable for HPPA (bug #333507). (diff) | |
download | gentoo-2-b503e7e31d9615e2c079c59467a37d6f131476ab.tar.gz gentoo-2-b503e7e31d9615e2c079c59467a37d6f131476ab.tar.bz2 gentoo-2-b503e7e31d9615e2c079c59467a37d6f131476ab.zip |
Ebuild is EAPI=3, fix rm of rapper for Prefix
(Portage version: 2.2.01.16711-prefix/cvs/SunOS i386)
Diffstat (limited to 'media-libs/raptor')
-rw-r--r-- | media-libs/raptor/ChangeLog | 5 | ||||
-rw-r--r-- | media-libs/raptor/raptor-1.4.21-r1.ebuild | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/media-libs/raptor/ChangeLog b/media-libs/raptor/ChangeLog index 32f36bbaf59f..80ce7f49e089 100644 --- a/media-libs/raptor/ChangeLog +++ b/media-libs/raptor/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-libs/raptor # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/raptor/ChangeLog,v 1.87 2010/10/24 17:01:14 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/raptor/ChangeLog,v 1.88 2010/10/26 09:34:51 grobian Exp $ + + 26 Oct 2010; Fabian Groffen <grobian@gentoo.org> raptor-1.4.21-r1.ebuild: + Ebuild is EAPI=3, fix rm of rapper for Prefix 24 Oct 2010; Raúl Porcel <armin76@gentoo.org> raptor-1.4.20.ebuild, raptor-1.4.21.ebuild: diff --git a/media-libs/raptor/raptor-1.4.21-r1.ebuild b/media-libs/raptor/raptor-1.4.21-r1.ebuild index 169bf5eb9645..a1ff8d0aaccf 100644 --- a/media-libs/raptor/raptor-1.4.21-r1.ebuild +++ b/media-libs/raptor/raptor-1.4.21-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/raptor/raptor-1.4.21-r1.ebuild,v 1.3 2010/10/20 05:01:03 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/raptor/raptor-1.4.21-r1.ebuild,v 1.4 2010/10/26 09:34:51 grobian Exp $ EAPI=3 inherit eutils libtool @@ -61,5 +61,5 @@ src_install() { find "${ED}" -name '*.la' -exec rm -f '{}' + # Fix file collision with SLOT="2" - rm -f "${D}"/usr/bin/rapper "${D}"/usr/share/man/man1/rapper.1* + rm -f "${ED}"/usr/bin/rapper "${ED}"/usr/share/man/man1/rapper.1* } |