summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTony Vroon <chainsaw@gentoo.org>2009-07-09 15:48:37 +0000
committerTony Vroon <chainsaw@gentoo.org>2009-07-09 15:48:37 +0000
commit6518b2193f421d6223ed0a1960cefc3eed66905f (patch)
treef13c7133a575eaabed480670abf58986c543288c /media-sound/ogg2mp3
parentEAPI=2 (diff)
downloadgentoo-2-6518b2193f421d6223ed0a1960cefc3eed66905f.tar.gz
gentoo-2-6518b2193f421d6223ed0a1960cefc3eed66905f.tar.bz2
gentoo-2-6518b2193f421d6223ed0a1960cefc3eed66905f.zip
Version bump, adds "use strict". Deleted old ebuild.
(Portage version: 2.1.6.13/cvs/Linux x86_64)
Diffstat (limited to 'media-sound/ogg2mp3')
-rw-r--r--media-sound/ogg2mp3/ChangeLog8
-rw-r--r--media-sound/ogg2mp3/files/ogg2mp3-0.5-prevent_endian_swapping.patch12
-rw-r--r--media-sound/ogg2mp3/ogg2mp3-0.6.ebuild (renamed from media-sound/ogg2mp3/ogg2mp3-0.5-r1.ebuild)13
3 files changed, 11 insertions, 22 deletions
diff --git a/media-sound/ogg2mp3/ChangeLog b/media-sound/ogg2mp3/ChangeLog
index 5800ca9629c0..80edefb71b24 100644
--- a/media-sound/ogg2mp3/ChangeLog
+++ b/media-sound/ogg2mp3/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for media-sound/ogg2mp3
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/ogg2mp3/ChangeLog,v 1.9 2009/06/18 11:45:30 chainsaw Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/ogg2mp3/ChangeLog,v 1.10 2009/07/09 15:48:36 chainsaw Exp $
+
+*ogg2mp3-0.6 (09 Jul 2009)
+
+ 09 Jul 2009; <chainsaw@gentoo.org> -ogg2mp3-0.5-r1.ebuild,
+ -files/ogg2mp3-0.5-prevent_endian_swapping.patch, +ogg2mp3-0.6.ebuild:
+ Version bump, adds "use strict". Deleted old ebuild.
*ogg2mp3-0.5.1 (18 Jun 2009)
diff --git a/media-sound/ogg2mp3/files/ogg2mp3-0.5-prevent_endian_swapping.patch b/media-sound/ogg2mp3/files/ogg2mp3-0.5-prevent_endian_swapping.patch
deleted file mode 100644
index 024b1b1734eb..000000000000
--- a/media-sound/ogg2mp3/files/ogg2mp3-0.5-prevent_endian_swapping.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -ur ogg2mp3-0.5.orig/ogg2mp3 ogg2mp3-0.5/ogg2mp3
---- ogg2mp3-0.5.orig/ogg2mp3 2005-05-16 21:07:33.000000000 +0300
-+++ ogg2mp3-0.5/ogg2mp3 2009-05-12 14:30:00.000000000 +0300
-@@ -311,7 +311,7 @@
- # this took me some time to figure
- # note that byte order is swapped by lame via -x option
- # TODO: somebody please tell me how to supress the "Assuming bla bla" output without devnull
-- $result = system("$OGG123 $decquiet -d raw -f - $oggfile_escaped | $MP3ENC $encquiet -r -x -q $quality -b $bitrate -s $frequency -m $channels $infostring - $mp3outputfile_escaped");
-+ $result = system("$OGG123 $decquiet -d raw -f - $oggfile_escaped | $MP3ENC $encquiet -r -q $quality -b $bitrate -s $frequency -m $channels $infostring - $mp3outputfile_escaped");
-
- # TODO: find some widely used mp3 checker
- # disabled the checking due to lack of checker
diff --git a/media-sound/ogg2mp3/ogg2mp3-0.5-r1.ebuild b/media-sound/ogg2mp3/ogg2mp3-0.6.ebuild
index 93e750cac814..8d0afd0bec45 100644
--- a/media-sound/ogg2mp3/ogg2mp3-0.5-r1.ebuild
+++ b/media-sound/ogg2mp3/ogg2mp3-0.6.ebuild
@@ -1,17 +1,16 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/ogg2mp3/ogg2mp3-0.5-r1.ebuild,v 1.2 2009/06/11 13:46:26 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/ogg2mp3/ogg2mp3-0.6.ebuild,v 1.1 2009/07/09 15:48:36 chainsaw Exp $
-EAPI=2
inherit eutils
DESCRIPTION="A perl script to convert Ogg Vorbis files to MP3 files."
-HOMEPAGE="http://amor.cms.hu-berlin.de/~h0444y2j/linux.html"
-SRC_URI="http://amor.cms.hu-berlin.de/~h0444y2j/pub/${P}.tar.bz2"
+HOMEPAGE="http://www.jamesa.com/projects/ogg2mp3/"
+SRC_URI="http://www.jamesa.com/projects/ogg2mp3/releases/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~ppc x86"
+KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
RDEPEND="media-sound/lame
@@ -19,10 +18,6 @@ RDEPEND="media-sound/lame
media-sound/vorbis-tools"
DEPEND=""
-src_prepare() {
- epatch "${FILESDIR}"/${P}-prevent_endian_swapping.patch
-}
-
src_install() {
dobin ogg2mp3 || die "dobin failed"
dodoc doc/{AUTHORS,ChangeLog,README,TODO}