diff options
author | 2004-12-06 23:28:20 +0000 | |
---|---|---|
committer | 2004-12-06 23:28:20 +0000 | |
commit | 9f3ae2aa62fec319269c5593eba8e4d5762b2dce (patch) | |
tree | a73c47201cbd9224808b668e2d2bbcedbc1da743 /dev-python/tpg/tpg-3.0.4.ebuild | |
parent | Fix an xkb symlink that was hardcoded lib rather than using get_libdir(). Rep... (diff) | |
download | gentoo-2-9f3ae2aa62fec319269c5593eba8e4d5762b2dce.tar.gz gentoo-2-9f3ae2aa62fec319269c5593eba8e4d5762b2dce.tar.bz2 gentoo-2-9f3ae2aa62fec319269c5593eba8e4d5762b2dce.zip |
version bump
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 +} |