# ChangeLog for net-www/mod_xslt
# Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-www/mod_xslt/ChangeLog,v 1.20 2006/06/05 02:41:54 vericgar Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-www/mod_xslt/ChangeLog,v 1.21 2006/06/05 18:41:13 chtekk Exp $
+
+ 05 Jun 2006; Luca Longinotti <chtekk@gentoo.org>
+ -files/mod-xslt-1.0.5a-debug.patch, -files/mod_xslt-1.0.5a-register.patch,
+ -files/mod_xslt-1.05a.patch, -files/1.0.5a-r1/25_mod_xslt.conf,
+ files/25_mod_xslt.conf, -files/mod-xslt-1.0.5a-content.patch,
+ metadata.xml, mod_xslt-2.0.4.ebuild:
+ Cleanup old files and fix bug #132117.
05 Jun 2006; Michael Stewart <vericgar@gentoo.org>
-mod_xslt-1.0.5a.ebuild, -mod_xslt-1.0.5a-r1.ebuild:
<IfDefine XSLT>
- <IfModule !mod_xslt.c>
- LoadModule mod_xslt extramodules/mod_xslt.so
- </IfModule>
+ <IfModule !mod_xslt.c>
+ LoadModule mod_xslt modules/mod_xslt.so
+ </IfModule>
</IfDefine>
-<IfModule mod_xslt.c>
+### EXAMPLE 1: transform all .xml files
+###
+# <IfModule mod_xslt.c>
+# AddOutputFilter mod_xslt .xml
+# </IfModule>
-AddOutputFilter mod-xslt .xml
-
-<Location _REPLACE_ME_>
- SetOutputFilter mod-xslt
-</Location>
-
-</IfModule>
-
-#<Directory "/home/httpd/htdocs">
-# AddOutputFilterByType mod-xslt text/xml
-#</Directory>
+### EXAMPLE 2: transform all files within a special location (_REPLACE_ME_)
+###
+# <IfModule mod_xslt.c>
+# <Location _REPLACE_ME_>
+# SetOutputFilter mod_xslt
+# </Location>
+# </IfModule>
+### EXAMPLE 3: transform all files whose content type is either
+### text/xml or application/xml within a given directory
+###
+# <IfModule mod_xslt.c>
+# <Directory "/var/www/localhost/htdocs">
+# AddOutputFilterByType mod_xslt text/xml
+# AddOutputFilterByType mod_xslt application/xml
+# </Directory>
+# </IfModule>
MD5 0af29d0ff4dd6d921127c0fb730345ac mod_xslt.2.0.4.tgz 16030
+RMD160 03eecb0a933cd07b77e1c226ecbe91c4cbbf5c87 mod_xslt.2.0.4.tgz 16030
+SHA256 8baceed9852b385913e036a24eccf4e64c9a2c435399bfc4967fd4df11a0cfab mod_xslt.2.0.4.tgz 16030
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
-<herd>apache</herd>
-<maintainer>
- <email>trapni@gentoo.org</email>
- <name>Christian Parpart</name>
-</maintainer>
-<longdescription>
-The Apache HTTP Server Project is an effort to develop and maintain an open-source HTTP server for modern operating systems including UNIX and Windows NT. The goal of this project is to provide a secure, efficient and extensible server that provides HTTP services in sync with the current HTTP standards.
-</longdescription>
+ <herd>apache</herd>
+ <maintainer>
+ <email>apache-bugs@gentoo.org</email>
+ </maintainer>
</pkgmetadata>
-# Copyright 1999-2005 Gentoo Foundation
+# 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.10 2005/12/10 12:55:08 blubb Exp $
+# $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"
+DESCRIPTION="An xslt filtering DSO module for Apache2."
HOMEPAGE="http://www.mod-xslt.com/"
SRC_URI="mirror://sourceforge/mod-xslt/${PN}.${PV}.tgz"
dev-lang/perl"
S="${WORKDIR}/${PN}.${PV}"
-BASE_CONFIG_PV="1.0.5a-r1"
APXS2_ARGS="-I/usr/include/libxml2 -lxslt -lxml2 -lpthread -lz -lm -c ${PN}.c"
-APACHE2_MOD_CONF="${BASE_CONFIG_PV}/25_mod_xslt"
+APACHE2_MOD_CONF="25_mod_xslt"
APACHE2_MOD_DEFINE="XSLT"
DOCFILES="ChangeLog.txt README.txt"