Browse Source

fake:


			
			
				rocklinux
			
			
		
fake 19 years ago
parent
commit
e29d4d375f
3 changed files with 77 additions and 0 deletions
  1. +6
    -0
      package/java/tomcat/pkgmapper.in
  2. +27
    -0
      package/java/tomcat/tomcat.conf
  3. +44
    -0
      package/java/tomcat/tomcat.desc

+ 6
- 0
package/java/tomcat/pkgmapper.in

@ -0,0 +1,6 @@
case "$pkg" in
tomcat-*)
pkg=tomcat ;;
esac

+ 27
- 0
package/java/tomcat/tomcat.conf

@ -0,0 +1,27 @@
[ "$prefix_auto" = 1 ] && prefix=opt/$xpkg
set_confopt
autoextract=0
tomcat_main() {
cd $root/opt
mkdir -p $xpkg
cd $xpkg
for file in $archdir/*.tar.bz2 ; do
echo "extracting $file"
tar -xjvf $file
done
# don't even copy over the webapps dir
for i in apache-tomcat-$ver/* ; do
[ ! "$i" = "apache-tomcat-$ver/webapps" ] && \
cp -vr $i .
done
rm -rf apache-tomcat-$ver
mkdir webapps
}
custmain=tomcat_main

+ 44
- 0
package/java/tomcat/tomcat.desc

@ -0,0 +1,44 @@
[COPY] --- ROCK-COPYRIGHT-NOTE-BEGIN ---
[COPY]
[COPY] This copyright note is auto-generated by ./scripts/Create-CopyPatch.
[COPY] Please add additional copyright information _after_ the line containing
[COPY] the ROCK-COPYRIGHT-NOTE-END tag. Otherwise it might get removed by
[COPY] the ./scripts/Create-CopyPatch script. Do not edit this copyright text!
[COPY]
[COPY] ROCK Linux: rock-src/package/java/tomcat/tomcat.desc
[COPY] ROCK Linux is Copyright (C) 1998 - 2005 Clifford Wolf
[COPY]
[COPY] This program is free software; you can redistribute it and/or modify
[COPY] it under the terms of the GNU General Public License as published by
[COPY] the Free Software Foundation; either version 2 of the License, or
[COPY] (at your option) any later version. A copy of the GNU General Public
[COPY] License can be found at Documentation/COPYING.
[COPY]
[COPY] Many people helped and are helping developing ROCK Linux. Please
[COPY] have a look at http://www.rocklinux.org/ and the Documentation/TEAM
[COPY] file for details.
[COPY]
[COPY] --- ROCK-COPYRIGHT-NOTE-END ---
[I] A Servlet Container
[T] Tomcat is the servlet container that is used in the official Reference
[T] Implementation for the Java Servlet and JavaServer Pages technologies.
[U] http://tomcat.apache.org/
[A] The Apache Software Foundation
[M] fake <fake@hpc.at>
[C] extra/server
[L] OpenSource
[S] Stable
[V] 5.5.16
[P] X -----5---9 800.000
[D] 617863761 apache-tomcat-5.5.16.tar.gz http://apache.4any.org/tomcat/tomcat-5/v5.5.16/bin/
# include this if planning to use a non-1.5-jdk/jre
# [D] 2787286597 apache-tomcat-5.5.16-compat.tar.gz http://apache.4any.org/jakarta/tomcat-5/v5.5.16/bin/

Loading…
Cancel
Save