Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 286467 - app-emulation/virtualbox-ose-9999: fails to compile - developers removed configure option --disable-qt3
Summary: app-emulation/virtualbox-ose-9999: fails to compile - developers removed conf...
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: AMD64 Linux
: High normal (vote)
Assignee: Patrick Lauer
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2009-09-25 23:02 UTC by regatus
Modified: 2009-10-03 17:09 UTC (History)
1 user (show)

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 regatus 2009-09-25 23:02:41 UTC
app-emulation/virtualbox-ose-9999: fails to compile - developers removed configure option --disable-qt3

please fix ebuild:

--- virtualbox-ose-9999.ebuild~ 2009-04-18 18:35:33.000000000 +0200
+++ virtualbox-ose-9999.ebuild  2009-09-26 00:54:16.582420594 +0200
@@ -67,7 +67,7 @@ src_compile() {

        local myconf
        # Don't build vboxdrv kernel module, disable deprecated qt3 support
-       myconf="--disable-kmods --disable-qt3"
+       myconf="--disable-kmods"

        if ! use pulseaudio; then
                        myconf="${myconf} --disable-pulse"


Reproducible: Always
Comment 1 Patrick Lauer gentoo-dev 2009-09-25 23:59:53 UTC
+  25 Sep 2009; Patrick Lauer <patrick@gentoo.org>
+  virtualbox-ose-9999.ebuild:
+  Fixing configure parameters and adding some missing deps. Closes #286467

Found some other small things while trying to compile it :)

Thanks for reporting!
Comment 2 Peter Volkov (RETIRED) gentoo-dev 2009-09-26 16:31:25 UTC
It's good idea to clean above comment too. Right?
Comment 3 regatus 2009-09-26 16:47:23 UTC
yes. comment should be corrected. fyi: if you are already changing the ebuild you can fix also fix #252151 with this:

--- virtualbox-ose-9999.ebuild~ 2009-09-26 09:07:37.000000000 +0200
+++ virtualbox-ose-9999.ebuild  2009-09-26 18:43:30.126004948 +0200
@@ -68,7 +68,7 @@ pkg_setup() {
 src_compile() {

        local myconf
-       # Don't build vboxdrv kernel module, disable deprecated qt3 support
+       # Don't build vboxdrv kernel module
        myconf="--disable-kmods"
        if ! use pulseaudio; then
                        myconf="${myconf} --disable-pulse"
@@ -120,16 +120,11 @@ src_install() {
        newexe "${FILESDIR}/${PN}-2-wrapper" "VBox" || die
        fowners root:vboxusers /usr/lib/${PN}/VBox
        fperms 0750 /usr/lib/${PN}/VBox
-       newexe "${S}"/src/VBox/Installer/linux/VBoxAddIF.sh "VBoxAddIF" || die
-       fowners root:vboxusers /usr/lib/${PN}/VBoxAddIF
-       fperms 0750 /usr/lib/${PN}/VBoxAddIF

        dosym /usr/lib/${PN}/VBox /usr/bin/VBoxManage
        dosym /usr/lib/${PN}/VBox /usr/bin/VBoxVRDP
        dosym /usr/lib/${PN}/VBox /usr/bin/VBoxHeadless
        dosym /usr/lib/${PN}/VBoxTunctl /usr/bin/VBoxTunctl
-       dosym /usr/lib/${PN}/VBoxAddIF /usr/bin/VBoxAddIF
-       dosym /usr/lib/${PN}/VBoxAddIF /usr/bin/VBoxDeleteIF

        # install binaries and libraries
        insinto /usr/lib/${PN}
Comment 4 Patrick Lauer gentoo-dev 2009-10-03 17:09:59 UTC
+  03 Oct 2009; Patrick Lauer <patrick@gentoo.org>
+  virtualbox-ose-9999.ebuild:
+  Making -9999 compile again, fixes #286467 again