summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Parpart <trapni@gentoo.org>2007-09-04 11:38:40 +0000
committerChristian Parpart <trapni@gentoo.org>2007-09-04 11:38:40 +0000
commitf35552c45326a305e39da05cb901bde2093bdbba (patch)
tree1c62986c3633a7ceb88d7a4998ce9b54b68d0c7a /www-apache/mod_transform/mod_transform-0.7.0_pre20070204.ebuild
parent * cleaned out old ebuilds (diff)
downloadoverlay-f35552c45326a305e39da05cb901bde2093bdbba.tar.gz
overlay-f35552c45326a305e39da05cb901bde2093bdbba.tar.bz2
overlay-f35552c45326a305e39da05cb901bde2093bdbba.zip
included into the main tree already
svn path=/overlay/; revision=59
Diffstat (limited to 'www-apache/mod_transform/mod_transform-0.7.0_pre20070204.ebuild')
-rw-r--r--www-apache/mod_transform/mod_transform-0.7.0_pre20070204.ebuild46
1 files changed, 0 insertions, 46 deletions
diff --git a/www-apache/mod_transform/mod_transform-0.7.0_pre20070204.ebuild b/www-apache/mod_transform/mod_transform-0.7.0_pre20070204.ebuild
deleted file mode 100644
index 4628330..0000000
--- a/www-apache/mod_transform/mod_transform-0.7.0_pre20070204.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2007 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.6.0.ebuild,v 1.8 2007/01/14 21:09:18 chtekk Exp $
-
-inherit apache-module
-
-KEYWORDS="~amd64 ~ppc ~x86"
-
-DESCRIPTION="Filter module that allows Apache2 to do dynamic XSL transformations."
-HOMEPAGE="http://www.outoforder.cc/projects/apache/mod_transform/"
-SRC_URI="http://upstream.rm-rf.in/${PN}/${P}.tar.bz2"
-LICENSE="GPL-2"
-SLOT="0"
-IUSE=""
-
-DEPEND=">=dev-libs/libxslt-1.1.5
- >=dev-libs/libxml2-2.6.11
- >=www-misc/libapreq2-2.07
- >=www-apache/mod_depends-0.7.0_p200702041"
-
-RDEPEND="${DEPEND}"
-
-APACHE2_MOD_CONF="0.7/10_${PN}"
-APACHE2_MOD_DEFINE="TRANSFORM"
-
-need_apache2
-
-src_compile() {
- econf --with-apxs=${APXS2} || die "econf failed"
- emake || die "emake failed"
-}
-
-src_install() {
- # install header(s)
- local AP_INCLUDEDIR=$(${APXS2} -q INCLUDEDIR)
- insinto ${AP_INCLUDEDIR}
- doins include/mod_transform.h || die
-
- # install plugin(s)
- local PLUGIN_DIR=/usr/$(get_libdir)/apache2/modules/mod_transform
- dodir ${PLUGIN_DIR}
- insinto ${PLUGIN_DIR}
- doins src/.libs/http.so
-
- apache2_src_install
-}