diff options
author | Bart Verwilst <verwilst@gentoo.org> | 2002-08-01 20:11:55 +0000 |
---|---|---|
committer | Bart Verwilst <verwilst@gentoo.org> | 2002-08-01 20:11:55 +0000 |
commit | 5df024b64f222a5ddbd223b22b35b42b08bebbf4 (patch) | |
tree | 54920c113a62ebb511222ddef44656e8ca3914b0 /dev-python | |
parent | Moved from sys-apps to app-misc (diff) | |
download | gentoo-2-5df024b64f222a5ddbd223b22b35b42b08bebbf4.tar.gz gentoo-2-5df024b64f222a5ddbd223b22b35b42b08bebbf4.tar.bz2 gentoo-2-5df024b64f222a5ddbd223b22b35b42b08bebbf4.zip |
re-added sip 2.4
Diffstat (limited to 'dev-python')
-rw-r--r-- | dev-python/sip/files/digest-sip-2.4 | 1 | ||||
-rw-r--r-- | dev-python/sip/sip-2.4.ebuild | 23 |
2 files changed, 24 insertions, 0 deletions
diff --git a/dev-python/sip/files/digest-sip-2.4 b/dev-python/sip/files/digest-sip-2.4 new file mode 100644 index 000000000000..f3ed1e62d0c4 --- /dev/null +++ b/dev-python/sip/files/digest-sip-2.4 @@ -0,0 +1 @@ +MD5 281a1a18fdd126a8e8722ee97c808729 sip-2.4.tar.gz 291762 diff --git a/dev-python/sip/sip-2.4.ebuild b/dev-python/sip/sip-2.4.ebuild new file mode 100644 index 000000000000..f569a6c265e9 --- /dev/null +++ b/dev-python/sip/sip-2.4.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2001 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# $Header: /var/cvsroot/gentoo-x86/dev-python/sip/sip-2.4.ebuild,v 1.6 2002/08/01 20:11:55 verwilst Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="SIP is a tool for generating bindings for C++ classes so that they can be used by Python." +SRC_URI="http://www.river-bank.demon.co.uk/software/${P}.tar.gz" +HOMEPAGE="http://www.thekompany.com/projects/pykde/" +SLOT="0" +KEYWORDS="x86" +LICENSE="MIT" + +DEPEND="virtual/python" + +src_compile(){ + ./configure --prefix=/usr || die + emake || die +} + +src_install() { + emake DESTDIR=${D} install || die + dodoc AUTHORS COPYING NEWS README THANKS TODO +} |