Gentoo Archives: gentoo-commits

From: "Markus Ullmann (jokey)" <jokey@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-im/openfire/files: openfire-initd openfire-confd buildxml.patch buildxml-3.3.3.patch buildxml-3.3.2.patch buildxml-3.4.4.patch buildxml-3.4.3.patch buildxml-3.4.1.patch
Date: Wed, 12 Mar 2008 19:58:08
Message-Id: E1JZX5R-0002fz-SB@stork.gentoo.org
1 jokey 08/03/12 19:58:05
2
3 Added: openfire-initd openfire-confd buildxml.patch
4 Removed: buildxml-3.3.3.patch buildxml-3.3.2.patch
5 buildxml-3.4.4.patch buildxml-3.4.3.patch
6 buildxml-3.4.1.patch
7 Log:
8 Quoting fix and version bump
9 (Portage version: 2.1.4.4)
10
11 Revision Changes Path
12 1.1 net-im/openfire/files/openfire-initd
13
14 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-im/openfire/files/openfire-initd?rev=1.1&view=markup
15 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-im/openfire/files/openfire-initd?rev=1.1&content-type=text/plain
16
17 Index: openfire-initd
18 ===================================================================
19 #!/sbin/runscript
20
21 depend() {
22 need net
23 provide jabber-server
24 }
25
26
27
28 start() {
29 #source /etc/env.d/java/20sun-jdk-1.5.0.06
30 #OPENFIRE_CMD="${JAVA_HOME}/bin/java"
31 OPENFIRE_CMD=`GENTOO_VM=${GENTOO_VM} java-config -J`
32
33 ebegin "Starting Openfire Server"
34 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
35 eend
36 }
37
38 stop() {
39 ebegin "Stopping Openfire Messenger"
40 start-stop-daemon --pidfile /var/run/jabber/openfire.pid --stop
41 eend
42 }
43
44
45
46 1.1 net-im/openfire/files/openfire-confd
47
48 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-im/openfire/files/openfire-confd?rev=1.1&view=markup
49 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-im/openfire/files/openfire-confd?rev=1.1&content-type=text/plain
50
51 Index: openfire-confd
52 ===================================================================
53 OPENFIRE_HOME=/opt/openfire
54 OPENFIRE_LIB="${OPENFIRE_HOME}/lib"
55 OPENFIRE_OPTS="-Xmx256m -DopenfireHome=${OPENFIRE_HOME} -Dopenfire.lib.dir=${OPENFIRE_LIB}"
56 OPENFIRE_CLASS="-classpath ${OPENFIRE_LIB}/startup.jar"
57 OPENFIRE_JAR="-jar ${OPENFIRE_LIB}/startup.jar"
58 OPENFIRE_ARGS="-server ${OPENFIRE_OPTS} ${OPENFIRE_CLASS} ${OPENFIRE_JAR}"
59
60
61 #JVM used by the openfire server. You can see a list of available vm's in /usr/lib/jvm/
62 #But remenber that openfire needs a 1.5 jvm
63 GENTOO_VM=sun-jdk-1.5
64
65
66
67 1.1 net-im/openfire/files/buildxml.patch
68
69 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-im/openfire/files/buildxml.patch?rev=1.1&view=markup
70 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-im/openfire/files/buildxml.patch?rev=1.1&content-type=text/plain
71
72 Index: buildxml.patch
73 ===================================================================
74 --- build/build.xml 2007-04-13 21:00:32.000000000 +0000
75 +++ build/build.xml 2007-04-16 23:11:05.000000000 +0000
76 @@ -1133,7 +1133,7 @@
77
78 </target>
79 <target name="-plugins-impl" if="dirlist">
80 -
81 + <taskdef classname="net.sf.antcontrib.logic.For" name="for"/>
82 <!-- For each plugin in the main src dir, call the 'buildplugin' macro -->
83 <for list="${dirlist}" param="plugin" trim="true">
84 <sequential>
85 @@ -1143,7 +1143,7 @@
86
87 </target>
88 <target name="-plugins-impl-dev" if="plugin.dev.dir">
89 -
90 + <taskdef classname="net.sf.antcontrib.logic.For" name="for"/>
91 <!-- Get a list of plugins in the optional dev dir -->
92 <subdirinfo dir="${plugin.dev.dir}" property="dirlist2" ifexists="plugin.xml"/>
93
94
95
96
97 --
98 gentoo-commits@l.g.o mailing list