Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 203307 - x11-libs/qt-core ignores USE="ssl glib" on compile
Summary: x11-libs/qt-core ignores USE="ssl glib" on compile
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: All Linux
: High normal (vote)
Assignee: Qt Bug Alias
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2007-12-25 14:50 UTC by Maksim 'max_posedon' Melnikau
Modified: 2007-12-26 12:40 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 Maksim 'max_posedon' Melnikau 2007-12-25 14:50:19 UTC
qt-core compile without ssl (and glib) support even if USE="ssl".

Reproducible: Always

Steps to Reproduce:
1. USE="ssl" emerge qt-core
Actual Results:  
qt-core compiles without ssl, glib support


Expected Results:  
qt-core should compile with ssl, glib support

src_compile() {
    unset QMAKESPEC
    local myconf=$(standard_configure_options)

    use ssl     && myconf="${myconf} -openssl" || myconf="${myconf} -no-openssl"
    use glib    && myconf="${myconf} -glib" || myconf="${myconf} -no-glib"
    use qt3support  && myconf="${myconf} -qt3support" || myconf="${myconf} -no-qt3support"

    myconf="${myconf} -no-xkb -no-tablet -no-fontconfig -no-xrender -no-xrandr -no-xfixes -no-xcursor \
    -no-xinerama -no-xshape -no-sm -no-opengl -no-nas-sound -no-qdbus -iconv -no-cups -no-nis \
    -no-gif -no-libpng -no-libmng -no-libjpeg №%%%-no-openssl%%% -system-zlib -no-webkit -no-phonon \
    -no-xmlpatterns -no-freetype -no-libtiff  -no-accessibility -no-fontconfig  @%%%-no-glib%%% -no-opengl"

    echo ./configure ${myconf}
    ./configure ${myconf} || die

    build_target_directories
}

(I marked error places with %%%...%%%)
Comment 1 Jakub Moc (RETIRED) gentoo-dev 2007-12-25 14:55:11 UTC
Please, attach a unified diff next time, instead of some %%% stuff. Thanks.
Comment 2 Caleb Tennis (RETIRED) gentoo-dev 2007-12-26 12:40:29 UTC
fixed, thanks for the report.