diff options
Diffstat (limited to 'dev-python/gnome-python/gnome-python-1.4.1-r4.ebuild')
-rw-r--r-- | dev-python/gnome-python/gnome-python-1.4.1-r4.ebuild | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/dev-python/gnome-python/gnome-python-1.4.1-r4.ebuild b/dev-python/gnome-python/gnome-python-1.4.1-r4.ebuild new file mode 100644 index 000000000000..29ce7d83e93f --- /dev/null +++ b/dev-python/gnome-python/gnome-python-1.4.1-r4.ebuild @@ -0,0 +1,57 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Achim Gottinger <achim@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/dev-python/gnome-python/gnome-python-1.4.1-r4.ebuild,v 1.1 2002/03/01 03:08:49 blocke Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="gnome-python" +SRC_URI="ftp://ftp.gnome.org/pub/GNOME/stable/latest/sources/${P}.tar.gz" +HOMEPAGE="http://www.gnome.org" + +DEPEND="virtual/python + >=x11-libs/gtk+-1.2.10-r4 + >=media-libs/imlib-1.9.10-r1 + gnome? ( >=gnome-base/gnome-core-1.4.0.4-r1 + >=gnome-base/libglade-0.17-r1 + >=gnome-base/control-center-1.4.0.4 ) + opengl? ( >=x11-libs/gtkglarea-1.2.2-r1 )" + +src_compile() { + + if [ -n "`use gnome`" ] + then + PYTHON="/usr/bin/python" ./configure --host=${CHOST} \ + --prefix=/usr \ + ${myopts} || die + make CFLAGS="${CFLAGS} \`gnome-config capplet --cflags\`" || die + else + cd ${S}/pygtk + PYTHON="/usr/bin/python" ./configure --host=${CHOST} \ + --prefix=/usr \ + ${myopts} || die + make || die + fi +} + +src_install() { + + if [ -n "`use gnome`" ] + then + cd ${S}/pygnome + make prefix=${D}/usr install || die + + dodoc AUTHORS COPYING* ChangeLog NEWS MAPPING + dodoc README* + + cd ${S}/pygnome + docinto pygnome + dodoc COPYING + fi + + cd ${S}/pygtk + make prefix=${D}/usr install || die + + cd ${S}/pygtk + docinto pygtk + dodoc AUTHORS COPYING ChangeLog NEWS MAPPING README +} |