diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-07-21 03:07:47 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-07-21 03:07:47 +0000 |
commit | ee7fe75c6005a4285a662d383a0c5e577874e0cd (patch) | |
tree | 96b95cd2cc0a94169707b0ee0e063336bc5d2ffb /media-sound/id3 | |
parent | added ppc keyword (diff) | |
download | gentoo-2-ee7fe75c6005a4285a662d383a0c5e577874e0cd.tar.gz gentoo-2-ee7fe75c6005a4285a662d383a0c5e577874e0cd.tar.bz2 gentoo-2-ee7fe75c6005a4285a662d383a0c5e577874e0cd.zip |
repoman'd
Diffstat (limited to 'media-sound/id3')
-rw-r--r-- | media-sound/id3/id3-0.12-r1.ebuild | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/media-sound/id3/id3-0.12-r1.ebuild b/media-sound/id3/id3-0.12-r1.ebuild index 27c0d39869b7..60bc4e5bb9a8 100644 --- a/media-sound/id3/id3-0.12-r1.ebuild +++ b/media-sound/id3/id3-0.12-r1.ebuild @@ -1,22 +1,28 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/media-sound/id3/id3-0.12-r1.ebuild,v 1.4 2002/07/11 06:30:40 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/id3/id3-0.12-r1.ebuild,v 1.5 2002/07/21 03:07:46 seemant Exp $ -A=${PN}_${PV}.orig.tar.gz S=${WORKDIR}/${P} DESCRIPTION="changes the id3 tag in an mp3 file" -SRC_URI="http://lly.org/~rcw/id3/${A}" +SRC_URI="http://lly.org/~rcw/id3/${PN}_${PV}.orig.tar.gz" HOMEPAGE="http://lly.org/~rcw/abcde/page/" +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="x86" src_compile() { - try make CFLAGS="${CFLAGS}" + make CFLAGS="${CFLAGS}" || die } src_install () { - try make DESTDIR=${D} INSTALL="/bin/install -c" install - dodoc COPYING README + make \ + DESTDIR=${D} \ + INSTALL="/bin/install -c" \ + install || die + + dodoc COPYING README } |