blob: c1deb5e9e634e71f9ac886996e8e8d768538fbe8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Mikael Hallendal <micke@hallendal.net>
# $Header: /var/cvsroot/gentoo-x86/dev-python/orbit-python/orbit-python-0.3.0-r1.ebuild,v 1.4 2002/04/12 17:11:23 spider Exp $
S=${WORKDIR}/${P}
DESCRIPTION="ORBit bindings for Python"
SRC_URI="http://orbit-python.sault.org/files/${P}.tar.gz"
HOMEPAGE="http://orbit-python.sault.org/"
DEPEND="=dev-libs/glib-1.2*
>=gnome-base/ORBit-0.5.10-r1
virtual/python"
src_compile() {
CFLAGS="$CFLAGS `gnome-config --cflags libIDL`"
PYTHON="/usr/bin/python" ./configure --host=${CHOST} \
--prefix=/usr \
--with-libIDL-prefix=/usr \
--with-orbit-prefix=/usr
assert
make || die
}
src_install() {
make DESTDIR=${D} install || die
dodoc AUTHORS COPYING ChangeLog NEWS README TODO
}
|