summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChuck Short <zul@gentoo.org>2004-06-27 21:12:22 +0000
committerChuck Short <zul@gentoo.org>2004-06-27 21:12:22 +0000
commit74d99d5115a12230a64d639231e6f23e2928d501 (patch)
tree94079af2298e47b1c55c1a8527f880fa2855f463 /net-www/mod_transform/mod_transform-0.4.0.ebuild
parenttouch the libc (Manifest recommit) (diff)
downloadgentoo-2-74d99d5115a12230a64d639231e6f23e2928d501.tar.gz
gentoo-2-74d99d5115a12230a64d639231e6f23e2928d501.tar.bz2
gentoo-2-74d99d5115a12230a64d639231e6f23e2928d501.zip
Initial versioin. closes #54910.
Diffstat (limited to 'net-www/mod_transform/mod_transform-0.4.0.ebuild')
-rw-r--r--net-www/mod_transform/mod_transform-0.4.0.ebuild32
1 files changed, 32 insertions, 0 deletions
diff --git a/net-www/mod_transform/mod_transform-0.4.0.ebuild b/net-www/mod_transform/mod_transform-0.4.0.ebuild
new file mode 100644
index 000000000000..c7b23627b0cf
--- /dev/null
+++ b/net-www/mod_transform/mod_transform-0.4.0.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2004 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-www/mod_transform/mod_transform-0.4.0.ebuild,v 1.1 2004/06/27 21:12:22 zul Exp $
+
+DESCRIPTION="filter module that allows Apache 2.0 to do dynamic XSL Transformations"
+HOMEPAGE="http://www.outoforder.cc/projects/apache/mod_transform/"
+SRC_URI="http://www.outoforder.cc/downloads/${PN}/${P}.tar.gz"
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~x86"
+IUSE=""
+
+DEPEND=">=net-www/apache-2.0.40
+ >=dev-libs/libxslt-1.0.22
+ >=dev-libs/libxml2-2.6.6"
+
+src_compile() {
+ econf \
+ --with-apxs=/usr/sbin/apxs2 \
+ || die "econf failed"
+ emake || die "emake failed"
+}
+
+src_install() {
+ exeinto /usr/lib/apache2-extramodules
+ newexe src/.libs/libmod_transform.so.0.0.0 mod_transform.so
+
+ insinto /etc/apache2/conf/modules.d
+ doins ${FILESDIR}/mod_transform.conf
+
+ dodoc TODO
+}