summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Phillips <rphillips@gentoo.org>2002-04-26 21:02:32 +0000
committerRyan Phillips <rphillips@gentoo.org>2002-04-26 21:02:32 +0000
commitba02cd8c59ba966303076a50d9d47bfb464ff14e (patch)
tree75bbdf8d753a789c0ae929e6e1486ba3f96ccf3a /media-sound/easytag
parentInitial commit. Ebuild submitted by Leonardo Boshell (Bug #1879). (diff)
downloadgentoo-2-ba02cd8c59ba966303076a50d9d47bfb464ff14e.tar.gz
gentoo-2-ba02cd8c59ba966303076a50d9d47bfb464ff14e.tar.bz2
gentoo-2-ba02cd8c59ba966303076a50d9d47bfb464ff14e.zip
Fixes 125
Diffstat (limited to 'media-sound/easytag')
-rw-r--r--media-sound/easytag/ChangeLog9
-rw-r--r--media-sound/easytag/easytag-0.18.ebuild6
2 files changed, 11 insertions, 4 deletions
diff --git a/media-sound/easytag/ChangeLog b/media-sound/easytag/ChangeLog
index 09eb4c11a220..37c2130476d1 100644
--- a/media-sound/easytag/ChangeLog
+++ b/media-sound/easytag/ChangeLog
@@ -1,6 +1,13 @@
# ChangeLog for media-sound/easytag
# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL
-# $Header: /var/cvsroot/gentoo-x86/media-sound/easytag/ChangeLog,v 1.1 2002/04/17 08:24:59 rphillips Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/easytag/ChangeLog,v 1.2 2002/04/26 21:02:32 rphillips Exp $
+
+*easytag-0.18 (26 Apr 2002)
+
+ 26 Apr 2002; Ryan Phillips <rphillips@gentoo.org> easytag-0.18.ebuild :
+
+ Error in setting the myconf variable when using use oggvorbin.
+ Fixes (#2125)
*easytag-0.18 (17 Apr 2002)
diff --git a/media-sound/easytag/easytag-0.18.ebuild b/media-sound/easytag/easytag-0.18.ebuild
index 311a07114771..8cd1ac9a1c01 100644
--- a/media-sound/easytag/easytag-0.18.ebuild
+++ b/media-sound/easytag/easytag-0.18.ebuild
@@ -1,7 +1,7 @@
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Maintainer: Ryan Phillips <rphillips@gentoo.org>
-# $Header: /var/cvsroot/gentoo-x86/media-sound/easytag/easytag-0.18.ebuild,v 1.1 2002/04/17 08:24:59 rphillips Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/easytag/easytag-0.18.ebuild,v 1.2 2002/04/26 21:02:32 rphillips Exp $
S=${WORKDIR}/${P}
DESCRIPTION="EasyTAG mp3/ogg tag editor"
@@ -17,9 +17,9 @@ DEPEND="${RDEPEND}"
src_compile() {
local myconf
if [ "use oggvorbis" ] ; then
- myconf = "--enable-ogg"
+ myconf="--enable-ogg"
else
- myconf = "--disable-ogg"
+ myconf="--disable-ogg"
fi
./configure --host=${CHOST} \