aboutsummaryrefslogtreecommitdiffstats
path: root/www/tomcat41
diff options
context:
space:
mode:
authorznerd <znerd@FreeBSD.org>2004-01-02 20:31:11 +0800
committerznerd <znerd@FreeBSD.org>2004-01-02 20:31:11 +0800
commit62e38f6d0114d77d43451ee0e28803d6307449f6 (patch)
treeda2372eb8ee184ace8541500aa5026f49662cc52 /www/tomcat41
parent91ccb6803edf796ea17588de27a0755b8ba10910 (diff)
downloadfreebsd-ports-gnome-62e38f6d0114d77d43451ee0e28803d6307449f6.tar.gz
freebsd-ports-gnome-62e38f6d0114d77d43451ee0e28803d6307449f6.tar.zst
freebsd-ports-gnome-62e38f6d0114d77d43451ee0e28803d6307449f6.zip
Fixed name of PID file in pkg-deinstall.
Bumped PORTREVISION. PR: 60781 Submitted by: Kang Liu <liukang@bjpu.edu.cn>
Diffstat (limited to 'www/tomcat41')
-rw-r--r--www/tomcat41/Makefile1
-rw-r--r--www/tomcat41/pkg-deinstall2
2 files changed, 2 insertions, 1 deletions
diff --git a/www/tomcat41/Makefile b/www/tomcat41/Makefile
index 1e722b0acf71..4428dc36944d 100644
--- a/www/tomcat41/Makefile
+++ b/www/tomcat41/Makefile
@@ -7,6 +7,7 @@
PORTNAME= jakarta-tomcat
PORTVERSION= 4.1.29
+PORTREVISION= 1
CATEGORIES= www java
MASTER_SITES= http://www.apache.org/dist/jakarta/tomcat-4/v${PORTVERSION}/bin/ \
${MASTER_SITE_LOCAL}
diff --git a/www/tomcat41/pkg-deinstall b/www/tomcat41/pkg-deinstall
index d1b05d4e055b..39c0a6381a8b 100644
--- a/www/tomcat41/pkg-deinstall
+++ b/www/tomcat41/pkg-deinstall
@@ -15,7 +15,7 @@
if [ "$2" = "DEINSTALL" ]; then
# Kill the process if it is still running
- PID_FILE=/var/run/tomcat4.pid
+ PID_FILE=/var/run/tomcat41.pid
if [ -s ${PID_FILE} ]; then
PID=`cat ${PID_FILE}`
echo -n ">> Killing Jakarta Tomcat process (${PID})..."