diff options
author | Philippe Audeoud <jadawin@FreeBSD.org> | 2009-02-05 10:47:09 +0000 |
---|---|---|
committer | Philippe Audeoud <jadawin@FreeBSD.org> | 2009-02-05 10:47:09 +0000 |
commit | 2cdc255a9d95f8c53d6beb170705ca2303e98347 (patch) | |
tree | 1cabf0cb23853d4ee899184b41b4958c6a863f9e /audio/ogg2mp3 | |
parent | - Update to 0.04 (diff) |
- Add patch to correct lame --genre-list
- Bump PORTREVISION
PR: ports/131307
Submitted by: Tobias Rehbein <tobias.rehbein at web.de>
Diffstat (limited to 'audio/ogg2mp3')
-rw-r--r-- | audio/ogg2mp3/Makefile | 2 | ||||
-rw-r--r-- | audio/ogg2mp3/files/patch-ogg2mp3 | 11 |
2 files changed, 12 insertions, 1 deletions
diff --git a/audio/ogg2mp3/Makefile b/audio/ogg2mp3/Makefile index d5cbd4c99c59..c241a146f54a 100644 --- a/audio/ogg2mp3/Makefile +++ b/audio/ogg2mp3/Makefile @@ -6,7 +6,7 @@ PORTNAME= ogg2mp3 PORTVERSION= 0.5 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= audio MASTER_SITES= http://amor.cms.hu-berlin.de/~h0444y2j/pub/ diff --git a/audio/ogg2mp3/files/patch-ogg2mp3 b/audio/ogg2mp3/files/patch-ogg2mp3 new file mode 100644 index 000000000000..b65976fa567f --- /dev/null +++ b/audio/ogg2mp3/files/patch-ogg2mp3 @@ -0,0 +1,11 @@ +--- ./ogg2mp3.orig 2009-02-02 20:13:18.000000000 +0000 ++++ ./ogg2mp3 2009-02-02 20:13:44.000000000 +0000 +@@ -68,7 +68,7 @@ + + # build genre hash + my %genres; +-open(GENRES, "$MP3ENC --genre-list|") or die "Couldn't get genre list with $MP3ENC --genre-list\n"; ++open(GENRES, "$MP3ENC --genre-list 2>&1 |") or die "Couldn't get genre list with $MP3ENC --genre-list\n"; + while(<GENRES>) { + chomp; + next if /^\s*$/; |