Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 260268 - x11-libs/xosd-2.2.14-r1 - unrecognized configure option --disable-new-xmms
Summary: x11-libs/xosd-2.2.14-r1 - unrecognized configure option --disable-new-xmms
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: All Linux
: High QA (vote)
Assignee: No maintainer - Look at https://wiki.gentoo.org/wiki/Project:Proxy_Maintainers if you want to take care of it
URL:
Whiteboard:
Keywords: Inclusion, QAcanfix
Depends on:
Blocks:
 
Reported: 2009-02-25 16:34 UTC by Sandro Bonazzola
Modified: 2009-03-13 23:37 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 Sandro Bonazzola 2009-02-25 16:34:03 UTC
QA Notice: Unrecognized configure options:

        configure: WARNING: unrecognized options: --disable-new-xmms
        configure: WARNING: unrecognized options: --disable-new-xmms

x11-libs/xosd-2.2.14-r1  USE="xinerama"
>>> Compiling source in /var/tmp/portage/x11-libs/xosd-2.2.14-r1/work/xosd-2.2.14 ...
 * econf: updating xosd-2.2.14/config.sub with /usr/share/gnuconfig/config.sub
 * econf: updating xosd-2.2.14/config.guess with /usr/share/gnuconfig/config.guess
./configure --prefix=/usr --host=x86_64-pc-linux-gnu --mandir=/usr/share/man --infodir=/usr/share/info --datadir=/usr/share --sysconfdir=/etc --localstatedir=/var/lib --enable-xinerama --disable-new-xmms emake --libdir=/usr/lib64 --build=x86_64-pc-linux-gnu
configure: WARNING: you should use --build, --host, --target
configure: WARNING: unrecognized options: --disable-new-xmms

The ebuild has:
src_compile() {
	econf \
		$(use_enable xinerama) \
		--disable-new-xmms \
	emake || die "emake failed"
}

it should be:
src_compile() {
	econf \
		$(use_enable xinerama)
	emake || die "emake failed"
}

maybe the configure: WARNING: you should use --build, --host, --target could be fixed also removing canonical target check since this is not a compiler.
(http://blog.flameeyes.eu/2008/10/11/you-dont-want-to-canonicalise-that-and-im-not-referring-to-ubuntu)
Comment 1 Thilo Bangert (RETIRED) (RETIRED) gentoo-dev 2009-03-13 23:37:09 UTC
fixed in cvs. thanks for the report
kind regards
Thilo