summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Olbrich <m.olbrich@pengutronix.de>2021-07-28 11:07:18 +0200
committerMichael Olbrich <m.olbrich@pengutronix.de>2021-07-28 14:47:52 +0200
commit30e976d3a8f11744178db64f1c178f42a867306a (patch)
tree01a72635741f4fbea5b69930bdb33f19406a6306
parente9c62e81d29f5730c19c892ab3bdc2a2fc3e8336 (diff)
downloadptxdist-30e976d3a8f11744178db64f1c178f42a867306a.tar.gz
ptxdist-30e976d3a8f11744178db64f1c178f42a867306a.tar.xz
tomcat: remove old package
It has been in staging for more than one year. Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
-rw-r--r--rules/tomcat.in13
-rw-r--r--rules/tomcat.make96
2 files changed, 0 insertions, 109 deletions
diff --git a/rules/tomcat.in b/rules/tomcat.in
deleted file mode 100644
index 73c0919de..000000000
--- a/rules/tomcat.in
+++ /dev/null
@@ -1,13 +0,0 @@
-## SECTION=staging
-## old section:
-### SECTION=networking
-
-config TOMCAT
- tristate
- prompt "tomcat"
- help
- Apache Tomcat is an open source software implementation of the Java
- Servlet and JavaServer Pages technologies.
-
- STAGING: remove in ptxdist-2021.07.0
- Really old version. Should be updated.
diff --git a/rules/tomcat.make b/rules/tomcat.make
deleted file mode 100644
index dc4a0277a..000000000
--- a/rules/tomcat.make
+++ /dev/null
@@ -1,96 +0,0 @@
-# -*-makefile-*-
-#
-# Copyright (C) 2009 by Michael Olbrich <m.olbrich@pengutronix.de>
-#
-# For further information about the PTXdist project and license conditions
-# see the README file.
-#
-
-#
-# We provide this package
-#
-PACKAGES-$(PTXCONF_TOMCAT) += tomcat
-
-#
-# Paths and names
-#
-TOMCAT_VERSION := 5.0.30
-TOMCAT_MD5 := e140483d062de8dd703cfd6ecac58c71
-TOMCAT := jakarta-tomcat-$(TOMCAT_VERSION)
-TOMCAT_SUFFIX := tar.gz
-TOMCAT_URL := http://archive.apache.org/dist/tomcat/tomcat-5/v5.0.30/bin/$(TOMCAT).$(TOMCAT_SUFFIX)
-TOMCAT_SOURCE := $(SRCDIR)/$(TOMCAT).$(TOMCAT_SUFFIX)
-TOMCAT_DIR := $(BUILDDIR)/$(TOMCAT)
-TOMCAT_LICENSE := Apache-2.0
-
-# ----------------------------------------------------------------------------
-# Prepare
-# ----------------------------------------------------------------------------
-
-TOMCAT_PREFIX := /usr/tomcat
-
-$(STATEDIR)/tomcat.prepare:
- @$(call targetinfo)
- @$(call touch)
-
-# ----------------------------------------------------------------------------
-# Compile
-# ----------------------------------------------------------------------------
-
-$(STATEDIR)/tomcat.compile:
- @$(call targetinfo)
- @$(call touch)
-
-# ----------------------------------------------------------------------------
-# Install
-# ----------------------------------------------------------------------------
-
-$(STATEDIR)/tomcat.install:
- @$(call targetinfo)
- @$(call touch)
-
-# ----------------------------------------------------------------------------
-# Target-Install
-# ----------------------------------------------------------------------------
-
-$(STATEDIR)/tomcat.targetinstall:
- @$(call targetinfo)
-
- @$(call install_init, tomcat)
- @$(call install_fixup, tomcat,PRIORITY,optional)
- @$(call install_fixup, tomcat,SECTION,base)
- @$(call install_fixup, tomcat,AUTHOR,"Michael Olbrich <m.olbrich@pengutronix.de>")
- @$(call install_fixup, tomcat,DESCRIPTION,missing)
-
- @$(call install_copy, tomcat, 0, 0, 0755, $(TOMCAT_PREFIX)/bin)
- @$(call install_copy, tomcat, 0, 0, 0755, $(TOMCAT_PREFIX)/conf)
- @$(call install_copy, tomcat, 0, 0, 0755, $(TOMCAT_PREFIX)/common/lib)
- @$(call install_copy, tomcat, 0, 0, 0755, $(TOMCAT_PREFIX)/server/lib)
- @$(call install_copy, tomcat, 0, 0, 0755, $(TOMCAT_PREFIX)/webapps)
- @$(call install_copy, tomcat, 0, 0, 0755, /tmp/tomcat/work)
- @$(call install_copy, tomcat, 0, 0, 0755, /tmp/tomcat/temp)
- @$(call install_copy, tomcat, 0, 0, 0755, /tmp/tomcat/logs)
- @$(call install_link, tomcat, ../../tmp/tomcat/work, $(TOMCAT_PREFIX)/work)
- @$(call install_link, tomcat, ../../tmp/tomcat/temp, $(TOMCAT_PREFIX)/temp)
- @$(call install_link, tomcat, ../../tmp/tomcat/logs, $(TOMCAT_PREFIX)/logs)
-
- @cd $(TOMCAT_DIR) && for file in bin/*.jar common/lib/*.jar \
- server/lib/*.jar; do \
- $(call install_copy, tomcat, 0, 0, 0644, \
- $(TOMCAT_DIR)/$$file, \
- $(TOMCAT_PREFIX)/$$file,n); \
- done
- @$(call install_copy, tomcat, 0, 0, 0644, \
- $(TOMCAT_DIR)/conf/web.xml, \
- $(TOMCAT_PREFIX)/conf/web.xml)
- @$(call install_copy, tomcat, 0, 0, 0644, \
- $(TOMCAT_DIR)/conf/server-minimal.xml, \
- $(TOMCAT_PREFIX)/conf/server.xml)
-
- @$(call install_alternative, tomcat, 0, 0, 0755, /etc/init.d/tomcat)
-
- @$(call install_finish, tomcat)
-
- @$(call touch)
-
-# vim: syntax=make