Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!

Bug 9272

Summary: links2 svga broken
Product: Gentoo Linux Reporter: Scott Beck <sbeck>
Component: New packagesAssignee: Michael M Nazaroff (RETIRED) <naz>
Status: RESOLVED FIXED    
Severity: normal CC: h3y
Priority: High    
Version: 1.4_rc1   
Hardware: x86   
OS: Linux   
Whiteboard:
Package list:
Runtime testing required: ---

Description Scott Beck 2002-10-17 16:35:27 UTC
Inside /usr/portage/net-www/links/links-2.1_pre3.ebuild the svga
support is a little broken, There is a statement:
    use svga \
        && myconf="${myconf} --with-svgalib" \
        || myconf="${myconf} --without-svgalib"


This should be:
    use svga \
        && myconf="${myconf} --enable-graphics --with-svgalib" \
        || myconf="${myconf} --without-svgalib"

like with X and framebuffer support. I found this when I tried to build
links without X or framebuffer support but with svga support.

Cheers,

Scott
Comment 1 Maurizio Disimino 2002-10-18 07:26:56 UTC
Let's remember that --enable-graphics requires libpng to be installed.
So, just like the X and fbcon useflags we've to merge libpng for USE="svga", too.

Maurizio
Comment 2 Michael M Nazaroff (RETIRED) gentoo-dev 2002-10-24 10:39:27 UTC
Fixed and commited