[Pkg-voip-commits] r3679 - callweaver/trunk/debian

santiago at alioth.debian.org santiago at alioth.debian.org
Wed Jun 20 23:39:13 UTC 2007


Author: santiago
Date: 2007-06-20 23:39:13 +0000 (Wed, 20 Jun 2007)
New Revision: 3679

Modified:
   callweaver/trunk/debian/callweaver.default
   callweaver/trunk/debian/callweaver.init
   callweaver/trunk/debian/callweaver.install
   callweaver/trunk/debian/control
   callweaver/trunk/debian/copyright
   callweaver/trunk/debian/rules
Log:
merged some changes from upstream's debian/ dir



Modified: callweaver/trunk/debian/callweaver.default
===================================================================
--- callweaver/trunk/debian/callweaver.default	2007-06-20 19:17:15 UTC (rev 3678)
+++ callweaver/trunk/debian/callweaver.default	2007-06-20 23:39:13 UTC (rev 3679)
@@ -1,16 +1,16 @@
 # This file allows you to alter the configuration of the callweaver
 # init.d script
 #
-# RUNOPBX: run callweaver upon boot. Should be set to "yes" once you have
+# RUNCALLWEAVER: run callweaver upon boot. Should be set to "yes" once you have
 #              setup your configuration.
-RUNOPENPBX=no
+RUNCALLWEAVER=no
 #
 #
-# OPBX_REALTIME:if set to anything other than "no", callweaver will run in 
+# CALLWEAVER_REALTIME:if set to anything other than "no", callweaver will run in 
 #               real-time priority (pass '-p' to callweaver). un-rem the 
 #               following line to disable callweaver from running in real-time 
 #               priority
-#OPBX_REALTIME=yes
+#CALLWEAVER_REALTIME=yes
 #
 # PARAMS: exra parameters to pass to callweaver
 #         The example here may help you in debugging, but is not intended for
@@ -19,6 +19,6 @@
 #PARAMS="-g -vvv"
 #
 #
-# RUNOPBXSAFE: run safe_callweaver rather than callweaver (will auto-restart upon
+# RUNCALLWEAVERSAFE: run safe_callweaver rather than callweaver (will auto-restart upon
 #             crash)
-#RUNOPBXSAFE=yes
+#RUNCALLWEAVERSAFE=yes

Modified: callweaver/trunk/debian/callweaver.init
===================================================================
--- callweaver/trunk/debian/callweaver.init	2007-06-20 19:17:15 UTC (rev 3678)
+++ callweaver/trunk/debian/callweaver.init	2007-06-20 23:39:13 UTC (rev 3679)
@@ -25,17 +25,17 @@
 
 # by default: use real-time priority
 PARAMS=""
-OPBX_REALTIME="yes"
-RUNOPENPBX="no"
+CALLWEAVER_REALTIME="yes"
+RUNCALLWEAVER="no"
 MODULEINIT=""
 if [ -r /etc/default/$NAME ]; then . /etc/default/$NAME; fi
 
-if [ "$RUNOPENPBX" != "yes" ];then
+if [ "$RUNCALLWEAVER" != "yes" ];then
 	echo "$DESC not yet configured. Edit /etc/default/$NAME first."
-	exit 1
+	exit 0
 fi
 
-if [ "$OPBX_REALTIME" != "no" ]
+if [ "$CALLWEAVER_REALTIME" != "no" ]
 then
   PARAMS="$PARAMS -p"
 fi
@@ -51,7 +51,7 @@
   exit 1
 fi
 PARAMS="$PARAMS -U $USER"
-if [ "x$RUNOPBXSAFE" = "xyes" ];then
+if [ "x$RUNCALLWEAVERSAFE" = "xyes" ];then
 	DAEMON=/usr/sbin/safe_callweaver
 	REALDAEMON=/usr/sbin/callweaver
 else
@@ -70,7 +70,7 @@
 	;;
   stop)
 	echo -n "Stopping $DESC: "
-	if [ "$RUNOPBXSAFE" = "yes" ];then
+	if [ "$RUNCALLWEAVERSAFE" = "yes" ];then
 		# hopefully this will work. Untested
 		$REALDAEMON -rx 'stop now' > /dev/null  || true
 	else
