diff options
author | 2009-02-15 00:50:29 +0000 | |
---|---|---|
committer | 2009-02-15 00:50:29 +0000 | |
commit | 576a9b6d805165874290a186690bb781ffe27e52 (patch) | |
tree | 223406ece80a159e78266ca6c37bf27530c23b19 /x11-misc/bbconf/bbconf-1.10.ebuild | |
parent | dont put (Demo) in full games name (diff) | |
download | gentoo-2-576a9b6d805165874290a186690bb781ffe27e52.tar.gz gentoo-2-576a9b6d805165874290a186690bb781ffe27e52.tar.bz2 gentoo-2-576a9b6d805165874290a186690bb781ffe27e52.zip |
Add gcc-4.3 patch, bug 251773. Thanks to Gene Seto <geneseto@hotmail.com> for patch.
(Portage version: 2.2_rc23/cvs/Linux x86_64)
Diffstat (limited to 'x11-misc/bbconf/bbconf-1.10.ebuild')
-rw-r--r-- | x11-misc/bbconf/bbconf-1.10.ebuild | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/x11-misc/bbconf/bbconf-1.10.ebuild b/x11-misc/bbconf/bbconf-1.10.ebuild index c4e4bb2340ad..d1a024c17930 100644 --- a/x11-misc/bbconf/bbconf-1.10.ebuild +++ b/x11-misc/bbconf/bbconf-1.10.ebuild @@ -1,6 +1,8 @@ -# Copyright 1999-2007 Gentoo Foundation +# Copyright 1999-2009 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.10 2007/09/30 15:15:28 ticho Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/bbconf/bbconf-1.10.ebuild,v 1.11 2009/02/15 00:50:29 loki_val Exp $ + +inherit eutils DESCRIPTION="All-in-one blackbox configuration tool." SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" @@ -13,6 +15,12 @@ IUSE="" DEPEND="=x11-libs/qt-3*" +src_unpack () { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}/${P}-gcc43.patch" +} + src_compile () { # ./configure --prefix=/usr --host=${CHOST} --with-qt-dir=/usr/qt/3 || die econf --with-qt-dir=/usr/qt/3 || die @@ -20,5 +28,5 @@ src_compile () { } src_install () { - make DESTDIR=${D} install || die + make DESTDIR="${D}" install || die } |