diff options
author | Benedikt Boehm <hollow@gentoo.org> | 2009-09-18 13:31:38 +0000 |
---|---|---|
committer | Benedikt Boehm <hollow@gentoo.org> | 2009-09-18 13:31:38 +0000 |
commit | 6aaa4975712590e336a96166e228940b83492616 (patch) | |
tree | 1ba13c3f06d281dc26f198c0193653880d281cbc /www-apache | |
parent | stable on amd64 & x86 (diff) | |
download | gentoo-2-6aaa4975712590e336a96166e228940b83492616.tar.gz gentoo-2-6aaa4975712590e336a96166e228940b83492616.tar.bz2 gentoo-2-6aaa4975712590e336a96166e228940b83492616.zip |
remove old ebuilds
(Portage version: 2.2_rc40/cvs/Linux i686)
Diffstat (limited to 'www-apache')
-rw-r--r-- | www-apache/mod_jk/ChangeLog | 8 | ||||
-rw-r--r-- | www-apache/mod_jk/files/88_mod_jk.conf | 2 | ||||
-rw-r--r-- | www-apache/mod_jk/files/new/88_mod_jk.conf | 170 | ||||
-rw-r--r-- | www-apache/mod_jk/files/new/jk-workers.properties | 36 | ||||
-rw-r--r-- | www-apache/mod_jk/mod_jk-1.2.25.ebuild | 56 | ||||
-rw-r--r-- | www-apache/mod_jk/mod_jk-1.2.26-r1.ebuild | 56 | ||||
-rw-r--r-- | www-apache/mod_jk/mod_jk-1.2.27.ebuild | 59 | ||||
-rw-r--r-- | www-apache/mod_jk/mod_jk-1.2.28.ebuild | 71 |
8 files changed, 9 insertions, 449 deletions
diff --git a/www-apache/mod_jk/ChangeLog b/www-apache/mod_jk/ChangeLog index 5020d49eb20d..c366cdbfcbdb 100644 --- a/www-apache/mod_jk/ChangeLog +++ b/www-apache/mod_jk/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for www-apache/mod_jk # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_jk/ChangeLog,v 1.62 2009/06/07 12:40:33 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_jk/ChangeLog,v 1.63 2009/09/18 13:31:37 hollow Exp $ + + 18 Sep 2009; Benedikt Böhm <hollow@gentoo.org> files/88_mod_jk.conf, + -mod_jk-1.2.25.ebuild, -mod_jk-1.2.26-r1.ebuild, + -files/new/88_mod_jk.conf, -mod_jk-1.2.27.ebuild, -mod_jk-1.2.28.ebuild, + -files/new/jk-workers.properties: + remove old ebuilds 07 Jun 2009; Markus Meier <maekke@gentoo.org> mod_jk-1.2.28-r1.ebuild: amd64/x86 stable, bug #272414 diff --git a/www-apache/mod_jk/files/88_mod_jk.conf b/www-apache/mod_jk/files/88_mod_jk.conf index 786028a49d82..60d40baba4f9 100644 --- a/www-apache/mod_jk/files/88_mod_jk.conf +++ b/www-apache/mod_jk/files/88_mod_jk.conf @@ -156,3 +156,5 @@ jkAutoAlias /var/lib/tomcat-5.5/default/webapps/ jkMount /*.jsp ajp13 </IfDefine> + +# vim: ts=4 filetype=apache diff --git a/www-apache/mod_jk/files/new/88_mod_jk.conf b/www-apache/mod_jk/files/new/88_mod_jk.conf deleted file mode 100644 index cbd35a9c543c..000000000000 --- a/www-apache/mod_jk/files/new/88_mod_jk.conf +++ /dev/null @@ -1,170 +0,0 @@ -<IfDefine JK> -LoadModule jk_module modules/mod_jk.so - -### -### Where to find workers.properties -### -# JkWorkersFile specify the location where mod_jk will find -# the workers definitions. -JkWorkersFile /etc/apache2/jk-workers.properties - - -### -### Where to put mod_jk logs -### -# specify the location where mod_jk is going to place its log file. -JkLogFile /var/log/apache2/mod_jk.log - -### - -### Where to put mod_jk shm -### -# specify the location where mod_jk is going to place its shm file. -JkShmFile /var/log/apache2/mod_jk.shm - - -### -### Set the jk log level [debug/error/warn/info] -### -# info log will contain standard mod_jk activity -# warn log will contain info and warn (default) -# error log will contain info, warn, and error -# debug log will contain all informations on mod_jk activity -JkLogLevel warn - - -### -### Select the log format -### -# JkLogStampFormat will configure the date/time format found -# on mod_jk logfile. Using the strftime() format string it's -# set by default to "[%a %b %d %H:%M:%S %Y]" -#JkLogStampFormat "[%a %b %d %H:%M:%S %Y] " - - -### -### JkOptions indicate to send SSL KEY SIZE, -### -# The directive JkOptions allow you to set many forwarding -# options which will enable (+) or disable (-) following option. -# -# -# JkOptions ForwardKeySize , you ask mod_jk, when using ajp13, to -# forward also the SSL Key Size as required by Servlet API 2.3. -# This flag shouldn't be set when servlet engine is Tomcat 3.2.x -# (on by default). -# -# -# JkOptions ForwardURICompat , you told mod_jk to send the URI to -# Tomcat normally, which is less spec compliant but mod_rewrite -# compatible, use it for compatibility with Tomcat 3.2.x engines -# (on by default). -# -# -# JkOptions ForwardURICompatUnparsed , the forwarded URI is unparsed, -# it's spec compliant but broke mod_rewrite. -# -# -# JkOptions ForwardURIEscaped , the forwarded URI is escaped and -# Tomcat (since 3.3 rc2) will do the decoding part. -# -# -# JkOptions ForwardDirectories is used in conjunction with Directory- -# Index directive of Apache web server. As such mod_dir should be -# available to Apache, statically or dynamically (DSO) -# -# When DirectoryIndex is configured, Apache will create sub-requests -# for each of the local-url's specified in the directive, to determine -# if there is a local file that matches (this is done by stat-ing the file). -# -# If ForwardDirectories is set to false (default) and Apache doesn't -# find any files that match, Apache will serve the content of the -# directory (if directive Options specifies Indexes for that directory) -# or a 403 Forbidden response (if directive Options doesn't specify -# Indexes for that directory). -# -# If ForwardDirectories is set to true and Apache doesn't find any -# files that match, the request will be forwarded to Tomcat for -# resolution. This is used in cases when Apache cannot see the index -# files on the file system for various reasons: Tomcat is running on -# a different machine, the JSP file has been precompiled etc. -# -# Note that locally visible files will take precedence over the ones -# visible only to Tomcat (i.e. if Apache can see the file, that's -# the one that's going to get served). This is important if there is -# more then one type of file that Tomcat normally serves - for -# instance Velocity pages and JSP pages. -# -JkOptions +ForwardKeySize +ForwardURICompat -ForwardDirectories - - -### -### JkEnvVar forward environment vars -### -# The directive JkEnvVar allow you to forward an environment vars -# from Apache server to Tomcat engine. -# -#JkEnvVar SSL_CLIENT_V_START - - -### -### JkRequestLogFormat set the request format -### -# JkRequestLogFormat will configure the format of mod_jk individual -# request logging. Request logging is configured and enabled on a -# per virtual host basis. To enable request logging for a virtual -# host just add a JkRequestLogFormat config. The syntax of the -# format string is similiar to the Apache LogFormat command, here -# is a list of the available request log format options: -# -# Options Description -# %b Bytes sent, excluding HTTP headers (CLF format) -# %B Bytes sent, excluding HTTP headers -# %H The request protocol -# %m The request method -# %p The canonical Port of the server serving the request -# %q The query string (prepended with a ? if a query string exists, otherwise an empty string) -# %r First line of request -# %s Request HTTP status code -# %T Request duration, elapsed time to handle request in seconds '.' micro seconds -# %U The URL path requested, not including any query string. -# %v The canonical ServerName of the server serving the request -# %V The server name according to the UseCanonicalName setting -# %w Tomcat worker name -# -JkRequestLogFormat "%w %V %T" - - -### -### JkMount assign specific URLs to Tomcat -### -# JkMount directive assign specific URLs to Tomcat. In general the -# structure of a JkMount directive is: -# -# send all requests ending in .jsp to worker1 -# JkMount /*.jsp worker1 -# -# send all requests ending /servlet to worker1 -# JkMount /*/servlet/ worker1 -# -# send all requests jsp requests to files located in /otherworker will go worker2 -# JkMount /otherworker/*.jsp worker2 -# -# -# You can use the JkMount directive at the top level or inside -# <VirtualHost> sections of your httpd.conf file. -# - - -# We specify an autoalias, that makes it possible that apache is still -# reponsible for serving static html files. All requests of files with -# the ending .jsp will be redirected to a default Tomcat installation which -# uses the default profile. Change this to fit your needs. -JkAutoAlias /var/lib/tomcat-*/webapps/ -JkMount /*.jsp ajp13 - - -# Pass on mount optionsl globally to all vhosts/contexts -JkMountCopy all - -</IfDefine> diff --git a/www-apache/mod_jk/files/new/jk-workers.properties b/www-apache/mod_jk/files/new/jk-workers.properties deleted file mode 100644 index 346812ab1141..000000000000 --- a/www-apache/mod_jk/files/new/jk-workers.properties +++ /dev/null @@ -1,36 +0,0 @@ -# workers.properties - -# -# This file provides jk derived plugins with the needed information to -# connect to the different tomcat workers. Note that the distributed -# version of this file requires modification before it is usable by a -# plugin. -# -# As a general note, the characters $( and ) are used internally to define -# macros. Do not use them in your own configuration! - -# The list of Tomcat workers -# -worker.list=ajp13 - - -#------ DEFAULT ajp13 WORKER DEFINITION ------------------------------ -#--------------------------------------------------------------------- -# - -# Defining a worker named ajp13 and of type ajp13 -# Note that the name and the type do not have to match. -# -worker.ajp13.port=8009 -worker.ajp13.host=localhost -worker.ajp13.type=ajp13 -# -# Specifies the load balance factor when used with -# a load balancing worker. -# Note: -# ----> lbfactor must be > 0 -# ----> Low lbfactor means less work done by the worker. -worker.ajp13.lbfactor=1 - -# -# Specify the size of the open connection cache. -#worker.ajp13.cachesize=10 diff --git a/www-apache/mod_jk/mod_jk-1.2.25.ebuild b/www-apache/mod_jk/mod_jk-1.2.25.ebuild deleted file mode 100644 index d276b420d6e6..000000000000 --- a/www-apache/mod_jk/mod_jk-1.2.25.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_jk/mod_jk-1.2.25.ebuild,v 1.6 2008/01/31 19:05:28 hollow Exp $ - -inherit apache-module autotools - -MY_P="tomcat-connectors-${PV}-src" - -KEYWORDS="amd64 ppc x86" - -DESCRIPTION="JK module for connecting Tomcat and Apache using the ajp13 protocol." -HOMEPAGE="http://tomcat.apache.org/connectors-doc/" -SRC_URI="mirror://apache/tomcat/tomcat-connectors/jk/source/jk-${PV}/${MY_P}.tar.gz" -LICENSE="Apache-2.0" -SLOT="0" -IUSE="" - -S="${WORKDIR}/${MY_P}/native" - -APACHE2_MOD_FILE="${S}/apache-2.0/${PN}.so" -APACHE2_MOD_CONF="88_${PN}" -APACHE2_MOD_DEFINE="JK" - -DOCFILES="CHANGES README" - -need_apache - -src_unpack() { - unpack ${A} - cd "${S}" - - eautoreconf -} - -src_compile() { - econf \ - --with-apxs=${APXS} \ - --with-apr-config=/usr/bin/apr-config \ - || die "econf failed" - emake LIBTOOL="/bin/sh $(pwd)/libtool --silent" || die "emake failed" -} - -src_install() { - # install the workers.properties file - insinto "${APACHE_CONFDIR}" - doins "${FILESDIR}/jk-workers.properties" - - # call the nifty default src_install :-) - apache-module_src_install -} - -pkg_postinst() { - elog "Tomcat is not a dependency of mod_jk any longer, if you intend" - elog "to use it with Tomcat, you have to merge www-servers/tomcat on" - elog "your own." -} diff --git a/www-apache/mod_jk/mod_jk-1.2.26-r1.ebuild b/www-apache/mod_jk/mod_jk-1.2.26-r1.ebuild deleted file mode 100644 index cf4be6097c1c..000000000000 --- a/www-apache/mod_jk/mod_jk-1.2.26-r1.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_jk/mod_jk-1.2.26-r1.ebuild,v 1.4 2008/10/25 15:38:33 nixnut Exp $ - -inherit apache-module autotools - -MY_P="tomcat-connectors-${PV}-src" - -KEYWORDS="amd64 ppc x86" - -DESCRIPTION="JK module for connecting Tomcat and Apache using the ajp13 protocol." -HOMEPAGE="http://tomcat.apache.org/connectors-doc/" -SRC_URI="mirror://apache/tomcat/tomcat-connectors/jk/source/jk-${PV}/${MY_P}.tar.gz" -LICENSE="Apache-2.0" -SLOT="0" -IUSE="" - -S="${WORKDIR}/${MY_P}/native" - -APACHE2_MOD_FILE="${S}/apache-2.0/${PN}.so" -APACHE2_MOD_CONF="new/88_${PN}" -APACHE2_MOD_DEFINE="JK" - -DOCFILES="CHANGES" - -need_apache - -src_unpack() { - unpack ${A} - cd "${S}" - - eautoreconf -} - -src_compile() { - econf \ - --with-apxs=${APXS} \ - --with-apr-config=/usr/bin/apr-config \ - || die "econf failed" - emake LIBTOOL="/bin/sh $(pwd)/libtool --silent" || die "emake failed" -} - -src_install() { - # install the workers.properties file - insinto "${APACHE_CONFDIR}" - doins "${FILESDIR}/new/jk-workers.properties" - - # call the nifty default src_install :-) - apache-module_src_install -} - -pkg_postinst() { - elog "Tomcat is not a dependency of mod_jk any longer, if you intend" - elog "to use it with Tomcat, you have to merge www-servers/tomcat on" - elog "your own." -} diff --git a/www-apache/mod_jk/mod_jk-1.2.27.ebuild b/www-apache/mod_jk/mod_jk-1.2.27.ebuild deleted file mode 100644 index 7accf88a826f..000000000000 --- a/www-apache/mod_jk/mod_jk-1.2.27.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_jk/mod_jk-1.2.27.ebuild,v 1.4 2009/05/26 17:50:17 arfrever Exp $ - -inherit apache-module java-pkg-2 - -MY_P="tomcat-connectors-${PV}-src" - -KEYWORDS="amd64 ppc x86" - -DESCRIPTION="JK module for connecting Tomcat and Apache using the ajp13 protocol." -HOMEPAGE="http://tomcat.apache.org/connectors-doc/" -SRC_URI="mirror://apache/tomcat/tomcat-connectors/jk/source/jk-${PV}/${MY_P}.tar.gz" -LICENSE="Apache-2.0" -SLOT="0" -IUSE="" - -S="${WORKDIR}/${MY_P}/native" - -APACHE2_MOD_FILE="${S}/apache-2.0/${PN}.so" -APACHE2_MOD_CONF="88_${PN}" -APACHE2_MOD_DEFINE="JK" - -DOCFILES="CHANGES" -CONF_DIR="${WORKDIR}/${MY_P}/conf" -need_apache - -DEPEND=">=virtual/jdk-1.4" - -pkg_setup() { - java-pkg-2_pkg_setup -} - -src_compile() { - econf \ - --with-apxs=${APXS} \ - --with-apr-config=/usr/bin/apr-config \ - || die "econf failed" - emake LIBTOOL="/bin/sh $(pwd)/libtool --silent" || die "emake failed" -} - -src_install() { - # install the workers.properties file - insinto "${APACHE_CONFDIR}" - doins "${CONF_DIR}/workers.properties" - doins "${CONF_DIR}/uriworkermap.properties" - - # call the nifty default src_install :-) - apache-module_src_install -} - -pkg_postinst() { - elog "Tomcat is not a dependency of mod_jk any longer, if you intend" - elog "to use it with Tomcat, you have to merge www-servers/tomcat on" - elog "your own." - - elog "Advanced Directives and Options can be found at: " - elog "http://tomcat.apache.org/connectors-doc/reference/workers.html" -} diff --git a/www-apache/mod_jk/mod_jk-1.2.28.ebuild b/www-apache/mod_jk/mod_jk-1.2.28.ebuild deleted file mode 100644 index 9afdb0483f9e..000000000000 --- a/www-apache/mod_jk/mod_jk-1.2.28.ebuild +++ /dev/null @@ -1,71 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_jk/mod_jk-1.2.28.ebuild,v 1.3 2009/05/26 17:50:17 arfrever Exp $ - -EAPI="2" - -inherit apache-module java-pkg-2 - -MY_P="tomcat-connectors-${PV}-src" - -KEYWORDS="~amd64 ~ppc ~x86" - -DESCRIPTION="JK module for connecting Tomcat and Apache using the ajp13 protocol." -HOMEPAGE="http://tomcat.apache.org/connectors-doc/" -SRC_URI="mirror://apache/tomcat/tomcat-connectors/jk/source/jk-${PV}/${MY_P}.tar.gz" -LICENSE="Apache-2.0" -SLOT="0" -IUSE="" - -S="${WORKDIR}/${MY_P}/native" - -APACHE2_MOD_FILE="${S}/apache-2.0/${PN}.so" -APACHE2_MOD_CONF="88_${PN}" -APACHE2_MOD_DEFINE="JK" - -DOCFILES="CHANGES" -CONF_DIR="${WORKDIR}/${MY_P}/conf" -need_apache - -DEPEND=">=virtual/jdk-1.4" -RDEPEND="" - -pkg_setup() { - java-pkg-2_pkg_setup -} - -src_configure() { - econf \ - --with-apxs=${APXS} \ - --with-apr-config=/usr/bin/apr-config \ - || die "econf failed" -} - -src_compile() { - emake LIBTOOL="/bin/sh $(pwd)/libtool --silent" || die "emake failed" -} - -src_install() { - # install the workers.properties file - insinto "${APACHE_CONFDIR}" - doins "${CONF_DIR}/workers.properties" - doins "${CONF_DIR}/uriworkermap.properties" - - # call the nifty default src_install :-) - apache-module_src_install -} - -pkg_postinst() { - elog "Tomcat is not a dependency of mod_jk any longer, if you intend" - elog "to use it with Tomcat, you have to merge www-servers/tomcat on" - elog "your own." - - elog "Advanced Directives and Options can be found at: " - elog "http://tomcat.apache.org/connectors-doc/reference/workers.html" - - elog "" - elog "JNI Worker Deprecation:" - elog "Workers of type jni are broken since a long time." - elog "Since there is no more use for them, they have been deprecated now," - elog "and will be removed in a future release." -} |