blob: 1cf5d5236602351e1566f4759e947ad3934dd888 (
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-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/python-levenshtein/python-levenshtein-0.10.ebuild,v 1.2 2004/06/25 01:45:55 agriffis Exp $
inherit distutils
MY_P=${P/l/L}
S=${WORKDIR}/${MY_P}
DESCRIPTION="Levenshtein contains functions for fast computation of Levenshtein (edit) distance, and edit operations"
SRC_URI="http://trific.ath.cx/Ftp//python/levenshtein/${MY_P}.tar.bz2"
HOMEPAGE="http://trific.ath.cx/resources/python/levenshtein/"
IUSE="doc"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
DEPEND="virtual/python"
src_unpack(){
unpack ${A}
use doc && ( cp ${FILESDIR}/genextdoc.py ${T}
chmod +x ${T}/genextdoc.py )
}
src_install(){
distutils_src_install
use doc && ( ${T}/genextdoc.py Levenshtein
dohtml Levenshtein.html )
}
|