diff options
author | Arcady Genkin <agenkin@gentoo.org> | 2003-04-24 03:52:43 +0000 |
---|---|---|
committer | Arcady Genkin <agenkin@gentoo.org> | 2003-04-24 03:52:43 +0000 |
commit | 1db8189dae85678a8adace6d27f3092761b6b901 (patch) | |
tree | db38187151d3e62ab032d08dd18f7ef44b757b72 /media-sound/grip | |
parent | update to 0.8.1 (diff) | |
download | historical-1db8189dae85678a8adace6d27f3092761b6b901.tar.gz historical-1db8189dae85678a8adace6d27f3092761b6b901.tar.bz2 historical-1db8189dae85678a8adace6d27f3092761b6b901.zip |
Version bump.
Diffstat (limited to 'media-sound/grip')
-rw-r--r-- | media-sound/grip/ChangeLog | 7 | ||||
-rw-r--r-- | media-sound/grip/files/digest-grip-3.0.7 | 1 | ||||
-rw-r--r-- | media-sound/grip/grip-3.0.7.ebuild | 56 |
3 files changed, 63 insertions, 1 deletions
diff --git a/media-sound/grip/ChangeLog b/media-sound/grip/ChangeLog index 22aa56c21d50..9f4050257d6b 100644 --- a/media-sound/grip/ChangeLog +++ b/media-sound/grip/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-sound/grip # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/grip/ChangeLog,v 1.14 2003/03/25 05:20:11 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/grip/ChangeLog,v 1.15 2003/04/24 03:52:43 agenkin Exp $ + +*grip-3.0.7 (23 Apr 2003) + + 23 Apr 2003; Arcady Genkin <agenkin@gentoo.org> : + Version bump. *grip-3.0.6 (16 Feb 2003) diff --git a/media-sound/grip/files/digest-grip-3.0.7 b/media-sound/grip/files/digest-grip-3.0.7 new file mode 100644 index 000000000000..b0a79e27ed32 --- /dev/null +++ b/media-sound/grip/files/digest-grip-3.0.7 @@ -0,0 +1 @@ +MD5 eac4bbb44584cb64273c048343b37124 grip-3.0.7.tar.gz 874766 diff --git a/media-sound/grip/grip-3.0.7.ebuild b/media-sound/grip/grip-3.0.7.ebuild new file mode 100644 index 000000000000..7b032b3cc1a3 --- /dev/null +++ b/media-sound/grip/grip-3.0.7.ebuild @@ -0,0 +1,56 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/grip/grip-3.0.7.ebuild,v 1.1 2003/04/24 03:52:43 agenkin Exp $ + +inherit eutils + +DESCRIPTION="GTK+ based Audio CD Player/Ripper." +HOMEPAGE="http://www.nostatic.org/grip" +LICENSE="GPL-2" + +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 )" + +IUSE="nls oggvorbis" +SLOT="0" +KEYWORDS="~x86 ~ppc ~alpha" + +SRC_URI="http://www.nostatic.org/grip/${P}.tar.gz" +S=${WORKDIR}/${P} + +src_unpack() { + unpack ${A} + + # The NPTL pthreads implementation do not support the + # pthread_kill_other_threads_np function, as its a true + # posix threading library .. patch grip thus to use + # pthread_kill if we are using NPTL. + # + # <azarah@gentoo.org> (06 March 2003) + if have_NPTL + then + cd ${S}; epatch ${FILESDIR}/${P}-NPTL-compat.patch + fi +} + +src_compile() { + local myconf= + use nls || myconf="--disable-nls" + + econf ${myconf} || die + emake || die +} + +src_install () { + einstall || die + + dodoc ABOUT-NLS AUTHORS CREDITS COPYING ChangeLog README TODO NEWS +} |