diff options
author | Thomas Cort <tcort@gentoo.org> | 2006-08-31 12:50:37 +0000 |
---|---|---|
committer | Thomas Cort <tcort@gentoo.org> | 2006-08-31 12:50:37 +0000 |
commit | f45d2075d2f54779df88af51e3443d6c7d76fc3a (patch) | |
tree | d270f44a6ef185e7d842acd2119222b85ad0db27 /media-sound/streamripper | |
parent | Fix freetype-2.2 build problems with freetypes recommended patch thanks to fo... (diff) | |
download | gentoo-2-f45d2075d2f54779df88af51e3443d6c7d76fc3a.tar.gz gentoo-2-f45d2075d2f54779df88af51e3443d6c7d76fc3a.tar.bz2 gentoo-2-f45d2075d2f54779df88af51e3443d6c7d76fc3a.zip |
Version bump to 1.61.26 wrt security Bug #144861. Added myself to metadata.xml.
(Portage version: 2.1-r2)
Diffstat (limited to 'media-sound/streamripper')
-rw-r--r-- | media-sound/streamripper/ChangeLog | 8 | ||||
-rw-r--r-- | media-sound/streamripper/files/digest-streamripper-1.61.26 | 3 | ||||
-rw-r--r-- | media-sound/streamripper/metadata.xml | 6 | ||||
-rw-r--r-- | media-sound/streamripper/streamripper-1.61.26.ebuild | 40 |
4 files changed, 55 insertions, 2 deletions
diff --git a/media-sound/streamripper/ChangeLog b/media-sound/streamripper/ChangeLog index f35adb5994b3..c519c345bacd 100644 --- a/media-sound/streamripper/ChangeLog +++ b/media-sound/streamripper/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for media-sound/streamripper # Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/streamripper/ChangeLog,v 1.28 2006/01/24 20:26:36 chutzpah Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/streamripper/ChangeLog,v 1.29 2006/08/31 12:50:36 tcort Exp $ + +*streamripper-1.61.26 (31 Aug 2006) + + 31 Aug 2006; Thomas Cort <tcort@gentoo.org> metadata.xml, + +streamripper-1.61.26.ebuild: + Version bump to 1.61.26 wrt security Bug #144861. Added myself to metadata.xml. *streamripper-1.61.17 (24 Jan 2006) diff --git a/media-sound/streamripper/files/digest-streamripper-1.61.26 b/media-sound/streamripper/files/digest-streamripper-1.61.26 new file mode 100644 index 000000000000..8d50c99dc1e7 --- /dev/null +++ b/media-sound/streamripper/files/digest-streamripper-1.61.26 @@ -0,0 +1,3 @@ +MD5 435ae5886a47919732553925436f66df streamripper-1.61.26.tar.gz 1227439 +RMD160 eb47e516c8904623eafa30ac3ed9e352ba25bc11 streamripper-1.61.26.tar.gz 1227439 +SHA256 f4c79cdcb20c6dca0fb93d405a8c64c0d4a7c340ae84a05e764289b0d33bf591 streamripper-1.61.26.tar.gz 1227439 diff --git a/media-sound/streamripper/metadata.xml b/media-sound/streamripper/metadata.xml index e1774e3d9ad7..8c6d192e72ed 100644 --- a/media-sound/streamripper/metadata.xml +++ b/media-sound/streamripper/metadata.xml @@ -1,5 +1,9 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> <pkgmetadata> -<herd>sound</herd> + <herd>sound</herd> + <maintainer> + <email>tcort@gentoo.org</email> + <name>Thomas Cort</name> + </maintainer> </pkgmetadata> diff --git a/media-sound/streamripper/streamripper-1.61.26.ebuild b/media-sound/streamripper/streamripper-1.61.26.ebuild new file mode 100644 index 000000000000..2086fda2f4c5 --- /dev/null +++ b/media-sound/streamripper/streamripper-1.61.26.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/streamripper/streamripper-1.61.26.ebuild,v 1.1 2006/08/31 12:50:36 tcort Exp $ + +inherit eutils + +DESCRIPTION="Extracts and records individual MP3 file tracks from shoutcast streams" +HOMEPAGE="http://streamripper.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~hppa ~ppc ~ppc-macos ~ppc64 ~sparc ~x86" +IUSE="vorbis" + +DEPEND="media-libs/libmad + vorbis? ( media-libs/libogg + media-libs/libvorbis )" + +src_unpack() { + unpack ${A} + cd ${S} + + # Force package to use system libmad + rm -rf libmad* + sed -i -e 's/libmad//' Makefile.in || die "sed failed" + + # for some reason the install-sh file is not executable on OSX... + chmod a+x install-sh +} + +src_compile() { + econf $(use_with vorbis ogg) || die "econf failed" + emake || die "emake failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + dodoc CHANGES README THANKS readme_xfade.txt +} |