diff options
Diffstat (limited to 'dev-python/pyopenssl/pyopenssl-0.6.ebuild')
-rw-r--r-- | dev-python/pyopenssl/pyopenssl-0.6.ebuild | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/dev-python/pyopenssl/pyopenssl-0.6.ebuild b/dev-python/pyopenssl/pyopenssl-0.6.ebuild new file mode 100644 index 000000000000..b16bdf11b159 --- /dev/null +++ b/dev-python/pyopenssl/pyopenssl-0.6.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyopenssl/pyopenssl-0.6.ebuild,v 1.1 2004/08/18 17:31:47 kloeri Exp $ + +inherit distutils + +MY_P=${P/openssl/OpenSSL} +S=${WORKDIR}/${MY_P} + +DESCRIPTION="Python interface to the OpenSSL library" +HOMEPAGE="http://pyopenssl.sourceforge.net/" +SRC_URI="mirror://sourceforge/pyopenssl/${MY_P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~x86 ~amd64 ~ppc ~alpha" +IUSE="tetex" + +RDEPEND="virtual/python + >=dev-libs/openssl-0.9.6g" +DEPEND="${RDEPEND} + tetex? ( >=dev-tex/latex2html-2002.2 )" + +src_compile() { + distutils_src_compile + if use tetex ; then + addwrite /var/cache/fonts + cd ${S}/doc + make html ps dvi + fi +} + +src_install() { + distutils_src_install + + if use tetex ; then + dohtml ${S}/doc/html/* + dodoc ${S}/doc/pyOpenSSL.* + fi + + # install examples + docinto examples + dodoc ${S}/examples/* + docinto examples/simple + dodoc ${S}/examples/simple/* +} + +pkg_postinst() { + echo + einfo "For docs in html you need to have tetex in your USE var" + echo +} |