diff options
author | Gunnar Wrobel <wrobel@gentoo.org> | 2005-07-05 15:55:36 +0000 |
---|---|---|
committer | Gunnar Wrobel <wrobel@gentoo.org> | 2005-07-05 15:55:36 +0000 |
commit | cbc8c26983b4cea4948f5c68cc66a9338ef9594b (patch) | |
tree | 8819a6545ffedfd498483defe7f18ca7e6160524 /dev-python | |
parent | Added pyblosxom ebuild (diff) | |
download | overlay-cbc8c26983b4cea4948f5c68cc66a9338ef9594b.tar.gz overlay-cbc8c26983b4cea4948f5c68cc66a9338ef9594b.tar.bz2 overlay-cbc8c26983b4cea4948f5c68cc66a9338ef9594b.zip |
Added pyperl ebuild
svn path=/; revision=140
Diffstat (limited to 'dev-python')
-rw-r--r-- | dev-python/pyperl/pyperl-1.0.1.ebuild | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/dev-python/pyperl/pyperl-1.0.1.ebuild b/dev-python/pyperl/pyperl-1.0.1.ebuild new file mode 100644 index 0000000..4661915 --- /dev/null +++ b/dev-python/pyperl/pyperl-1.0.1.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2005 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# Header: $ + +inherit eutils distutils + +DESCRIPTION="pyperl is a module for integrating Perl in Python." +SRC_URI="http://downloads.activestate.com/Zope-Perl/${P}.tar.gz" +HOMEPAGE="http://aspn.activestate.com/ASPN/Modules/dist_html?dist_id=10617" + +LICENSE="Artistic GPL-2" +KEYWORDS="~x86" + +IUSE="" + +DEPEND="virtual/python + dev-lang/perl" + +pkg_setup() { + if ! built_with_use perl ithreads ; then + eerror "If you want to use pyperl you will need" + eerror "to enable threading in perl by setting the" + eerror "'ithreads' USE flag and reemerging perl!" + die "Current perl installation does not support pyperl!" + fi +} + +src_install() { + + distutils_src_install + dodoc README +} + + |