@@ -80,7 +80,7 @@
 	echo -n "$NAME"
 	# giving a small grace time to shut down cleanly.
 	sleep 2
-	if [ "$RUNOPBXSAFE" = "yes" ];then
+	if [ "$RUNCALLWEAVERSAFE" = "yes" ];then
 		start-stop-daemon --quiet --oknodo --stop --exec $DAEMON
 	fi
 	# just making sure it's really, really dead. 

Modified: callweaver/trunk/debian/callweaver.install
===================================================================
--- callweaver/trunk/debian/callweaver.install	2007-06-20 19:17:15 UTC (rev 3678)
+++ callweaver/trunk/debian/callweaver.install	2007-06-20 23:39:13 UTC (rev 3679)
@@ -1,5 +1,6 @@
-usr/lib/callweaver/libopbx*.so.*
-usr/lib/callweaver/libopenpbx*.so.*
+usr/lib/callweaver/libcallweaver*.so.*
+usr/lib/callweaver/libcwjb*.so.*
+usr/lib/callweaver/libcwsqlite3*.so.*
 usr/lib/callweaver/modules/*.so
 usr/lib/callweaver/libedit.so.* usr/lib/callweaver/
 usr/sbin

Modified: callweaver/trunk/debian/control
===================================================================
--- callweaver/trunk/debian/control	2007-06-20 19:17:15 UTC (rev 3678)
+++ callweaver/trunk/debian/control	2007-06-20 23:39:13 UTC (rev 3679)
@@ -3,7 +3,7 @@
 Section: comm
 Maintainer: Debian VoIP Team <pkg-voip-maintainers at lists.alioth.debian.org>
 Uploaders: Kilian Krause <kilian at debian.org>, Mark Purcell <msp at debian.org>
-Build-Depends: debhelper (>= 4.1.0), dpatch, libcap-dev, libedit-dev, libspandsp-dev (>= 0.0.4~pre3), libssl-dev, libncurses-dev, libpq-dev, libspeex-dev, libcurl3-dev, unixodbc-dev, libcapi20-dev, zaptel-source, libreadline-dev
+Build-Depends: debhelper (>= 4.1.0), dpatch, libcap-dev, libedit-dev, libspandsp-dev (>= 0.0.4~pre3), libssl-dev, libncurses-dev, libpq-dev, libspeex-dev, libcurl3-dev, unixodbc-dev, libcapi20-dev, zaptel-source, libreadline-dev, libsqlite3-dev, libmysqlclient15-dev, libbluetooth2-dev
 Standards-Version: 3.6.2
 XS-Vcs-Svn: svn://svn.debian.org/pkg-voip/
 XS-Vcs-Browser: http://svn.debian.org/wsvn/pkg-voip/

Modified: callweaver/trunk/debian/copyright
===================================================================
--- callweaver/trunk/debian/copyright	2007-06-20 19:17:15 UTC (rev 3678)
+++ callweaver/trunk/debian/copyright	2007-06-20 23:39:13 UTC (rev 3679)
@@ -4,7 +4,7 @@
 It was later modified and mantained by Massimo Cetra <devel at navynet.it>
 Then imported to Debian VoIP where it's maintained now.
 
-It was downloaded from http://www.callweaver.
+It was downloaded from http://www.callweaver.org
 
 The iLBC codec was removed for DFSG-compliance.
 

Modified: callweaver/trunk/debian/rules
===================================================================
--- callweaver/trunk/debian/rules	2007-06-20 19:17:15 UTC (rev 3678)
+++ callweaver/trunk/debian/rules	2007-06-20 23:39:13 UTC (rev 3679)
@@ -75,7 +75,9 @@
 				--enable-t38=yes --with-chan-fax=yes --enable-jabber=yes \
 				--with-res_jabber=yes --enable-odbc=yes --with-cdr_odbc=yes \
 				--with-res_config_odbc=yes --with-res_odbc=yes \
-				--with-chan_bluetooth=yes
+				--with-chan_bluetooth=yes \
+				--enable-mysql=yes --with-app_sql_mysql=yes --with-cdr_mysql=yes \
+				--with-res_config_mysql=yes 
 
 build: build-stamp
 




More information about the Pkg-voip-commits mailing list