diff options
author | Michael Weber <xmw@gentoo.org> | 2011-11-11 01:19:34 +0000 |
---|---|---|
committer | Michael Weber <xmw@gentoo.org> | 2011-11-11 01:19:34 +0000 |
commit | b68c6a2ec235df590944b99cb7bb5c69cb719303 (patch) | |
tree | e37525958b04aa327ced230584a7a85bd3b5d117 /media-sound | |
parent | 1.0 is in beta. This is a complete rewrite. (diff) | |
download | gentoo-2-b68c6a2ec235df590944b99cb7bb5c69cb719303.tar.gz gentoo-2-b68c6a2ec235df590944b99cb7bb5c69cb719303.tar.bz2 gentoo-2-b68c6a2ec235df590944b99cb7bb5c69cb719303.zip |
Added || die, thanks ago
(Portage version: 2.1.10.11/cvs/Linux x86_64)
Diffstat (limited to 'media-sound')
-rw-r--r-- | media-sound/id3v2/ChangeLog | 7 | ||||
-rw-r--r-- | media-sound/id3v2/id3v2-0.1.12.ebuild | 10 |
2 files changed, 10 insertions, 7 deletions
diff --git a/media-sound/id3v2/ChangeLog b/media-sound/id3v2/ChangeLog index a28e34d75807..b25c5d6d80eb 100644 --- a/media-sound/id3v2/ChangeLog +++ b/media-sound/id3v2/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-sound/id3v2 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/id3v2/ChangeLog,v 1.27 2010/04/12 09:54:58 aballier Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/id3v2/ChangeLog,v 1.28 2011/11/11 01:19:34 xmw Exp $ + + 11 Nov 2011; Michael Weber <xmw@gentoo.org> id3v2-0.1.12.ebuild: + Added || die, thanks ago *id3v2-0.1.12 (12 Apr 2010) diff --git a/media-sound/id3v2/id3v2-0.1.12.ebuild b/media-sound/id3v2/id3v2-0.1.12.ebuild index f4bb1b19b2c9..a607ddaf6feb 100644 --- a/media-sound/id3v2/id3v2-0.1.12.ebuild +++ b/media-sound/id3v2/id3v2-0.1.12.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2010 Gentoo Foundation +# Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/id3v2/id3v2-0.1.12.ebuild,v 1.1 2010/04/12 09:54:58 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/id3v2/id3v2-0.1.12.ebuild,v 1.2 2011/11/11 01:19:34 xmw Exp $ EAPI=2 @@ -27,7 +27,7 @@ src_configure() { } src_install() { - dobin id3v2 - doman id3v2.1 - dodoc README + dobin id3v2 || die + doman id3v2.1 || die + dodoc README || die } |