diff options
author | Nick Hadaway <raker@gentoo.org> | 2002-08-13 22:17:59 +0000 |
---|---|---|
committer | Nick Hadaway <raker@gentoo.org> | 2002-08-13 22:17:59 +0000 |
commit | e779e901a20fa35680ca41b5126d7653e1fca474 (patch) | |
tree | 361e0e7207260965d667431a9ece7210445d5f05 /x11-libs | |
parent | Changed permissions of /etc/sasl2 (diff) | |
download | gentoo-2-e779e901a20fa35680ca41b5126d7653e1fca474.tar.gz gentoo-2-e779e901a20fa35680ca41b5126d7653e1fca474.tar.bz2 gentoo-2-e779e901a20fa35680ca41b5126d7653e1fca474.zip |
Updated ebuild to use econf and verified joystick code patch to be
working.
Diffstat (limited to 'x11-libs')
-rw-r--r-- | x11-libs/wxGTK/ChangeLog | 6 | ||||
-rw-r--r-- | x11-libs/wxGTK/wxGTK-2.3.2-r2.ebuild | 11 |
2 files changed, 8 insertions, 9 deletions
diff --git a/x11-libs/wxGTK/ChangeLog b/x11-libs/wxGTK/ChangeLog index fddeb5d84d0b..726e1e3c9f8d 100644 --- a/x11-libs/wxGTK/ChangeLog +++ b/x11-libs/wxGTK/ChangeLog @@ -1,6 +1,6 @@ # ChangeLog for x11-libs/wxGTK # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/x11-libs/wxGTK/ChangeLog,v 1.7 2002/08/09 18:32:11 raker Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/wxGTK/ChangeLog,v 1.8 2002/08/13 22:17:59 raker Exp $ *wxGTK-2.2.9-r1 (09 Aug 2002) @@ -9,6 +9,10 @@ Thanks to Francisco Gimeno for fixing the joystick code compile problem. *wxGTK-2.3.2-r2 (13 Jun 2002) + + 13 Aug 2002; Nick Hadaway <raker@gentoo.org> + wxGTK-2.3.2-r2.ebuild : + Changed to econf and verified joystick patch is working. 15 Jul 2002; Mark Guertin <gerk@gentoo.org> Added ppc to keywords diff --git a/x11-libs/wxGTK/wxGTK-2.3.2-r2.ebuild b/x11-libs/wxGTK/wxGTK-2.3.2-r2.ebuild index 8d2746f30219..06628fe72c44 100644 --- a/x11-libs/wxGTK/wxGTK-2.3.2-r2.ebuild +++ b/x11-libs/wxGTK/wxGTK-2.3.2-r2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/x11-libs/wxGTK/wxGTK-2.3.2-r2.ebuild,v 1.4 2002/07/16 03:12:03 gerk Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/wxGTK/wxGTK-2.3.2-r2.ebuild,v 1.5 2002/08/13 22:17:59 raker Exp $ S=${WORKDIR}/${P} @@ -83,14 +83,9 @@ src_compile() { gunzip < ${FILESDIR}/${P}.diff.gz | patch -p1 - ./configure \ - --infodir=/usr/share/info \ - --mandir=/usr/share/man \ - --prefix=/usr \ - --host=${CHOST} \ - ${myconf}|| die + econf ${myconf} || die "configuration failed" - emake || die + make || die "make failed" } |