diff options
author | 2009-10-03 20:54:48 +0000 | |
---|---|---|
committer | 2009-10-03 20:54:48 +0000 | |
commit | 46af1a0c95a5363aa104e34286b60c8ca7761a7e (patch) | |
tree | 274b4cd3bc112bb159b8b0d7a589b87a836441bb /dev-python/pexpect/pexpect-2.4.ebuild | |
parent | Change order of 1.4 and 1.5 deps. (diff) | |
download | gentoo-2-46af1a0c95a5363aa104e34286b60c8ca7761a7e.tar.gz gentoo-2-46af1a0c95a5363aa104e34286b60c8ca7761a7e.tar.bz2 gentoo-2-46af1a0c95a5363aa104e34286b60c8ca7761a7e.zip |
Version bump.
(Portage version: 14479-svn/cvs/Linux x86_64)
Diffstat (limited to 'dev-python/pexpect/pexpect-2.4.ebuild')
-rw-r--r-- | dev-python/pexpect/pexpect-2.4.ebuild | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/dev-python/pexpect/pexpect-2.4.ebuild b/dev-python/pexpect/pexpect-2.4.ebuild new file mode 100644 index 000000000000..2b236b9605e3 --- /dev/null +++ b/dev-python/pexpect/pexpect-2.4.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pexpect/pexpect-2.4.ebuild,v 1.1 2009/10/03 20:54:48 arfrever Exp $ + +EAPI="2" +SUPPORT_PYTHON_ABIS="1" + +inherit distutils + +DESCRIPTION="Python module for spawning child applications and responding to expected patterns" +HOMEPAGE="http://pexpect.sourceforge.net/ http://pypi.python.org/pypi/pexpect" +SRC_URI="http://pypi.python.org/packages/source/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86" +IUSE="doc examples" + +DEPEND="" +RDEPEND="" +RESTRICT_PYTHON_ABIS="3.*" + +src_install() { + distutils_src_install + + use doc && dohtml -r doc/* + + if use examples; then + insinto /usr/share/doc/${PF} + doins -r examples + fi +} + +pkg_postinst() { + python_mod_optimize ANSI.py fdpexpect.py FSM.py pexpect.py pxssh.py screen.py +} + +pkg_postrm() { + python_mod_cleanup +} |