summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrej Kacian <ticho@gentoo.org>2007-09-30 15:15:28 +0000
committerAndrej Kacian <ticho@gentoo.org>2007-09-30 15:15:28 +0000
commitc1a12824d4b484e7aecf1a1b79174d0387b25e25 (patch)
treeaeba5ce542a825ad3ae72fdf252cbec11d5c9a5d /x11-misc
parentx86 stable, security bug #193960 (diff)
downloadgentoo-2-c1a12824d4b484e7aecf1a1b79174d0387b25e25.tar.gz
gentoo-2-c1a12824d4b484e7aecf1a1b79174d0387b25e25.tar.bz2
gentoo-2-c1a12824d4b484e7aecf1a1b79174d0387b25e25.zip
Use econf to make sure all the right options are passed. Among other things, it fixes bug #170350.
(Portage version: 2.1.3.7)
Diffstat (limited to 'x11-misc')
-rw-r--r--x11-misc/bbconf/ChangeLog6
-rw-r--r--x11-misc/bbconf/bbconf-1.10.ebuild7
2 files changed, 9 insertions, 4 deletions
diff --git a/x11-misc/bbconf/ChangeLog b/x11-misc/bbconf/ChangeLog
index c1eea2846b7c..16391b46d5aa 100644
--- a/x11-misc/bbconf/ChangeLog
+++ b/x11-misc/bbconf/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for x11-misc/bbconf
# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/bbconf/ChangeLog,v 1.18 2007/02/21 23:30:35 jokey Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/bbconf/ChangeLog,v 1.19 2007/09/30 15:15:28 ticho Exp $
+
+ 30 Sep 2007; Andrej Kacian <ticho@gentoo.org> bbconf-1.10.ebuild:
+ Use econf to make sure all the right options are passed. Among other things,
+ it fixes bug #170350.
21 Feb 2007; Markus Ullmann <jokey@gentoo.org> ChangeLog:
Redigest for Manifest2
diff --git a/x11-misc/bbconf/bbconf-1.10.ebuild b/x11-misc/bbconf/bbconf-1.10.ebuild
index 05e0d58dc4e2..c4e4bb2340ad 100644
--- a/x11-misc/bbconf/bbconf-1.10.ebuild
+++ b/x11-misc/bbconf/bbconf-1.10.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2006 Gentoo Foundation
+# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/bbconf/bbconf-1.10.ebuild,v 1.9 2006/12/07 02:23:08 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/bbconf/bbconf-1.10.ebuild,v 1.10 2007/09/30 15:15:28 ticho Exp $
DESCRIPTION="All-in-one blackbox configuration tool."
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
@@ -14,7 +14,8 @@ IUSE=""
DEPEND="=x11-libs/qt-3*"
src_compile () {
- ./configure --prefix=/usr --host=${CHOST} --with-qt-dir=/usr/qt/3 || die
+# ./configure --prefix=/usr --host=${CHOST} --with-qt-dir=/usr/qt/3 || die
+ econf --with-qt-dir=/usr/qt/3 || die
emake || die
}