- Add patch to correct lame --genre-list

- Bump PORTREVISION

PR:		ports/131307
Submitted by:	Tobias Rehbein <tobias.rehbein at web.de>
This commit is contained in:
Philippe Audeoud 2009-02-05 10:47:09 +00:00
parent d0f34ace13
commit 2cdc255a9d
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=227664
2 changed files with 12 additions and 1 deletions

View File

@ -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/

View File

@ -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*$/;