diff options
author | Grant Goodyear <g2boojum@gentoo.org> | 2003-10-23 15:15:39 +0000 |
---|---|---|
committer | Grant Goodyear <g2boojum@gentoo.org> | 2003-10-23 15:15:39 +0000 |
commit | 6726bdda40c2b0637dda9ecb99a7574f1b7841d5 (patch) | |
tree | 1ef59810ddfe5567e15ed0fda42d9525db3fcf6c /dev-python/quixote/quixote-0.7_alpha1.ebuild | |
parent | Marked 0.6.1 stable, added 0.7_alpha1 as ~x86. (diff) | |
download | gentoo-2-6726bdda40c2b0637dda9ecb99a7574f1b7841d5.tar.gz gentoo-2-6726bdda40c2b0637dda9ecb99a7574f1b7841d5.tar.bz2 gentoo-2-6726bdda40c2b0637dda9ecb99a7574f1b7841d5.zip |
Marked 0.6.1 stable, added 0.7_alpha1 as ~x86.
Diffstat (limited to 'dev-python/quixote/quixote-0.7_alpha1.ebuild')
-rw-r--r-- | dev-python/quixote/quixote-0.7_alpha1.ebuild | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/dev-python/quixote/quixote-0.7_alpha1.ebuild b/dev-python/quixote/quixote-0.7_alpha1.ebuild new file mode 100644 index 000000000000..20dff20c1622 --- /dev/null +++ b/dev-python/quixote/quixote-0.7_alpha1.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/quixote/quixote-0.7_alpha1.ebuild,v 1.1 2003/10/23 15:15:35 g2boojum Exp $ + +PN0="Quixote" +PV0="${PV/_alpha1/a1}" +DESCRIPTION="Python HTML templating framework for developing web applications." +HOMEPAGE="http://www.mems-exchange.org/software/quixote/" +SRC_URI="http://www.mems-exchange.org/software/files/${PN}/${PN0}-${PV0}.tar.gz" + +LICENSE="CNRI" +SLOT="0" +KEYWORDS="~x86" +IUSE="" + +inherit distutils + +DEPEND=">=dev-lang/python-2.2" +S=${WORKDIR}/${PN0}-${PV0} + +src_install() { + mydoc="ACKS CHANGES LICENSE MANIFEST.in README TODO" + distutils_src_install + dodoc doc/*.txt + dohtml doc/*.html + dodir /usr/share/${PN}/demo + insinto /usr/share/${PN}/demo + doins demo/* +} + |