diff options
author | Marinus Schraal <foser@gentoo.org> | 2002-12-10 20:05:44 +0000 |
---|---|---|
committer | Marinus Schraal <foser@gentoo.org> | 2002-12-10 20:05:44 +0000 |
commit | 80d74e716220904b36fec21205cc43b10aab0add (patch) | |
tree | 04d1f33a05f1c310d0d0a1dcc30df5173d207914 /dev-python/bonobo-python/bonobo-python-0.2.0-r3.ebuild | |
parent | New naming system, a few important bugfixes. (diff) | |
download | historical-80d74e716220904b36fec21205cc43b10aab0add.tar.gz historical-80d74e716220904b36fec21205cc43b10aab0add.tar.bz2 historical-80d74e716220904b36fec21205cc43b10aab0add.zip |
cleanup
Diffstat (limited to 'dev-python/bonobo-python/bonobo-python-0.2.0-r3.ebuild')
-rw-r--r-- | dev-python/bonobo-python/bonobo-python-0.2.0-r3.ebuild | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/dev-python/bonobo-python/bonobo-python-0.2.0-r3.ebuild b/dev-python/bonobo-python/bonobo-python-0.2.0-r3.ebuild index e3302e4a3de0..de4eaebec470 100644 --- a/dev-python/bonobo-python/bonobo-python-0.2.0-r3.ebuild +++ b/dev-python/bonobo-python/bonobo-python-0.2.0-r3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/bonobo-python/bonobo-python-0.2.0-r3.ebuild,v 1.1 2002/12/10 19:13:00 lordvan Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/bonobo-python/bonobo-python-0.2.0-r3.ebuild,v 1.2 2002/12/10 20:05:44 foser Exp $ IUSE="" @@ -14,10 +14,9 @@ DEPEND="=x11-libs/gtk+-1.2* <dev-python/gnome-python-1.99 =dev-python/orbit-python-0.3* virtual/python" -RDEPEND="${RDEPEND}" SLOT="0" -KEYWORDS="~x86 ~sparc ~alpha" +KEYWORDS="x86 sparc alpha" LICENSE="GPL-2" src_unpack() { @@ -31,7 +30,7 @@ src_unpack() { } src_compile() { - PYTHON=/usr/bin/python ./configure --host=${CHOST} --prefix=/usr \ + PYTHON="/usr/bin/python" econf \ --with-libIDL-prefix=/usr --with-orbit-prefix=/usr \ --with-oaf-prefix=/usr || die make || die @@ -39,12 +38,13 @@ src_compile() { src_install() { # check if nautilus 1 was found - grep "#pysite_PYTHON" ${S}/nautilus/Makefile >& /dev/null && ( \ - mv ${S}/nautilus/Makefile ${S}/nautilus/Makefile.orig; \ - sed s/'install-data-am: install-pysitePYTHON'/'install-data-am:'/ ${S}/nautilus/Makefile.orig > ${S}/nautilus/Makefile; \ - rm ${S}/nautilus/Makefile.orig; ) + grep "#pysite_PYTHON" ${S}/nautilus/Makefile >& /dev/null && \ + ( \ + mv ${S}/nautilus/Makefile ${S}/nautilus/Makefile.orig; \ + sed s/'install-data-am: install-pysitePYTHON'/'install-data-am:'/ ${S}/nautilus/Makefile.orig > ${S}/nautilus/Makefile; \ + ) - make DESTDIR=${D} install || die + einstall || die dodoc AUTHORS COPYING ChangeLog NEWS README TODO } |