summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'www-servers/resin/files/3.0.12')
-rw-r--r--www-servers/resin/files/3.0.12/21resin1
-rw-r--r--www-servers/resin/files/3.0.12/gentoo.diff25
-rw-r--r--www-servers/resin/files/3.0.12/resin.conf36
-rw-r--r--www-servers/resin/files/3.0.12/resin.init23
-rw-r--r--www-servers/resin/files/3.0.12/wrapper.pl.diff21
5 files changed, 0 insertions, 106 deletions
diff --git a/www-servers/resin/files/3.0.12/21resin b/www-servers/resin/files/3.0.12/21resin
deleted file mode 100644
index 8ebed2d0a4f8..000000000000
--- a/www-servers/resin/files/3.0.12/21resin
+++ /dev/null
@@ -1 +0,0 @@
-RESIN_HOME=/opt/resin
diff --git a/www-servers/resin/files/3.0.12/gentoo.diff b/www-servers/resin/files/3.0.12/gentoo.diff
deleted file mode 100644
index 1e258a2b0524..000000000000
--- a/www-servers/resin/files/3.0.12/gentoo.diff
+++ /dev/null
@@ -1,25 +0,0 @@
---- ../resin-3.0.12/configure 2005-01-12 00:00:26.000000000 +0100
-+++ configure 2005-04-29 16:18:15.000000000 +0200
-@@ -8261,6 +8261,10 @@
- apache_exe="${apache_bin}/httpd"
- elif test -x "${apache_bin}/httpd2"; then
- apache_exe="${apache_bin}/httpd2"
-+elif test -x "${apache_bin}/apache"; then
-+ apache_exe="${apache_bin}/apache"
-+elif test -x "${apache_bin}/apache2"; then
-+ apache_exe="${apache_bin}/apache2"
- else
- { { echo "$as_me:$LINENO: error: Can't find Apache binary in directory ${apache_bin}" >&5
- echo "$as_me: error: Can't find Apache binary in directory ${apache_bin}" >&2;}
-diff -uprN ../resin-3.0.12/src/c/resin_os/Makefile.in src/c/resin_os/Makefile.in
---- ../resin-3.0.12/src/c/resin_os/Makefile.in 2004-12-01 00:22:38.000000000 +0100
-+++ src/c/resin_os/Makefile.in 2005-04-29 16:24:36.000000000 +0200
-@@ -13,7 +13,7 @@ resin_libexec=@apache_libexec@
- resin_home=@resin_home@
- JNI_INCLUDE=@JNI_INCLUDE@
- INCLUDES = @INCLUDES@ $(JNI_INCLUDE) -I../common
--CFLAGS = @CFLAGS@ -DRESIN_HOME=\"$(resin_home)\" $(INCLUDES) -DCPU=\"$(CPU)\" -DOS=$(OS)
-+CFLAGS = @CFLAGS@ -fPIC -DRESIN_HOME=\"$(resin_home)\" $(INCLUDES) -DCPU=\"$(CPU)\" -DOS=$(OS)
- OBJ= jni_os.o
-
- all : libresin_os.$(SO)
diff --git a/www-servers/resin/files/3.0.12/resin.conf b/www-servers/resin/files/3.0.12/resin.conf
deleted file mode 100644
index 9dfcf0269d58..000000000000
--- a/www-servers/resin/files/3.0.12/resin.conf
+++ /dev/null
@@ -1,36 +0,0 @@
-# $Header: /var/cvsroot/gentoo-x86/www-servers/resin/files/3.0.12/resin.conf,v 1.1 2005/04/19 14:03:56 luckyduck Exp $
-
-# JVM Runtime
-# Using the default setting, it will determine your JVM from the system-vm
-# set using java-config.
-# See java-config(1) manual page for assistance in determining this value.
-#
-# You can override this value with whatever path you wish.
-# Example: JAVA_HOME=/opt/sun-jdk-1.4.1.01
-
-#JAVA_HOME=`java-config -O`
-
-# (Optional) Java runtime options used when the "start", "stop", or "run"
-# commands are executed.
-# JAVA_OPTS=""
-
-# Where your Resin is installed
-RESIN_HOME=/opt/resin
-SERVER_ROOT=${RESIN_HOME}
-
-# Resin's User
-RESIN_USER=resin
-
-# Resin Log Locations
-RESIN_OUT=/var/log/resin/resin_out.log
-RESIN_ERR=/var/log/resin/resin_err.log
-
-# Location of the Resin JARs and classes
-RESIN_LIBDIR=/usr/share/resin/lib
-
-# The CLASSPATH for Resin to use, plus any others you need.
-CLASSPATH=$(java-config -p resin 2>/dev/null):${RESIN_LIBDIR}/lib
-
-# START/STOP settings
-RESIN_START="-java_home ${JAVA_HOME} -resin_home ${RESIN_HOME} -stdout ${RESIN_OUT} -stderr ${RESIN_ERR} start"
-RESIN_STOP="stop"
diff --git a/www-servers/resin/files/3.0.12/resin.init b/www-servers/resin/files/3.0.12/resin.init
deleted file mode 100644
index 7c73128a5857..000000000000
--- a/www-servers/resin/files/3.0.12/resin.init
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/sbin/runscript
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-servers/resin/files/3.0.12/resin.init,v 1.1 2005/04/19 14:03:56 luckyduck Exp $
-
-depend() {
- need net
- use dns logger mysql postgresql
-}
-
-start() {
- ebegin "Starting Resin"
- cd ${RESIN_HOME}
- su - ${RESIN_USER} -c "/opt/resin/bin/httpd.sh ${RESIN_START}"
- eend $?
-}
-
-stop() {
- ebegin "Stopping Resin"
- su - ${RESIN_USER} -c "/opt/resin/bin/httpd.sh ${RESIN_STOP}"
- sleep 2
- eend $?
-}
diff --git a/www-servers/resin/files/3.0.12/wrapper.pl.diff b/www-servers/resin/files/3.0.12/wrapper.pl.diff
deleted file mode 100644
index 0bd8702e6a0f..000000000000
--- a/www-servers/resin/files/3.0.12/wrapper.pl.diff
+++ /dev/null
@@ -1,21 +0,0 @@
---- bin/wrapper.pl.in 2004-07-30 01:59:20.680348752 +0200
-+++ bin/wrapper.pl.in 2004-07-30 02:04:38.745995424 +0200
-@@ -418,9 +418,6 @@
- $pid=`cat $pid_file`;
- chop($pid);
-
-- if ($cmd eq "stop") {
-- print("Stopping ${name}\n");
-- }
- kill(15, $pid);
- unlink($pid_file);
- }
-@@ -679,8 +676,6 @@
- $date = `date`;
- chop($date);
-
-- print "Resin $name $cmd at $date\n";
--
- # create a keepalive socket
- # when the wrapper dies, the httpd class will detect that and
- # close gracefully