diff options
author | Nick Hadaway <raker@gentoo.org> | 2002-09-01 21:46:46 +0000 |
---|---|---|
committer | Nick Hadaway <raker@gentoo.org> | 2002-09-01 21:46:46 +0000 |
commit | 556855684769f422210f7945243455bf9203791b (patch) | |
tree | 999c8f0f75fc58d89bd17597b953df25d5a60287 | |
parent | new snapshot (diff) | |
download | gentoo-2-556855684769f422210f7945243455bf9203791b.tar.gz gentoo-2-556855684769f422210f7945243455bf9203791b.tar.bz2 gentoo-2-556855684769f422210f7945243455bf9203791b.zip |
Added missing ${myconf}(s)
-rw-r--r-- | dev-python/wxPython/ChangeLog | 5 | ||||
-rw-r--r-- | dev-python/wxPython/wxPython-2.3.2.1-r2.ebuild | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/dev-python/wxPython/ChangeLog b/dev-python/wxPython/ChangeLog index 5133678adbf3..83d2411201f3 100644 --- a/dev-python/wxPython/ChangeLog +++ b/dev-python/wxPython/ChangeLog @@ -1,9 +1,12 @@ # ChangeLog for dev-python/wxPython # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/dev-python/wxPython/ChangeLog,v 1.5 2002/08/29 18:39:22 raker Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/wxPython/ChangeLog,v 1.6 2002/09/01 21:46:46 raker Exp $ *wxPython-2.3.2.1-r2 (29 Aug 2002) + 01 Sep 2002; Nick Hadaway <raker@gentoo.org> wxPython-2.3.2.1-r2.ebuild : + Updated ebuild with missing ${myconf}'s + 29 Aug 2002; Nick Hadaway <raker@gentoo.org> wxPython-2.3.2.1-r2.ebuild, file/digest-wxPython-2.3.2.1-r2, files/ledctrl.diff : GLCANVAS and GIZMOS extensions are now re-enabled and we should have a diff --git a/dev-python/wxPython/wxPython-2.3.2.1-r2.ebuild b/dev-python/wxPython/wxPython-2.3.2.1-r2.ebuild index acfd51b380be..7742b31f7881 100644 --- a/dev-python/wxPython/wxPython-2.3.2.1-r2.ebuild +++ b/dev-python/wxPython/wxPython-2.3.2.1-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/dev-python/wxPython/wxPython-2.3.2.1-r2.ebuild,v 1.1 2002/08/29 18:39:22 raker Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/wxPython/wxPython-2.3.2.1-r2.ebuild,v 1.2 2002/09/01 21:46:46 raker Exp $ S=${WORKDIR}/${P} @@ -44,12 +44,12 @@ src_compile() { myconf="${myconf} BUILD_GLCANVAS=0" fi - python setup.py build || die + python setup.py ${myconf} build || die } src_install () { - python setup.py install --prefix=${D}/usr || die + python setup.py ${myconf} install --prefix=${D}/usr || die dodoc BUILD.unix.txt CHANGES.txt MANIFEST.in PKG-INFO README.txt } |