blob: 6883f5d040998ab4decf995f39554489cf9c1423 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# Copyright 1999-2006 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.6 2006/07/31 20:00:54 tgall Exp $
inherit distutils
MY_PN="${PN/apse/Apse}"
DESCRIPTION="Approximate String Matching in Python."
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="~ia64 ~ppc ~ppc64 ~x86"
SLOT="0"
IUSE=""
DEPEND="dev-lang/python
dev-lang/swig"
S=${WORKDIR}/${MY_PN}-${PV}
PYTHON_MODNAME="Apse"
src_install() {
distutils_src_install
dodoc README* *agrep
insinto /usr/share/doc/${PF}/test
doins test/*
}
|