diff options
Diffstat (limited to 'dev-python/tpg/tpg-3.0.4.ebuild')
-rw-r--r-- | dev-python/tpg/tpg-3.0.4.ebuild | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/dev-python/tpg/tpg-3.0.4.ebuild b/dev-python/tpg/tpg-3.0.4.ebuild new file mode 100644 index 000000000000..22ff1bdbc19b --- /dev/null +++ b/dev-python/tpg/tpg-3.0.4.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/tpg/tpg-3.0.4.ebuild,v 1.1 2004/12/06 23:28:20 carlo Exp $ + +inherit distutils + +MY_P="TPG-${PV}" +S=${WORKDIR}/${MY_P} + +DESCRIPTION="Toy Parser Generator for Python" +HOMEPAGE="http://christophe.delord.free.fr/en/tpg/" +SRC_URI="http://christophe.delord.free.fr/soft/tpg/${MY_P}.tar.gz" + +SLOT="0" +LICENSE="LGPL-2.1" +KEYWORDS="~x86 ~ppc" +IUSE="doc" + +DEPEND="virtual/python" + +DOCS="License.txt THANKS" + +src_install() { + distutils_src_install + if use doc ; then + dohtml doc/* + insinto /usr/share/doc/${PF}/examples + doins examples/* + fi +} |