summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dev-python/bonobo-python/ChangeLog4
-rw-r--r--dev-python/bonobo-python/bonobo-python-0.2.0-r1.ebuild37
-rw-r--r--dev-python/bonobo-python/bonobo-python-0.2.0-r2.ebuild51
-rw-r--r--dev-python/bonobo-python/bonobo-python-0.2.0-r3.ebuild18
-rw-r--r--dev-python/bonobo-python/files/digest-bonobo-python-0.2.0-r11
-rw-r--r--dev-python/bonobo-python/files/digest-bonobo-python-0.2.0-r21
6 files changed, 11 insertions, 101 deletions
diff --git a/dev-python/bonobo-python/ChangeLog b/dev-python/bonobo-python/ChangeLog
index abcf36bc7c40..0cb50d0c4b4b 100644
--- a/dev-python/bonobo-python/ChangeLog
+++ b/dev-python/bonobo-python/ChangeLog
@@ -1,6 +1,6 @@
# ChangeLog for dev-python/bonobo-python
# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL
-# $Header: /var/cvsroot/gentoo-x86/dev-python/bonobo-python/ChangeLog,v 1.4 2002/12/10 19:13:00 lordvan Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/bonobo-python/ChangeLog,v 1.5 2002/12/10 20:05:44 foser Exp $
*bonobo-python-0.2.0-r3 (10 Dec 2002)
10 Dec 2002; Thomas Raschbacher (lordvan@gentoo.org>:
@@ -12,7 +12,7 @@
fixed configure problem
and fixed dependency (gnome-python1)
-\* Autoupdate keywords (12-6-02)
+* Autoupdate keywords (12-6-02)
06 Dec 2002; Rodney Rees <manson@gentoo.org> changed sparc ~sparc keywords
*bonobo-python-0.2.0-r1 (1 Feb 2002)
diff --git a/dev-python/bonobo-python/bonobo-python-0.2.0-r1.ebuild b/dev-python/bonobo-python/bonobo-python-0.2.0-r1.ebuild
deleted file mode 100644
index f2fc953dabf4..000000000000
--- a/dev-python/bonobo-python/bonobo-python-0.2.0-r1.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# 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-r1.ebuild,v 1.10 2002/12/10 19:13:00 lordvan Exp $
-
-S=${WORKDIR}/${P}
-DESCRIPTION="Bonobo bindings for Python"
-SRC_URI="http://bonobo-python.lajnux.nu/download/${P}.tar.gz"
-HOMEPAGE="http://bonobo-python.lajnux.nu/"
-
-DEPEND="=x11-libs/gtk+-1.2*
- >=gnome-base/bonobo-1.0.9-r1
- >=dev-python/gnome-python-1.4.1-r2
- <=dev-python/gnome-python-1.99.0
- >=dev-python/orbit-python-0.3.0-r1
- virtual/python"
-RDEPEND="${RDEPEND}"
-
-SLOT="0"
-KEYWORDS="x86 sparc alpha"
-LICENSE="GPL-2"
-
-src_compile() {
- PYTHON="/usr/bin/python" ./configure --host=${CHOST} --prefix=/usr \
- --with-libIDL-prefix=/usr --with-orbit-prefix=/usr \
- --with-oaf-prefix=/usr || die
- make || die
-}
-
-src_install() {
- make DESTDIR=${D} install || die
- dodoc AUTHORS COPYING ChangeLog NEWS
- dodoc README TODO
-}
-
-
-
-
diff --git a/dev-python/bonobo-python/bonobo-python-0.2.0-r2.ebuild b/dev-python/bonobo-python/bonobo-python-0.2.0-r2.ebuild
deleted file mode 100644
index f9e713e60716..000000000000
--- a/dev-python/bonobo-python/bonobo-python-0.2.0-r2.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# 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-r2.ebuild,v 1.2 2002/12/10 19:13:00 lordvan Exp $
-
-S=${WORKDIR}/${P}
-DESCRIPTION="Bonobo bindings for Python"
-SRC_URI="http://bonobo-python.lajnux.nu/download/${P}.tar.gz"
-HOMEPAGE="http://bonobo-python.lajnux.nu/"
-
-DEPEND="=x11-libs/gtk+-1.2*
- >=gnome-base/bonobo-1.0.9
- <dev-python/gnome-python-1.99
- =dev-python/orbit-python-0.3*
- virtual/python"
-RDEPEND="${RDEPEND}"
-
-SLOT="0"
-KEYWORDS="~x86 ~sparc ~alpha"
-LICENSE="GPL-2"
-
-src_unpack() {
- unpack ${A}
-
- # fix configure time sandbox problem
- cd ${S}
- mv configure configure.bad
- sed -e "s:import gnome.config ; gnome.config.sync::" configure.bad > configure
- chmod +x configure
-}
-
-src_compile() {
- PYTHON=/usr/bin/python ./configure --host=${CHOST} --prefix=/usr \
- --with-libIDL-prefix=/usr --with-orbit-prefix=/usr \
- --with-oaf-prefix=/usr || die
- make || die
-}
-
-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; )
-
- make DESTDIR=${D} install || die
- dodoc AUTHORS COPYING ChangeLog NEWS README TODO
-}
-
-
-
-
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
}
diff --git a/dev-python/bonobo-python/files/digest-bonobo-python-0.2.0-r1 b/dev-python/bonobo-python/files/digest-bonobo-python-0.2.0-r1
deleted file mode 100644
index 930fe4002637..000000000000
--- a/dev-python/bonobo-python/files/digest-bonobo-python-0.2.0-r1
+++ /dev/null
@@ -1 +0,0 @@
-MD5 85a2d3fc437bc1235a5a5c72b8ab6f70 bonobo-python-0.2.0.tar.gz 275238
diff --git a/dev-python/bonobo-python/files/digest-bonobo-python-0.2.0-r2 b/dev-python/bonobo-python/files/digest-bonobo-python-0.2.0-r2
deleted file mode 100644
index 930fe4002637..000000000000
--- a/dev-python/bonobo-python/files/digest-bonobo-python-0.2.0-r2
+++ /dev/null
@@ -1 +0,0 @@
-MD5 85a2d3fc437bc1235a5a5c72b8ab6f70 bonobo-python-0.2.0.tar.gz 275238