Cleanup old files.
authorLuca Longinotti <chtekk@gentoo.org>
Mon, 5 Jun 2006 18:41:13 +0000 (18:41 +0000)
committerLuca Longinotti <chtekk@gentoo.org>
Mon, 5 Jun 2006 18:41:13 +0000 (18:41 +0000)
Package-Manager: portage-2.1_rc4-r2

net-www/mod_xslt/ChangeLog
net-www/mod_xslt/files/25_mod_xslt.conf
net-www/mod_xslt/files/digest-mod_xslt-2.0.4
net-www/mod_xslt/metadata.xml
net-www/mod_xslt/mod_xslt-2.0.4.ebuild

index 6d33bf48bd17caa6dbf2b91c587b61b46d48aed0..ad637d05e0c89b65e29d7b02586a849a6cf41c5e 100644 (file)
@@ -1,6 +1,13 @@
 # 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:
index 863b50d39b8911eb1ec2afa840ee07f66ad5c6be..f04e0bf851c84bdc7d6c8bdf9968d9566522332f 100644 (file)
@@ -1,20 +1,29 @@
 <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>
index 0bc1f7e4efa3a2b689d6125619312a73f468550f..9eb9e868e21d593a7351c45b704989881a3070b3 100644 (file)
@@ -1 +1,3 @@
 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
index b5dacc90f7f77cb4931262a4dbfbd57c2dcbd420..8f398d815b6c19f3767c5e0a321561dc9964d3c7 100644 (file)
@@ -1,12 +1,8 @@
 <?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>
index 1b6fd7f2f6f1cd32e0022340ea94ec4d786d175b..e521f181526a0ece41df7e78e6ca9b3131e2f48c 100644 (file)
@@ -1,10 +1,10 @@
-# 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"
 
@@ -20,11 +20,10 @@ DEPEND="${RDEPEND}
                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"