blob: e521f181526a0ece41df7e78e6ca9b3131e2f48c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-www/mod_xslt/mod_xslt-2.0.4.ebuild,v 1.11 2006/06/05 18:41:13 chtekk Exp $
inherit eutils apache-module
DESCRIPTION="An xslt filtering DSO module for Apache2."
HOMEPAGE="http://www.mod-xslt.com/"
SRC_URI="mirror://sourceforge/mod-xslt/${PN}.${PV}.tgz"
LICENSE="GPL-2"
KEYWORDS="amd64 ppc x86"
IUSE=""
SLOT="0"
RDEPEND="dev-libs/libxslt
dev-libs/libxml2"
DEPEND="${RDEPEND}
dev-lang/perl"
S="${WORKDIR}/${PN}.${PV}"
APXS2_ARGS="-I/usr/include/libxml2 -lxslt -lxml2 -lpthread -lz -lm -c ${PN}.c"
APACHE2_MOD_CONF="25_mod_xslt"
APACHE2_MOD_DEFINE="XSLT"
DOCFILES="ChangeLog.txt README.txt"
need_apache2
|