summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'net-im/openfire/files')
-rw-r--r--net-im/openfire/files/buildxml.patch20
-rw-r--r--net-im/openfire/files/openfire-confd11
-rw-r--r--net-im/openfire/files/openfire-initd24
3 files changed, 0 insertions, 55 deletions
diff --git a/net-im/openfire/files/buildxml.patch b/net-im/openfire/files/buildxml.patch
deleted file mode 100644
index eb52f28..0000000
--- a/net-im/openfire/files/buildxml.patch
+++ /dev/null
@@ -1,20 +0,0 @@
---- build/build.xml 2007-04-13 21:00:32.000000000 +0000
-+++ build/build.xml 2007-04-16 23:11:05.000000000 +0000
-@@ -1133,7 +1133,7 @@
-
- </target>
- <target name="-plugins-impl" if="dirlist">
--
-+ <taskdef classname="net.sf.antcontrib.logic.For" name="for"/>
- <!-- For each plugin in the main src dir, call the 'buildplugin' macro -->
- <for list="${dirlist}" param="plugin" trim="true">
- <sequential>
-@@ -1143,7 +1143,7 @@
-
- </target>
- <target name="-plugins-impl-dev" if="plugin.dev.dir">
--
-+ <taskdef classname="net.sf.antcontrib.logic.For" name="for"/>
- <!-- Get a list of plugins in the optional dev dir -->
- <subdirinfo dir="${plugin.dev.dir}" property="dirlist2" ifexists="plugin.xml"/>
-
diff --git a/net-im/openfire/files/openfire-confd b/net-im/openfire/files/openfire-confd
deleted file mode 100644
index 35caece..0000000
--- a/net-im/openfire/files/openfire-confd
+++ /dev/null
@@ -1,11 +0,0 @@
-OPENFIRE_HOME=/opt/openfire
-OPENFIRE_LIB="${OPENFIRE_HOME}/lib"
-OPENFIRE_OPTS="-Xmx256m -DopenfireHome=${OPENFIRE_HOME} -Dopenfire.lib.dir=${OPENFIRE_LIB}"
-OPENFIRE_CLASS="-classpath ${OPENFIRE_LIB}/startup.jar"
-OPENFIRE_JAR="-jar ${OPENFIRE_LIB}/startup.jar"
-OPENFIRE_ARGS="-server ${OPENFIRE_OPTS} ${OPENFIRE_CLASS} ${OPENFIRE_JAR}"
-
-
-#JVM used by the openfire server. You can see a list of available vm's in /usr/lib/jvm/
-#But remenber that openfire needs a 1.5 jvm
-GENTOO_VM=sun-jdk-1.5
diff --git a/net-im/openfire/files/openfire-initd b/net-im/openfire/files/openfire-initd
deleted file mode 100644
index 272e66d..0000000
--- a/net-im/openfire/files/openfire-initd
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/sbin/runscript
-
-depend() {
- need net
- provide jabber-server
-}
-
-
-
-start() {
- #source /etc/env.d/java/20sun-jdk-1.5.0.06
- #OPENFIRE_CMD="${JAVA_HOME}/bin/java"
- OPENFIRE_CMD=`GENTOO_VM=${GENTOO_VM} java-config -J`
-
- ebegin "Starting Openfire Server"
- start-stop-daemon --chuid jabber --background --make-pidfile --pidfile /var/run/jabber/openfire.pid --start --startas ${OPENFIRE_CMD} -- ${OPENFIRE_ARGS} > /var/log/openfire.log 2>&1
- eend
-}
-
-stop() {
- ebegin "Stopping Openfire Messenger"
- start-stop-daemon --pidfile /var/run/jabber/openfire.pid --stop
- eend
-}