diff options
author | 2005-01-24 17:58:59 +0000 | |
---|---|---|
committer | 2005-01-24 17:58:59 +0000 | |
commit | 50b66755324b618ea1d40344a51b8d3ccedf0117 (patch) | |
tree | 86903192bafb34820ea8450d4389c9743454f909 /dev-python/apse/apse-0.2.ebuild | |
parent | Pruning obsoletes (diff) | |
download | historical-50b66755324b618ea1d40344a51b8d3ccedf0117.tar.gz historical-50b66755324b618ea1d40344a51b8d3ccedf0117.tar.bz2 historical-50b66755324b618ea1d40344a51b8d3ccedf0117.zip |
New package submission
Package-Manager: portage-2.0.51-r14
Diffstat (limited to 'dev-python/apse/apse-0.2.ebuild')
-rw-r--r-- | dev-python/apse/apse-0.2.ebuild | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/dev-python/apse/apse-0.2.ebuild b/dev-python/apse/apse-0.2.ebuild new file mode 100644 index 000000000000..db063b039822 --- /dev/null +++ b/dev-python/apse/apse-0.2.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/apse/apse-0.2.ebuild,v 1.1 2005/01/24 17:58:59 satya Exp $ + +inherit distutils +MY_PN="${PN/apse/Apse}" + +DESCRIPTION="Approximate String Matching in Python: identifies typing and spelling errors, closely related vocabularies, genetic mutations (GAG ACT), abbreviations" +HOMEPAGE="http://www.personal.psu.edu/staff/i/u/iua1/python/apse/" +SRC_URI="http://www.personal.psu.edu/staff/i/u/iua1/python/apse/dist/${MY_PN}-${PV}.tar.gz" + +LICENSE="GPL-2" +KEYWORDS="~x86" +SLOT="0" +IUSE="" + +DEPEND="dev-lang/python + dev-lang/swig" + +S=${WORKDIR}/${MY_PN}-${PV} + +PYTHON_MODNAME="Apse" + +src_install() { + distutils_src_install + #dodir /usr/share/doc/${PF} + dodoc README* *agrep + insinto /usr/share/doc/test + doins test/* +} + |