blob: 2f723b474894e20fc9c6bb653d63dc58c762dfe1 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/lupy/lupy-0.2.1-r1.ebuild,v 1.4 2007/01/08 17:08:27 peper Exp $
inherit distutils
MY_PN="Lupy"
MY_P="${MY_PN}-${PV}"
DESCRIPTION="Lupy is a is a full-text indexer and search engine written in Python."
HOMEPAGE="http://divmod.org/projects/lupy"
SRC_URI="mirror://sourceforge/lupy/${MY_P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~ia64 ~ppc ~s390 ~x86"
IUSE=""
DEPEND=">=dev-lang/python-2.2"
S=${WORKDIR}/${MY_P}
src_install() {
distutils_src_install
insinto /usr/share/doc/${PF}/examples
doins ${S}/examples/*
insinto /usr/share/doc/${PF}/examples/aesop
doins ${S}/examples/aesop/*
}
|