Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 169336 - net-www/gnash-0.7.2_p20099999 compiling with --enable-klash when using -kde
Summary: net-www/gnash-0.7.2_p20099999 compiling with --enable-klash when using -kde
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: All Linux
: High minor
Assignee: Stefan Schweizer (RETIRED)
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2007-03-04 18:06 UTC by Guillaume Ranquet
Modified: 2007-03-04 19:11 UTC (History)
0 users

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


Attachments
patched ebuild (gnash-0.7.2_p20099999.ebuild,3.27 KB, text/plain)
2007-03-04 18:08 UTC, Guillaume Ranquet
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Guillaume Ranquet 2007-03-04 18:06:17 UTC
when emerging gnash-0.7.2_p20099999 with the -kde useflags, it tries to compile with --enable-klash which fails because it doesn't find some kdelibs.

Reproducible: Always

Steps to Reproduce:
emerge =gnash-0.7.2_p20099999 with -kde set and no kde//qt emerged

Actual Results:  
      KDE flags are: -I/usr/kde/3.5/include/kde -I/usr/kde/3.5/include/kde/kio
        KDE libs are: -L/usr/kde/3.5/lib -lkdeui -lkdecore -lkdeprint
        ERROR: No QT development package installed!
               Reconfigure with --disable-klash to continue
               and/or change to a different gui


Expected Results:  
fine compile with the --disable-klash option

fixed it by modifying the ebuild:
transformed:
        if use kde; then
                myconf="${myconf} --enable-klash --with-qt-incl=${QTDIR}/include
                        --with-qt-lib=${QTDIR}/$(get_libdir)"
        fi
into:
        if use kde; then
                myconf="${myconf} --enable-klash --with-qt-incl=${QTDIR}/include
                        --with-qt-lib=${QTDIR}/$(get_libdir)"
        else
                myconf="${myconf} --disable-klash"
        fi
Comment 1 Guillaume Ranquet 2007-03-04 18:08:09 UTC
Created attachment 112097 [details]
patched ebuild
Comment 2 Stefan Schweizer (RETIRED) gentoo-dev 2007-03-04 19:11:20 UTC
thanks, fixed