2008-04-07 22:37:26 +00:00
|
|
|
# Copyright (c) 2000-2008, JPackage Project
|
|
|
|
# All rights reserved.
|
|
|
|
#
|
|
|
|
# Redistribution and use in source and binary forms, with or without
|
|
|
|
# modification, are permitted provided that the following conditions
|
|
|
|
# are met:
|
|
|
|
#
|
|
|
|
# 1. Redistributions of source code must retain the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer.
|
|
|
|
# 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer in the
|
|
|
|
# documentation and/or other materials provided with the
|
|
|
|
# distribution.
|
|
|
|
# 3. Neither the name of the JPackage Project nor the names of its
|
|
|
|
# contributors may be used to endorse or promote products derived
|
|
|
|
# from this software without specific prior written permission.
|
|
|
|
#
|
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
#
|
|
|
|
|
|
|
|
%define section free
|
|
|
|
|
|
|
|
%define jspspec 2.1
|
|
|
|
%define macro_version 16
|
|
|
|
%define major_version 6
|
|
|
|
%define minor_version 0
|
|
|
|
%define packdname apache-tomcat-%{version}-src
|
|
|
|
%define servletspec 2.5
|
|
|
|
%define tcuid 91
|
|
|
|
|
|
|
|
# FHS 2.3 compliant tree structure - http://www.pathname.com/fhs/2.3/
|
|
|
|
%define appdir %{_var}/lib/%{name}/webapps
|
|
|
|
%define bindir %{_datadir}/%{name}/bin
|
|
|
|
%define confdir %{_sysconfdir}/%{name}
|
|
|
|
%define homedir %{_datadir}/%{name}
|
|
|
|
%define libdir %{_javadir}/%{name}
|
|
|
|
%define logdir %{_var}/log/%{name}
|
|
|
|
%define tempdir %{_var}/tmp/%{name}
|
|
|
|
%define workdir %{_var}/cache/%{name}
|
|
|
|
|
|
|
|
Name: tomcat6
|
|
|
|
Epoch: 0
|
|
|
|
Version: %{major_version}.%{minor_version}.%{macro_version}
|
2008-07-10 19:42:58 +00:00
|
|
|
Release: 1.8%{?dist}
|
2008-04-07 22:37:26 +00:00
|
|
|
Summary: Apache Servlet/JSP Engine, RI for Servlet %{servletspec}/JSP %{jspspec} API
|
|
|
|
|
|
|
|
Group: Networking/Daemons
|
|
|
|
License: ASL 2.0
|
|
|
|
URL: http://tomcat.apache.org/
|
|
|
|
Source0: http://www.apache.org/dist/tomcat/tomcat-6/v%{version}/src/%{packdname}.tar.gz
|
|
|
|
Source1: %{name}-%{major_version}.%{minor_version}.conf
|
|
|
|
Source2: %{name}-%{major_version}.%{minor_version}.init
|
|
|
|
Source3: %{name}-%{major_version}.%{minor_version}.sysconfig
|
|
|
|
Source4: %{name}-%{major_version}.%{minor_version}.wrapper
|
|
|
|
Source5: %{name}-%{major_version}.%{minor_version}.logrotate
|
|
|
|
Source6: %{name}-%{major_version}.%{minor_version}-digest.script
|
|
|
|
Source7: %{name}-%{major_version}.%{minor_version}-tool-wrapper.script
|
|
|
|
Patch0: %{name}-%{major_version}.%{minor_version}-bootstrap-MANIFEST.MF.patch
|
|
|
|
Patch1: %{name}-%{major_version}.%{minor_version}-tomcat-users-webapp.patch
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
|
|
|
|
BuildArch: noarch
|
|
|
|
|
|
|
|
BuildRequires: ant
|
|
|
|
BuildRequires: ant-trax
|
|
|
|
BuildRequires: eclipse-ecj >= 0:3.2.2
|
|
|
|
BuildRequires: findutils
|
|
|
|
BuildRequires: jakarta-commons-collections
|
|
|
|
BuildRequires: jakarta-commons-daemon
|
|
|
|
BuildRequires: java-devel >= 0:1.6.0
|
|
|
|
BuildRequires: jpackage-utils >= 0:1.7.0
|
|
|
|
BuildRequires: junit
|
|
|
|
Requires(pre): shadow-utils
|
|
|
|
Requires(pre): shadow-utils
|
|
|
|
Requires: jakarta-commons-daemon
|
|
|
|
Requires: jakarta-commons-logging
|
|
|
|
Requires: java >= 0:1.6.0
|
|
|
|
Requires: procps
|
|
|
|
Requires: %{name}-lib = %{epoch}:%{version}-%{release}
|
2008-07-10 19:42:58 +00:00
|
|
|
Requires(post): chkconfig
|
|
|
|
Requires(preun): chkconfig
|
|
|
|
# for /sbin/service
|
|
|
|
Requires(preun): initscripts
|
2008-04-07 22:37:26 +00:00
|
|
|
|
|
|
|
%description
|
|
|
|
Tomcat is the servlet container that is used in the official Reference
|
|
|
|
Implementation for the Java Servlet and JavaServer Pages technologies.
|
|
|
|
The Java Servlet and JavaServer Pages specifications are developed by
|
|
|
|
Sun under the Java Community Process.
|
|
|
|
|
|
|
|
Tomcat is developed in an open and participatory environment and
|
|
|
|
released under the Apache Software License version 2.0. Tomcat is intended
|
|
|
|
to be a collaboration of the best-of-breed developers from around the world.
|
|
|
|
|
|
|
|
%package admin-webapps
|
|
|
|
Group: System Environment/Applications
|
|
|
|
Summary: The host-manager and manager web applications for Apache Tomcat
|
|
|
|
Requires: %{name} = %{epoch}:%{version}-%{release}
|
|
|
|
|
|
|
|
%description admin-webapps
|
|
|
|
The host-manager and manager web applications for Apache Tomcat
|
|
|
|
|
|
|
|
%package docs-webapp
|
|
|
|
Group: System Environment/Applications
|
|
|
|
Summary: The docs web application for Apache Tomcat
|
|
|
|
Requires: %{name} = %{epoch}:%{version}-%{release}
|
|
|
|
|
|
|
|
%description docs-webapp
|
|
|
|
The docs web application for Apache Tomcat
|
|
|
|
|
|
|
|
%package javadoc
|
|
|
|
Group: Documentation
|
|
|
|
Summary: Javadoc generated documentation for Apache Tomcat
|
|
|
|
|
|
|
|
%description javadoc
|
|
|
|
Javadoc generated documentation for Apache Tomcat
|
|
|
|
|
|
|
|
%package jsp-%{jspspec}-api
|
|
|
|
Group: Internet/WWW/Dynamic Content
|
|
|
|
Summary: Apache Tomcat JSP API implementation classes
|
|
|
|
Provides: jsp = %{jspspec}
|
|
|
|
Provides: jsp21
|
|
|
|
Requires: %{name}-servlet-%{servletspec}-api = %{epoch}:%{version}-%{release}
|
|
|
|
Requires(post): chkconfig
|
|
|
|
Requires(postun): chkconfig
|
|
|
|
|
|
|
|
%description jsp-%{jspspec}-api
|
|
|
|
Apache Tomcat JSP API implementation classes
|
|
|
|
|
|
|
|
%package lib
|
|
|
|
Group: Development/Compilers
|
|
|
|
Summary: Libraries needed to run the Tomcat Web container
|
|
|
|
Requires: %{name}-jsp-%{jspspec}-api = %{epoch}:%{version}-%{release}
|
|
|
|
Requires: %{name}-servlet-%{servletspec}-api = %{epoch}:%{version}-%{release}
|
|
|
|
Requires(post): eclipse-ecj >= 0:3.2.2
|
|
|
|
Requires(post): jakarta-commons-collections-tomcat5
|
|
|
|
Requires(post): jakarta-commons-dbcp-tomcat5
|
|
|
|
Requires(post): jakarta-commons-pool-tomcat5
|
|
|
|
Requires(preun): coreutils
|
|
|
|
|
|
|
|
%description lib
|
|
|
|
Libraries needed to run the Tomcat Web container
|
|
|
|
|
|
|
|
%package servlet-%{servletspec}-api
|
|
|
|
Group: Internet/WWW/Dynamic Content
|
|
|
|
Summary: Apache Tomcat Servlet API implementation classes
|
|
|
|
Provides: servlet = %{servletspec}
|
|
|
|
Provides: servlet6
|
|
|
|
Provides: servlet25
|
|
|
|
Requires(post): chkconfig
|
|
|
|
Requires(postun): chkconfig
|
|
|
|
|
|
|
|
%description servlet-%{servletspec}-api
|
|
|
|
Apache Tomcat Servlet API implementation classes
|
|
|
|
|
|
|
|
%package webapps
|
|
|
|
Group: System Environment/Applications
|
|
|
|
Summary: The ROOT and examples web applications for Apache Tomcat
|
|
|
|
Requires: %{name} = %{epoch}:%{version}-%{release}
|
|
|
|
Requires(post): jakarta-taglibs-standard >= 0:1.1
|
|
|
|
|
|
|
|
%description webapps
|
|
|
|
The ROOT and examples web applications for Apache Tomcat
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q -c -T -a 0
|
|
|
|
# remove pre-built binaries and windows files
|
|
|
|
find . \( -name "*.bat" -o -name "*.class" -o -name Thumbs.db -o -name "*.gz" -o \
|
|
|
|
-name "*.jar" -o -name "*.war" -o -name "*.zip" \) | xargs -t %{__rm} -f
|
|
|
|
%patch0 -p0
|
|
|
|
%patch1 -p0
|
|
|
|
|
|
|
|
%build
|
|
|
|
export CLASSPATH=
|
|
|
|
export OPT_JAR_LIST="ant/ant-trax"
|
|
|
|
pushd %{packdname}
|
|
|
|
# we don't care about the tarballs and we're going to replace
|
|
|
|
# tomcat-dbcp.jar with jakarta-commons-{collections,dbcp,pool}-tomcat5.jar
|
|
|
|
# so just create a dummy file for later removal
|
|
|
|
touch HACK
|
|
|
|
# who needs a build.properties file anyway
|
|
|
|
%{ant} -Dbase.path="." \
|
|
|
|
-Dbuild.compiler="modern" \
|
|
|
|
-Dcommons-collections.jar="$(build-classpath commons-collections)" \
|
|
|
|
-Dcommons-daemon.jar="$(build-classpath commons-daemon)" \
|
|
|
|
-Dcommons-daemon.jsvc.tar.gz="HACK" \
|
|
|
|
-Djasper-jdt.jar="$(build-classpath eclipse-ecj)" \
|
|
|
|
-Djdt.jar="$(build-classpath eclipse-ecj)" \
|
|
|
|
-Dtomcat-dbcp.jar="HACK" \
|
|
|
|
-Dtomcat-native.tar.gz="HACK" \
|
|
|
|
-Dversion="%{version}" \
|
|
|
|
-Dversion.build="%{macro_version}"
|
|
|
|
# javadoc generation
|
|
|
|
%{ant} -f dist.xml dist-prepare
|
|
|
|
%{ant} -f dist.xml dist-source
|
|
|
|
%{ant} -f dist.xml dist-javadoc
|
|
|
|
# remove some jars that we'll replace with symlinks later
|
|
|
|
%{__rm} output/build/bin/commons-daemon.jar \
|
|
|
|
output/build/lib/eclipse-ecj.jar
|
|
|
|
# remove the cruft we created
|
|
|
|
%{__rm} output/build/bin/HACK \
|
|
|
|
output/build/bin/tomcat-native.tar.gz \
|
|
|
|
output/build/lib/HACK
|
|
|
|
popd
|
|
|
|
pushd %{packdname}/output/dist/src/webapps/docs/appdev/sample/src
|
|
|
|
%{__mkdir_p} ../web/WEB-INF/classes
|
|
|
|
%{javac} -cp ../../../../../../../../output/build/lib/servlet-api.jar -d ../web/WEB-INF/classes mypackage/Hello.java
|
|
|
|
pushd ../web
|
|
|
|
%{jar} cf ../../../../../../../../output/build/webapps/docs/appdev/sample/sample.war *
|
|
|
|
popd
|
|
|
|
popd
|
|
|
|
|
|
|
|
%install
|
|
|
|
%{__rm} -rf $RPM_BUILD_ROOT
|
|
|
|
# build initial path structure
|
|
|
|
%{__install} -d -m 0755 ${RPM_BUILD_ROOT}%{_bindir}
|
|
|
|
%{__install} -d -m 0755 ${RPM_BUILD_ROOT}%{_sbindir}
|
|
|
|
%{__install} -d -m 0755 ${RPM_BUILD_ROOT}%{_javadocdir}/%{name}
|
|
|
|
%{__install} -d -m 0755 ${RPM_BUILD_ROOT}%{_initrddir}
|
|
|
|
%{__install} -d -m 0755 ${RPM_BUILD_ROOT}%{_sysconfdir}/logrotate.d
|
|
|
|
%{__install} -d -m 0755 ${RPM_BUILD_ROOT}%{_sysconfdir}/sysconfig
|
|
|
|
%{__install} -d -m 0755 ${RPM_BUILD_ROOT}%{appdir}
|
|
|
|
%{__install} -d -m 0755 ${RPM_BUILD_ROOT}%{bindir}
|
|
|
|
%{__install} -d -m 0755 ${RPM_BUILD_ROOT}%{confdir}
|
|
|
|
%{__install} -d -m 0755 ${RPM_BUILD_ROOT}%{confdir}/Catalina/localhost
|
|
|
|
%{__install} -d -m 0755 ${RPM_BUILD_ROOT}%{libdir}
|
|
|
|
%{__install} -d -m 0755 ${RPM_BUILD_ROOT}%{logdir}
|
|
|
|
%{__install} -d -m 0755 ${RPM_BUILD_ROOT}%{homedir}
|
|
|
|
%{__install} -d -m 0755 ${RPM_BUILD_ROOT}%{tempdir}
|
|
|
|
%{__install} -d -m 0755 ${RPM_BUILD_ROOT}%{workdir}
|
|
|
|
# move things into place
|
|
|
|
pushd %{packdname}/output/build
|
|
|
|
%{__cp} -a bin/*.{jar,xml} ${RPM_BUILD_ROOT}%{bindir}
|
|
|
|
%{__cp} -a conf/*.{policy,properties,xml} ${RPM_BUILD_ROOT}%{confdir}
|
|
|
|
%{__cp} -a lib/*.jar ${RPM_BUILD_ROOT}%{libdir}
|
|
|
|
%{__cp} -a webapps/* ${RPM_BUILD_ROOT}%{appdir}
|
|
|
|
popd
|
|
|
|
# remove admin webapp directory since it is not shipped and not available
|
|
|
|
%{__rm} -r ${RPM_BUILD_ROOT}%{appdir}/ROOT/admin
|
|
|
|
# javadoc
|
|
|
|
pushd %{packdname}/output/dist/webapps
|
|
|
|
%{__cp} -a docs/api/* ${RPM_BUILD_ROOT}%{_javadocdir}/%{name}
|
|
|
|
popd
|
|
|
|
%{__sed} -e "s|\@\@\@TCHOME\@\@\@|%{homedir}|g" \
|
|
|
|
-e "s|\@\@\@TCTEMP\@\@\@|%{tempdir}|g" \
|
|
|
|
-e "s|\@\@\@LIBDIR\@\@\@|%{_libdir}|g" %{SOURCE1} \
|
|
|
|
> ${RPM_BUILD_ROOT}%{confdir}/%{name}.conf
|
|
|
|
%{__sed} -e "s|\@\@\@TCHOME\@\@\@|%{homedir}|g" \
|
|
|
|
-e "s|\@\@\@TCTEMP\@\@\@|%{tempdir}|g" \
|
|
|
|
-e "s|\@\@\@LIBDIR\@\@\@|%{_libdir}|g" %{SOURCE3} \
|
|
|
|
> ${RPM_BUILD_ROOT}%{_sysconfdir}/sysconfig/%{name}
|
|
|
|
%{__install} -m 0644 %{SOURCE2} \
|
|
|
|
${RPM_BUILD_ROOT}%{_initrddir}/%{name}
|
|
|
|
%{__install} -m 0644 %{SOURCE4} \
|
|
|
|
${RPM_BUILD_ROOT}%{_sbindir}/%{name}
|
|
|
|
%{__ln_s} %{name} ${RPM_BUILD_ROOT}%{_sbindir}/d%{name}
|
|
|
|
%{__sed} -e "s|\@\@\@TCLOG\@\@\@|%{logdir}|g" %{SOURCE5} \
|
|
|
|
> ${RPM_BUILD_ROOT}%{_sysconfdir}/logrotate.d/%{name}
|
|
|
|
%{__sed} -e "s|\@\@\@TCHOME\@\@\@|%{homedir}|g" \
|
|
|
|
-e "s|\@\@\@TCTEMP\@\@\@|%{tempdir}|g" \
|
|
|
|
-e "s|\@\@\@LIBDIR\@\@\@|%{_libdir}|g" %{SOURCE6} \
|
|
|
|
> ${RPM_BUILD_ROOT}%{_bindir}/%{name}-digest
|
|
|
|
%{__sed} -e "s|\@\@\@TCHOME\@\@\@|%{homedir}|g" \
|
|
|
|
-e "s|\@\@\@TCTEMP\@\@\@|%{tempdir}|g" \
|
|
|
|
-e "s|\@\@\@LIBDIR\@\@\@|%{_libdir}|g" %{SOURCE7} \
|
|
|
|
> ${RPM_BUILD_ROOT}%{_bindir}/%{name}-tool-wrapper
|
|
|
|
# create jsp and servlet API symlinks
|
|
|
|
pushd ${RPM_BUILD_ROOT}%{_javadir}
|
|
|
|
%{__mv} %{name}/jsp-api.jar %{name}-jsp-%{jspspec}-api-%{version}.jar
|
|
|
|
%{__mv} %{name}/servlet-api.jar \
|
|
|
|
%{name}-servlet-%{servletspec}-api-%{version}.jar
|
|
|
|
%{__ln_s} %{name}-jsp-%{jspspec}-api-%{version}.jar \
|
|
|
|
%{name}-jsp-%{jspspec}-api.jar
|
|
|
|
%{__ln_s} %{name}-servlet-%{servletspec}-api-%{version}.jar \
|
|
|
|
%{name}-servlet-%{servletspec}-api.jar
|
|
|
|
popd
|
|
|
|
pushd ${RPM_BUILD_ROOT}%{libdir}
|
|
|
|
# fix up jars to include version number
|
|
|
|
for i in *.jar; do
|
|
|
|
j="$(echo $i | %{__sed} -e 's,\.jar$,,')"
|
|
|
|
%{__mv} ${j}.jar ${j}-%{version}.jar
|
|
|
|
%{__ln_s} ${j}-%{version}.jar ${j}.jar
|
|
|
|
done
|
|
|
|
# symlink JSP and servlet API jars
|
|
|
|
%{__ln_s} ../%{name}-jsp-%{jspspec}-api-%{version}.jar .
|
|
|
|
%{__ln_s} ../%{name}-servlet-%{servletspec}-api-%{version}.jar .
|
|
|
|
popd
|
|
|
|
pushd ${RPM_BUILD_ROOT}%{bindir}
|
|
|
|
# fix up jars to include version number
|
|
|
|
for i in *.jar; do
|
|
|
|
j="$(echo $i | %{__sed} -e 's,\.jar$,,')"
|
|
|
|
%{__mv} ${j}.jar ${j}-%{version}.jar
|
|
|
|
%{__ln_s} ${j}-%{version}.jar ${j}.jar
|
|
|
|
done
|
|
|
|
popd
|
|
|
|
# symlink to the FHS locations where we've installed things
|
|
|
|
pushd ${RPM_BUILD_ROOT}%{homedir}
|
|
|
|
%{__ln_s} %{appdir} webapps
|
|
|
|
%{__ln_s} %{confdir} conf
|
|
|
|
%{__ln_s} %{libdir} lib
|
|
|
|
%{__ln_s} %{logdir} logs
|
|
|
|
%{__ln_s} %{tempdir} temp
|
|
|
|
%{__ln_s} %{workdir} work
|
|
|
|
popd
|
|
|
|
|
|
|
|
# install sample webapp
|
|
|
|
%{__mkdir_p} ${RPM_BUILD_ROOT}%{appdir}/sample
|
|
|
|
pushd ${RPM_BUILD_ROOT}%{appdir}/sample
|
|
|
|
%{jar} xf ${RPM_BUILD_ROOT}%{appdir}/docs/appdev/sample/sample.war
|
|
|
|
popd
|
|
|
|
%{__rm} ${RPM_BUILD_ROOT}%{appdir}/docs/appdev/sample/sample.war
|
|
|
|
|
|
|
|
%clean
|
|
|
|
%{__rm} -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
|
|
%pre
|
|
|
|
# add the tomcat user and group
|
|
|
|
%{_sbindir}/groupadd -g %{tcuid} -r tomcat 2>/dev/null || :
|
|
|
|
%{_sbindir}/useradd -c "Apache Tomcat" -u %{tcuid} -g tomcat \
|
|
|
|
-s /bin/sh -r -d %{homedir} tomcat 2>/dev/null || :
|
|
|
|
|
|
|
|
%post
|
|
|
|
# install but don't activate
|
|
|
|
/sbin/chkconfig --add %{name}
|
|
|
|
|
|
|
|
%post jsp-%{jspspec}-api
|
|
|
|
%{_sbindir}/update-alternatives --install %{_javadir}/jsp.jar jsp \
|
|
|
|
%{_javadir}/%{name}-jsp-%{jspspec}-api.jar 20100
|
|
|
|
|
|
|
|
%post lib
|
|
|
|
%{_bindir}/build-jar-repository %{libdir} commons-collections-tomcat5 \
|
|
|
|
commons-dbcp-tomcat5 commons-pool-tomcat5 eclipse-ecj 2>&1
|
|
|
|
|
|
|
|
%post servlet-%{servletspec}-api
|
|
|
|
%{_sbindir}/update-alternatives --install %{_javadir}/servlet.jar servlet \
|
|
|
|
%{_javadir}/%{name}-servlet-%{servletspec}-api.jar 20500
|
|
|
|
|
|
|
|
%post webapps
|
|
|
|
%{_bindir}/build-jar-repository %{appdir}/examples/WEB-INF/lib \
|
|
|
|
taglibs-core.jar taglibs-standard.jar 2>&1
|
|
|
|
|
|
|
|
%preun
|
|
|
|
# clean tempdir and workdir on removal or upgrade
|
|
|
|
%{__rm} -rf %{workdir}/* %{tempdir}/*
|
|
|
|
if [ "$1" = "0" ]; then
|
|
|
|
/sbin/service %{name} stop >/dev/null 2>&1
|
|
|
|
/sbin/chkconfig --del %{name}
|
|
|
|
fi
|
|
|
|
|
|
|
|
%preun lib
|
|
|
|
if [ "$1" = "0" ]; then
|
|
|
|
%{__rm} -f %{libdir}/\[commons-collections-tomcat5\].jar \
|
|
|
|
%{libdir}/\[commons-dbcp-tomcat5\].jar \
|
|
|
|
%{libdir}/\[commons-pool-tomcat5\].jar \
|
|
|
|
%{libdir}/\[eclipse-ecj\].jar >/dev/null 2>&1
|
|
|
|
fi
|
|
|
|
|
|
|
|
%postun jsp-%{jspspec}-api
|
|
|
|
if [ "$1" = "0" ]; then
|
|
|
|
%{_sbindir}/update-alternatives --remove jsp \
|
|
|
|
%{_javadir}/%{name}-jsp-%{jspspec}-api.jar
|
|
|
|
fi
|
|
|
|
|
|
|
|
%postun servlet-%{servletspec}-api
|
|
|
|
if [ "$1" = "0" ]; then
|
|
|
|
%{_sbindir}/update-alternatives --remove servlet \
|
|
|
|
%{_javadir}/%{name}-servlet-%{servletspec}-api.jar
|
|
|
|
fi
|
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(0644,root,root,0755)
|
|
|
|
%doc %{packdname}/{LICENSE,NOTICE,RELEASE*}
|
|
|
|
%attr(0755,root,root) %{_bindir}/%{name}-digest
|
|
|
|
%attr(0755,root,root) %{_bindir}/%{name}-tool-wrapper
|
|
|
|
%attr(0755,root,root) %{_sbindir}/d%{name}
|
|
|
|
%attr(0755,root,root) %{_sbindir}/%{name}
|
|
|
|
%attr(0775,root,tomcat) %dir %{logdir}
|
|
|
|
%attr(0755,root,root) %{_initrddir}/%{name}
|
|
|
|
%attr(0644,root,root) %config(noreplace) %{_sysconfdir}/logrotate.d/%{name}
|
|
|
|
%config(noreplace) %{_sysconfdir}/sysconfig/%{name}
|
|
|
|
%attr(0775,root,tomcat) %dir %{appdir}
|
|
|
|
%dir %{confdir}
|
|
|
|
%dir %{confdir}/Catalina
|
|
|
|
%attr(0775,root,tomcat) %dir %{confdir}/Catalina/localhost
|
|
|
|
%config(noreplace) %{confdir}/%{name}.conf
|
|
|
|
%config(noreplace) %{confdir}/*.policy
|
|
|
|
%config(noreplace) %{confdir}/*.properties
|
|
|
|
%config(noreplace) %{confdir}/context.xml
|
|
|
|
%config(noreplace) %{confdir}/server.xml
|
|
|
|
%attr(0660,root,tomcat) %config(noreplace) %{confdir}/tomcat-users.xml
|
|
|
|
%config(noreplace) %{confdir}/web.xml
|
|
|
|
%attr(0775,root,tomcat) %dir %{tempdir}
|
|
|
|
%attr(0775,root,tomcat) %dir %{workdir}
|
|
|
|
%{homedir}
|
|
|
|
|
|
|
|
%files admin-webapps
|
|
|
|
%defattr(0644,root,root,0755)
|
|
|
|
%{appdir}/host-manager
|
|
|
|
%{appdir}/manager
|
|
|
|
|
|
|
|
%files docs-webapp
|
|
|
|
%defattr(0644,root,root,0755)
|
|
|
|
%{appdir}/docs
|
|
|
|
|
|
|
|
%files javadoc
|
|
|
|
%defattr(0644,root,root,0755)
|
|
|
|
%{_javadocdir}/%{name}
|
|
|
|
|
|
|
|
%files jsp-%{jspspec}-api
|
|
|
|
%defattr(0644,root,root,0755)
|
|
|
|
%{_javadir}/%{name}-jsp*.jar
|
|
|
|
|
|
|
|
%files lib
|
|
|
|
%defattr(0644,root,root,0755)
|
|
|
|
%{libdir}
|
|
|
|
|
|
|
|
%files servlet-%{servletspec}-api
|
|
|
|
%defattr(0644,root,root,0755)
|
|
|
|
%{_javadir}/%{name}-servlet*.jar
|
|
|
|
|
|
|
|
%files webapps
|
|
|
|
%defattr(0644,root,root,0755)
|
|
|
|
%{appdir}/ROOT
|
|
|
|
%{appdir}/examples
|
|
|
|
%{appdir}/sample
|
|
|
|
|
|
|
|
%changelog
|
2008-07-10 19:42:58 +00:00
|
|
|
* Thu Jul 10 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 0:6.0.16-1.8
|
|
|
|
- drop repotag
|
|
|
|
|
2008-04-07 22:37:26 +00:00
|
|
|
* Fri Apr 04 2008 David Walluck <dwalluck@redhat.com> 0:6.0.16-1jpp.7.fc9
|
|
|
|
- version jsp and servlet Provides with their spec versions
|
|
|
|
- remove Obsoletes/Provides for servletapi6 package as it can co-exist
|
|
|
|
- check for java-functions existence in wrapper script
|
|
|
|
- move d%%{name} to %%{name} and create symlink for d%%{name}
|
|
|
|
- improve status function in initscript
|
|
|
|
- change license to ASL 2.0 again as per Fedora guidelines
|
|
|
|
|
|
|
|
* Mon Mar 24 2008 David Walluck <dwalluck@redhat.com> 0:6.0.16-1jpp.6.fc9
|
|
|
|
- remove Requires: tomcat-native
|
|
|
|
- put back original JPackage Group (except javadoc) and License tags
|
|
|
|
- add Provides for jsp and servlet
|
|
|
|
- use ant macro
|
|
|
|
- build and install sample webapp
|
|
|
|
- call /sbin/service to stop service on uninstall
|
|
|
|
- remove references to $RPM_BUILD_DIR
|
|
|
|
- use copy instead of move to fix short-circuit install build
|
|
|
|
- remove prebuilt sample.war
|
|
|
|
- remove Thumbs.db files
|
|
|
|
- add Requires: java >= 0:1.6.0
|
|
|
|
|
|
|
|
* Wed Mar 19 2008 David Walluck <dwalluck@redhat.com> 0:6.0.16-1jpp.5.fc9
|
|
|
|
- explicitly unset CLASSPATH
|
|
|
|
- explicitly set OPT_JAR_LIST to include ant/ant-trax
|
|
|
|
|
|
|
|
* Tue Mar 18 2008 David Walluck <dwalluck@redhat.com> 0:6.0.16-1jpp.4.fc9
|
|
|
|
- remove BuildRequires: sed
|
|
|
|
- remove specific references to icedtea
|
|
|
|
|
|
|
|
* Mon Mar 17 2008 David Walluck <dwalluck@redhat.com> 0:6.0.16-1jpp.3.fc9
|
|
|
|
- add digest and tool-wrapper scripts
|
|
|
|
- Requires: tomcat-native
|
|
|
|
|
|
|
|
* Fri Mar 7 2008 David Walluck <dwalluck@redhat.com> 0:6.0.16-1jpp.2.fc9
|
|
|
|
- use %%{_var} for appdir instead of /srv
|
|
|
|
- use ${JAVACMD} for java executable in wrapper script
|
|
|
|
- use built-in status function in initscript where possible
|
|
|
|
- add missing require on procps for status function
|
|
|
|
- fix java.library.path setting in %%{_sysconfdir}/sysconfig/%%{name}
|
|
|
|
- add patch to document webapps in %%{_sysconfdir}/%%{name}/tomcat-users.xml
|
|
|
|
- remove %%{appdir}/ROOT/admin
|
|
|
|
- move %%{_bindir}/d%%{name} to %%{_sbindir}/d%%{name}
|
|
|
|
|
|
|
|
* Mon Mar 3 2008 David Walluck <dwalluck@redhat.com> 0:6.0.16-1jpp.1.fc9
|
|
|
|
- use %%{_initrddir} macro instead of %%{_sysconfdir}/init.d (rhbz #153187)
|
|
|
|
- fix java.library.path setting in %%{name}.conf (rhbz #253605)
|
|
|
|
- fix incorrect initscript output (rhbz #380921)
|
|
|
|
- update initscript (rhbz #247077)
|
|
|
|
- add logrotate support
|
|
|
|
- fix strange-permission
|
|
|
|
- fix %%prep
|
|
|
|
- replace /var with %%{_var}
|
|
|
|
- replace %%{_localstatedir} with %%{_var}
|
|
|
|
- use %%{logdir} where possible
|
|
|
|
- call build-jar-repository with full path in scriptlets
|
|
|
|
- remove file-based requires
|
|
|
|
- build with icedtea and set as the default JAVA_HOME in %%{name}.conf
|
|
|
|
- fix non-standard-group
|
|
|
|
- change ecj references to eclipse-ecj
|
|
|
|
- change Apache Software License 2.0 to ASL 2.0 for rpmlint
|
|
|
|
|
|
|
|
* Fri Feb 8 2008 Jason Corley <jason.corley@gmail.com> - 0:6.0.16-1jpp
|
|
|
|
- update to 6.0.16
|
|
|
|
|
|
|
|
* Sun Dec 2 2007 Jason Corley <jason.corley@gmail.com> - 0:6.0.14-2jpp
|
|
|
|
- add /etc/tomcat6/Catalina/localhost (Alexander Kurtakov)
|
|
|
|
|
|
|
|
* Tue Aug 14 2007 Jason Corley <jason.corley@gmail.com> 0:6.0.14-1jpp
|
|
|
|
- first JPackage release
|