diff options
author | Radoslaw Stachowiak <radek@gentoo.org> | 2005-12-11 20:02:14 +0000 |
---|---|---|
committer | Radoslaw Stachowiak <radek@gentoo.org> | 2005-12-11 20:02:14 +0000 |
commit | fa84b49089141115d28fb79f8d80b9b95eb16e27 (patch) | |
tree | 842d7f704b1fa01f7c65549e610805cc0fee5831 /net-zope/portaltransforms/portaltransforms-1.0.4-r1.ebuild | |
parent | 5.32.0 version bump. (diff) | |
download | historical-fa84b49089141115d28fb79f8d80b9b95eb16e27.tar.gz historical-fa84b49089141115d28fb79f8d80b9b95eb16e27.tar.bz2 historical-fa84b49089141115d28fb79f8d80b9b95eb16e27.zip |
fixes extentions installation issue, #109759
Package-Manager: portage-2.0.53
Diffstat (limited to 'net-zope/portaltransforms/portaltransforms-1.0.4-r1.ebuild')
-rw-r--r-- | net-zope/portaltransforms/portaltransforms-1.0.4-r1.ebuild | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/net-zope/portaltransforms/portaltransforms-1.0.4-r1.ebuild b/net-zope/portaltransforms/portaltransforms-1.0.4-r1.ebuild new file mode 100644 index 000000000000..96b22f8dff25 --- /dev/null +++ b/net-zope/portaltransforms/portaltransforms-1.0.4-r1.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-zope/portaltransforms/portaltransforms-1.0.4-r1.ebuild,v 1.1 2005/12/11 20:02:14 radek Exp $ + +inherit zproduct + +MY_PN="PortalTransforms" +MY_PV=1.0.4 +MY_P="${MY_PN}-${MY_PV}" +DESCRIPTION="MIME-type based transformations for Archetypes" +HOMEPAGE="http://www.sf.net/projects/archetypes" +SRC_URI="mirror://sourceforge/archetypes/${MY_P}.tgz" +LICENSE="GPL-1" +KEYWORDS="~x86 ~ppc" +IUSE="" +ZPROD_LIST="${MY_PN}" +MYDOC="${MYDOC} TODO README LICENSE.txt ChangeLog" + +DEPEND_BOTH="dev-python/docutils + www-client/lynx + app-text/pdftohtml" + +RDEPEND="${RDEPEND} + app-text/htmltidy + app-text/wv + dev-libs/libxslt + app-text/xlhtml + app-text/unrtf + ${DEPEND_BOTH}" + +S=${WORKDIR}/${MY_P}/${MY_PN} + +src_compile() { + python setup.py build +} + +src_install() { + dodoc docs/*.rst + dohtml docs/*.html + DIR=`ls -d build/scripts*` + S=${S}/build dobin ${DIR}/transform + S=${S}/build/lib/Products zproduct_src_install all + cp -a ${S}/{Extensions,zope,www,skins} ${D}/${ZP_DIR}/${PF}/${MY_PN} + cp ${S}/tool.gif ${D}/${ZP_DIR}/${PF}/${MY_PN} +} |