diff options
author | Arcady Genkin <agenkin@gentoo.org> | 2002-06-19 14:29:08 +0000 |
---|---|---|
committer | Arcady Genkin <agenkin@gentoo.org> | 2002-06-19 14:29:08 +0000 |
commit | 9999f1f02b5ecd4b17bdac6bab8f10e1072f0151 (patch) | |
tree | a66415c2618d7f5f0e106610b7e20791c7e807a6 /media-sound/grip | |
parent | removed =balsa-2.0.1 entry (diff) | |
download | gentoo-2-9999f1f02b5ecd4b17bdac6bab8f10e1072f0151.tar.gz gentoo-2-9999f1f02b5ecd4b17bdac6bab8f10e1072f0151.tar.bz2 gentoo-2-9999f1f02b5ecd4b17bdac6bab8f10e1072f0151.zip |
Version bump to 3.0.1
Diffstat (limited to 'media-sound/grip')
-rw-r--r-- | media-sound/grip/ChangeLog | 8 | ||||
-rw-r--r-- | media-sound/grip/files/digest-grip-3.0.1 | 1 | ||||
-rw-r--r-- | media-sound/grip/grip-3.0.1.ebuild | 54 |
3 files changed, 62 insertions, 1 deletions
diff --git a/media-sound/grip/ChangeLog b/media-sound/grip/ChangeLog index c9cb03e40516..768ed7172a0a 100644 --- a/media-sound/grip/ChangeLog +++ b/media-sound/grip/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for media-sound/grip # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/media-sound/grip/ChangeLog,v 1.6 2002/04/26 04:47:33 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/grip/ChangeLog,v 1.7 2002/06/19 14:29:07 agenkin Exp $ + +*grip-3.0.1 (19 Jun 2002) + + 19 Jun 2002; Arcady Genkin <agenkin@thpoon.com> grip-3.0.1.ebuild : + + Version 3.0.1 is out. *grip-3.0.0-r1 (25 Apr 2002) diff --git a/media-sound/grip/files/digest-grip-3.0.1 b/media-sound/grip/files/digest-grip-3.0.1 new file mode 100644 index 000000000000..934d7d9a2d41 --- /dev/null +++ b/media-sound/grip/files/digest-grip-3.0.1 @@ -0,0 +1 @@ +MD5 3fe1d7e1b4f9a52d4ca759a477c785b1 grip-3.0.1.tar.gz 866107 diff --git a/media-sound/grip/grip-3.0.1.ebuild b/media-sound/grip/grip-3.0.1.ebuild new file mode 100644 index 000000000000..b49ae18d8140 --- /dev/null +++ b/media-sound/grip/grip-3.0.1.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Maintainer: Bruce A. Locke <blocke@shivan.org> +# $Header: /var/cvsroot/gentoo-x86/media-sound/grip/grip-3.0.1.ebuild,v 1.1 2002/06/19 14:29:07 agenkin Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="GTK+ based Audio CD Ripper" +SRC_URI="http://www.nostatic.org/grip/${P}.tar.gz" +HOMEPAGE="http://www.nostatic.org/grip" + +DEPEND="=x11-libs/gtk+-1.2* + =sys-libs/db-1* + media-sound/lame + media-sound/cdparanoia + media-libs/id3lib + gnome-base/gnome-libs + gnome-base/ORBit + gnome-base/libghttp + oggvorbis? ( media-sound/vorbis-tools ) + nls? ( sys-devel/gettext )" + +src_compile() { + local myconf + + use nls || myconf="--disable-nls" + + # apply CFLAGS + mv Makefile.in Makefile.in.old + sed -e "s/CFLAGS = -g -O2/CFLAGS = ${CFLAGS}/" \ + Makefile.in.old > Makefile.in + + # fix cdparanoia libs not linking + mv src/Makefile.in src/Makefile.in.orig + sed -e "s/LDFLAGS =/LDFLAGS = -lcdda_interface -lcdda_paranoia/" \ + src/Makefile.in.orig > src/Makefile.in + + ./configure --prefix=/usr \ + --mandir=/usr/share/man \ + --infodir=/usr/share/info \ + --sysconfdir=/etc \ + ${myconf} || die + + emake || die +} + +src_install () { + make prefix=${D}/usr \ + mandir=${D}/usr/share/man \ + infodir=${D}/usr/share/info \ + sysconfdir=${D}/etc \ + install || die + + dodoc ABOUT-NLS AUTHORS CREDITS LICENSE CHANGES README TODO +} |