blob: 30ab1c3b26b145ff5789c7f30f0316e9e1463743 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/simpleparse/simpleparse-1.0.ebuild,v 1.3 2004/11/04 16:53:27 pythonhead Exp $
IUSE=""
inherit distutils
MY_P="SimpleParse-${PV}"
S=${WORKDIR}/${MY_P}
DESCRIPTION="A Parser Generator for mxTextTools."
SRC_URI="mirror://sourceforge/simpleparse/${MY_P}.zip"
HOMEPAGE="http://simpleparse.sourceforge.net"
DEPEND="virtual/python
dev-python/egenix-mx-base
app-arch/unzip"
LICENSE="as-is"
SLOT="0"
KEYWORDS="x86 sparc alpha"
src_install() {
distutils_src_install --install-data=/usr/share/doc/${PF}
}
|