Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 2125 - error in media-sound/easytag-0.18.ebuild src_compile()
Summary: error in media-sound/easytag-0.18.ebuild src_compile()
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: x86 Linux
: Low normal (vote)
Assignee: Ryan Phillips (RETIRED)
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2002-04-26 07:55 UTC by Chris PeBenito (RETIRED)
Modified: 2003-02-04 19:42 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Chris PeBenito (RETIRED) gentoo-dev 2002-04-26 07:55:59 UTC
there are errors in the easytag ebuild, in src_compile().  while assigning
myconf based on USE, there are spaces before and after the '=', so the script
throws nonfatal errors:

--- easytag-0.18.ebuild Wed Apr 17 03:24:59 2002
+++ /home/pebenito/temp/easytag-0.18.ebuild     Fri Apr 26 07:40:12 2002
@@ -17,9 +17,9 @@
 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} \
Comment 1 Ryan Phillips (RETIRED) gentoo-dev 2002-04-26 16:02:49 UTC
Thank you..  Fixed and committed.