blob: 0edb2b9df7f787834a5b623bdc460a2b5b0b0a61 (
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-2006 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.2 2006/03/04 09:00:43 lucass 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="~x86 ~s390 ~ppc"
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/*
}
|