diff options
author | Chris Houser <chouser@gentoo.org> | 2002-08-08 02:32:50 +0000 |
---|---|---|
committer | Chris Houser <chouser@gentoo.org> | 2002-08-08 02:32:50 +0000 |
commit | ac7c0a52bda7c0b552e751c561e8e46aa2245f67 (patch) | |
tree | c77606ac3907ab31e27861932c697b5c43d6e8e2 /dev-python/irman-python | |
parent | new version of tcc (tiny C compiler) (diff) | |
download | historical-ac7c0a52bda7c0b552e751c561e8e46aa2245f67.tar.gz historical-ac7c0a52bda7c0b552e751c561e8e46aa2245f67.tar.bz2 historical-ac7c0a52bda7c0b552e751c561e8e46aa2245f67.zip |
new ebuild
Diffstat (limited to 'dev-python/irman-python')
-rw-r--r-- | dev-python/irman-python/ChangeLog | 8 | ||||
-rw-r--r-- | dev-python/irman-python/files/digest-irman-python-0.1 | 1 | ||||
-rw-r--r-- | dev-python/irman-python/irman-python-0.1.ebuild | 23 |
3 files changed, 32 insertions, 0 deletions
diff --git a/dev-python/irman-python/ChangeLog b/dev-python/irman-python/ChangeLog new file mode 100644 index 000000000000..bc8889395592 --- /dev/null +++ b/dev-python/irman-python/ChangeLog @@ -0,0 +1,8 @@ +# ChangeLog for dev-python/irman-python +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL +# $Header: /var/cvsroot/gentoo-x86/dev-python/irman-python/ChangeLog,v 1.1 2002/08/08 02:32:50 chouser Exp $ + +*irman-python-0.1 (07 Aug 2002) + + 07 Aug 2002; Chris Houser <chouser@gentoo.org> irman-python-0.1.ebuild, + files/digest-irman-python-0.1, ChangeLog: New ebuild. diff --git a/dev-python/irman-python/files/digest-irman-python-0.1 b/dev-python/irman-python/files/digest-irman-python-0.1 new file mode 100644 index 000000000000..82601b967d58 --- /dev/null +++ b/dev-python/irman-python/files/digest-irman-python-0.1 @@ -0,0 +1 @@ +MD5 c74bce2985b5b0115e56953c1f52d329 irman-python-0.1.tar.gz 16390 diff --git a/dev-python/irman-python/irman-python-0.1.ebuild b/dev-python/irman-python/irman-python-0.1.ebuild new file mode 100644 index 000000000000..bf47b077fb88 --- /dev/null +++ b/dev-python/irman-python/irman-python-0.1.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# $Header: /var/cvsroot/gentoo-x86/dev-python/irman-python/irman-python-0.1.ebuild,v 1.1 2002/08/08 02:32:50 chouser Exp $ + +DESCRIPTION="A minimal set of Python bindings for libirman." +SRC_URI="http://bluweb.com/chouser/proj/${PN}/${P}.tar.gz" +HOMEPAGE="http://bluweb.com/chouser/proj/irman-python/" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="x86" + +DEPEND="media-libs/libirman" +#RDEPEND="" + +src_compile() { + python setup.py build || die +} + +src_install () { + python setup.py install --root=${D} || die + dodoc README test_name.py +} |