diff options
author | Thomas Raschbacher <lordvan@gentoo.org> | 2003-11-03 07:26:34 +0000 |
---|---|---|
committer | Thomas Raschbacher <lordvan@gentoo.org> | 2003-11-03 07:26:34 +0000 |
commit | 8aa528965242b80db2e605ce88a034b1b6a6e374 (patch) | |
tree | 523d0e2ec9dc9c9b6a26f8ac840b8ebef75b08d0 /dev-python/twisted-cvs/twisted-cvs-20031103.ebuild | |
parent | new version with changed cvs server address (diff) | |
download | gentoo-2-8aa528965242b80db2e605ce88a034b1b6a6e374.tar.gz gentoo-2-8aa528965242b80db2e605ce88a034b1b6a6e374.tar.bz2 gentoo-2-8aa528965242b80db2e605ce88a034b1b6a6e374.zip |
new version with changed cvs server address
Diffstat (limited to 'dev-python/twisted-cvs/twisted-cvs-20031103.ebuild')
-rw-r--r-- | dev-python/twisted-cvs/twisted-cvs-20031103.ebuild | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/dev-python/twisted-cvs/twisted-cvs-20031103.ebuild b/dev-python/twisted-cvs/twisted-cvs-20031103.ebuild new file mode 100644 index 000000000000..f532f9cc08e4 --- /dev/null +++ b/dev-python/twisted-cvs/twisted-cvs-20031103.ebuild @@ -0,0 +1,57 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted-cvs/twisted-cvs-20031103.ebuild,v 1.1 2003/11/03 07:26:28 lordvan Exp $ + +ECVS_USER="anon" +ECVS_SERVER="cvs.twistedmatrix.com:/cvs" +ECVS_MODULE="Twisted" +ECVS_CVS_OPTIONS="-dP" + +inherit cvs +inherit distutils + +S=${WORKDIR}/${ECVS_MODULE} +DESCRIPTION="Twisted is a framework, written in Python, for writing networked applications." +HOMEPAGE="http://www.twistedmatrix.com/" +SRC_URI="" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~x86 ~alpha" + +RDEPEND="virtual/python" +DEPEND="${DEPEND} + >=dev-python/epydoc-1.1 + >=dev-python/pycrypto-1.9_alpha4" + +src_compile() { + distutils_src_compile + ## .ps & pdf generation (book) sandbox violation .. + ##${S}/admin/process-docs + # from admin/release-twisted + #cd ${S} + #epydoc -o doc/api twisted/* && + #cp doc/api/index.html doc/api/index.html.bak && + #cp doc/api/epydoc-index.html doc/api/index.html + #tree doc/api +} + +src_install() { + distutils_src_install + + # next few lines will install docs: 9.4 megs! + dodir /usr/share/doc/${PF} + # of course it's documentation! + doman doc/man/*.[0-9n] + rm -rf doc/man # don't dupe the man pages + cd doc + cp -r . ${D}/usr/share/doc/${PF} + cd ../ +} + +pkg_postinst() { + echo + einfo "This is for testing only! Do not submit bugs regarding this to" + einfo "Bugzilla. Instead mail me at lordvan@gentoo.org" + echo +} |