summaryrefslogtreecommitdiff
path: root/packages/openpbx
diff options
context:
space:
mode:
authorRolf Leggewie <oe-devel@rolf.leggewie.biz>2008-01-19 11:24:41 +0000
committerRolf Leggewie <oe-devel@rolf.leggewie.biz>2008-01-19 11:24:41 +0000
commit5cd700075edddb501cfa118b7e827842035b3e94 (patch)
treeb0e198b42e4fb4f1a09b00454521f4303a6350c9 /packages/openpbx
parent02fd43803d0ed17ef03265df679d6d0afc925018 (diff)
callweaver: follow upstream from openpbx.org to callweaver.org and update to rc5
* openpbx.org is gone and thus fetching failed. * upgrade to rc5 since rc3 is no longer available * Follow upstream rename of project from openpbx.org to callweaver.org. replace all occurences of the openpbx string with callweaver in all files. * drop unneeded patches and create new ones (fix version check code) * drop openldap support and DEPENDS until bug 2806 is fixed to enable the package to build in OE * fix packaging * this is the "boy, am I glad I got it off the 'mtn status'-radar"-commit
Diffstat (limited to 'packages/openpbx')
-rw-r--r--packages/openpbx/.mtn2git_empty0
-rw-r--r--packages/openpbx/files/.mtn2git_empty0
-rw-r--r--packages/openpbx/files/init75
-rw-r--r--packages/openpbx/files/logrotate13
-rw-r--r--packages/openpbx/files/volatiles6
-rw-r--r--packages/openpbx/openpbx.org-1.2_rc3/.mtn2git_empty0
-rw-r--r--packages/openpbx/openpbx.org-1.2_rc3/bootstrap.patch37
-rw-r--r--packages/openpbx/openpbx.org-1.2_rc3/openssl.m4.patch46
-rw-r--r--packages/openpbx/openpbx.org-perl.bb24
-rw-r--r--packages/openpbx/openpbx.org_1.2_rc3.bb139
10 files changed, 0 insertions, 340 deletions
diff --git a/packages/openpbx/.mtn2git_empty b/packages/openpbx/.mtn2git_empty
deleted file mode 100644
index e69de29bb2..0000000000
--- a/packages/openpbx/.mtn2git_empty
+++ /dev/null
diff --git a/packages/openpbx/files/.mtn2git_empty b/packages/openpbx/files/.mtn2git_empty
deleted file mode 100644
index e69de29bb2..0000000000
--- a/packages/openpbx/files/.mtn2git_empty
+++ /dev/null
diff --git a/packages/openpbx/files/init b/packages/openpbx/files/init
deleted file mode 100644
index 0ce88c4626..0000000000
--- a/packages/openpbx/files/init
+++ /dev/null
@@ -1,75 +0,0 @@
-#! /bin/sh
-#
-# This is an init script for openembedded
-# Copy it to /etc/init.d/openpbx and type
-# > update-rc.d openpbx defaults 60
-#
-openpbx=/usr/sbin/openpbx
-pidfile=/var/run/openpbx.org/openpbx.pid
-
-test -x "$openpbx" || exit 0
-
-case "$1" in
- start)
- echo -n "Starting OpenPBX"
- start-stop-daemon --start --quiet --exec $openpbx -- -npq
- echo "."
- ;;
- stop)
- echo -n "Stopping OpenPBX"
- $openpbx -rx "stop gracefully"
- sleep 4
- if [ -f $pidfile ]; then
- start-stop-daemon --stop --quiet --pidfile $pidfile
- fi
- echo "."
- ;;
- force-stop)
- echo -n "Stopping OpenPBX"
- $openpbx -rx "stop now"
- sleep 2
- if [ -f $pidfile ]; then
- start-stop-daemon --stop --quiet --pidfile $pidfile
- fi
- echo "."
- ;;
- restart)
- echo -n "Restarting OpenPBX"
- if [ -f $pidfile ]; then
- $openpbx -rx "restart gracefully"
- sleep 2
- else
- start-stop-daemon --start --quiet --exec $openpbx -- -npq
- fi
- ;;
- force-restart)
- echo -n "Forcibly Restarting OpenPBX"
- if [ -f $pidfile ]; then
- $openpbx -rx "restart now"
- sleep 2
- else
- start-stop-daemon --start --quiet --exec $openpbx -- -npq
- fi
- ;;
- reload)
- echo -n "Reloading OpenPBX Configuration"
- if [ -f $pidfile ]; then
- $openpbx -rx "reload"
- else
- start-stop-daemon --start --quiet --exec $openpbx -- -npq
- fi
- echo "."
- ;;
- logger-reload)
-# echo -n "Restating OpenPBX Logger"
- if [ -f $pidfile ]; then
- $openpbx -rx "logger reload"
- fi
-# echo "."
- ;;
- *)
- echo "Usage: /etc/init.d/openpbx {start|stop|force-stop|restart|force-restart|reload|logger-reload}"
- exit 1
-esac
-
-exit 0
diff --git a/packages/openpbx/files/logrotate b/packages/openpbx/files/logrotate
deleted file mode 100644
index a0192538a3..0000000000
--- a/packages/openpbx/files/logrotate
+++ /dev/null
@@ -1,13 +0,0 @@
-/var/log/openpbx.org/cdr-csv/Master.csv /var/log/openpbx.org/queue_log /var/log/openpbx.org/event_log /var/log/openpbx.org/messages
-/var/log/openpbx.org/full {
- daily
- missingok
- compress
- delaycompress
- rotate 30
- sharedscripts
- postrotate
- /etc/init.d/openpbx logger-reload
- endscript
-}
-
diff --git a/packages/openpbx/files/volatiles b/packages/openpbx/files/volatiles
deleted file mode 100644
index 716d469e86..0000000000
--- a/packages/openpbx/files/volatiles
+++ /dev/null
@@ -1,6 +0,0 @@
-d openpbx openpbx 0775 /var/run/openpbx.org none
-d openpbx openpbx 0775 /var/lib/openpbx.org none
-d openpbx openpbx 0775 /var/log/openpbx.org/cdr-csv none
-d openpbx openpbx 0775 /var/log/openpbx.org/cdr-custom none
-d openpbx openpbx 0775 /var/spool/openpbx.org/outgoing none
-d openpbx openpbx 0775 /var/spool/openpbx.org/voicemail none
diff --git a/packages/openpbx/openpbx.org-1.2_rc3/.mtn2git_empty b/packages/openpbx/openpbx.org-1.2_rc3/.mtn2git_empty
deleted file mode 100644
index e69de29bb2..0000000000
--- a/packages/openpbx/openpbx.org-1.2_rc3/.mtn2git_empty
+++ /dev/null
diff --git a/packages/openpbx/openpbx.org-1.2_rc3/bootstrap.patch b/packages/openpbx/openpbx.org-1.2_rc3/bootstrap.patch
deleted file mode 100644
index 7f89772efa..0000000000
--- a/packages/openpbx/openpbx.org-1.2_rc3/bootstrap.patch
+++ /dev/null
@@ -1,37 +0,0 @@
-*** openpbx.org-1.2_rc3.old/bootstrap.sh Mon Feb 26 16:02:40 2007
---- openpbx.org-1.2_rc3/bootstrap.sh Mon Feb 26 16:04:11 2007
-***************
-*** 89,104 ****
- # Check for required version and die if unhappy
-
- if [ "x$UNAME" = "xFreeBSD" ]; then
-! version_compare libtoolize 1 5 20 || exit 1
-! version_compare automake19 1 9 6 || exit 1
- version_compare autoconf259 2 59 || exit 1
- ACLOCAL=aclocal19
- AUTOHEADER=autoheader259
- AUTOMAKE=automake19
- AUTOCONF=autoconf259
- else
-! version_compare libtoolize 1 5 20 || exit 1
-! version_compare automake 1 9 6 || exit 1
- version_compare autoconf 2 59 || exit 1
- ACLOCAL=aclocal
- AUTOHEADER=autoheader
---- 89,104 ----
- # Check for required version and die if unhappy
-
- if [ "x$UNAME" = "xFreeBSD" ]; then
-! version_compare libtoolize 1 5 10 || exit 1
-! version_compare automake19 1 9 3 || exit 1
- version_compare autoconf259 2 59 || exit 1
- ACLOCAL=aclocal19
- AUTOHEADER=autoheader259
- AUTOMAKE=automake19
- AUTOCONF=autoconf259
- else
-! version_compare libtoolize 1 5 10 || exit 1
-! version_compare automake 1 9 3 || exit 1
- version_compare autoconf 2 59 || exit 1
- ACLOCAL=aclocal
- AUTOHEADER=autoheader
diff --git a/packages/openpbx/openpbx.org-1.2_rc3/openssl.m4.patch b/packages/openpbx/openpbx.org-1.2_rc3/openssl.m4.patch
deleted file mode 100644
index 55d0d33832..0000000000
--- a/packages/openpbx/openpbx.org-1.2_rc3/openssl.m4.patch
+++ /dev/null
@@ -1,46 +0,0 @@
-*** openpbx.org-1.2_rc3.old/acmacros/openssl.m4 Tue Mar 6 15:21:39 2007
---- openpbx.org-1.2_rc3/acmacros/openssl.m4 Tue Mar 6 15:23:18 2007
-***************
-*** 3,13 ****
- #
- AC_DEFUN([CHECK_SSL],
- [AC_MSG_CHECKING(if ssl is wanted)
-! # AC_ARG_WITH(ssl,
-! # [ --with-ssl enable ssl [will check /usr/local/ssl
-! # /usr/lib/ssl /usr/ssl /usr/pkg /usr/local /usr /usr/sfw ]
-! # ],
-! #[ AC_MSG_RESULT(yes)
- for dir in $withval /usr/local/ssl /usr/lib/ssl /usr/ssl /usr/pkg /usr/local /usr /usr/sfw; do
- ssldir="$dir"
- if test -f "$dir/include/openssl/ssl.h"; then
---- 3,13 ----
- #
- AC_DEFUN([CHECK_SSL],
- [AC_MSG_CHECKING(if ssl is wanted)
-! AC_ARG_WITH(ssl,
-! [ --with-ssl enable ssl [will check /usr/local/ssl
-! /usr/lib/ssl /usr/ssl /usr/pkg /usr/local /usr /usr/sfw ]
-! ],
-! [ AC_MSG_RESULT(yes)
- for dir in $withval /usr/local/ssl /usr/lib/ssl /usr/ssl /usr/pkg /usr/local /usr /usr/sfw; do
- ssldir="$dir"
- if test -f "$dir/include/openssl/ssl.h"; then
-***************
-*** 33,40 ****
- AC_SUBST([HAVE_SSL])
- AC_SUBST([SSL_LIBS])
- AC_SUBST([SSL_CFLAGS])
-! #],
-! #[
-! # AC_MSG_RESULT(no)
-! #])
- ])dnl
---- 33,40 ----
- AC_SUBST([HAVE_SSL])
- AC_SUBST([SSL_LIBS])
- AC_SUBST([SSL_CFLAGS])
-! ],
-! [
-! AC_MSG_RESULT(no)
-! ])
- ])dnl
diff --git a/packages/openpbx/openpbx.org-perl.bb b/packages/openpbx/openpbx.org-perl.bb
deleted file mode 100644
index 124dfcfc8b..0000000000
--- a/packages/openpbx/openpbx.org-perl.bb
+++ /dev/null
@@ -1,24 +0,0 @@
-DESCRIPTION = "Openpbx::OGI Perl Gateway Interface Module"
-HOMEPAGE = "http://www.openpbx.org"
-SECTION = "libs"
-LICENSE = "GPL"
-DEPENDS = "install-native"
-RDEPENDS = "perl openpbx.org-ogi"
-PR = "r0"
-
-OPBXV = "openpbx.org-1.2_rc3"
-
-SRC_URI = "http://www.openpbx.org/releases/${OPBXV}.tar.gz"
-
-S = "${WORKDIR}/${OPBXV}/contrib/ogi-perl/openpbx-perl-${PV}"
-
-inherit cpan
-
-do_install_append () {
- install -d ${D}${datadir}/openpbx.org/ogi/perl
- install ${S}/examples/* ${D}${datadir}/openpbx.org/ogi/perl
-}
-
-PACKAGES =+ "${PN}-examples"
-
-FILES_${PN}-examples = "${datadir}/openpbx.org/ogi/perl"
diff --git a/packages/openpbx/openpbx.org_1.2_rc3.bb b/packages/openpbx/openpbx.org_1.2_rc3.bb
deleted file mode 100644
index e343eb8729..0000000000
--- a/packages/openpbx/openpbx.org_1.2_rc3.bb
+++ /dev/null
@@ -1,139 +0,0 @@
-DESCRIPTION = "A flexible VOIP soft switch/PBX."
-DESCRIPTION_${PN}-ogi = "OpenPBX Gateway Inerface for scripted PBX call processing"
-DESCRIPTION_${PN}-fax = "Fax send/receive file and T.38 support for OpenPBX"
-DESCRIPTION_${PN}-ldap = "LDAP Directory services interface for OpenPBX"
-DESCRIPTION_${PN}-sounds = "Standard set of audio prompts for OpenPBX"
-HOMEPAGE = "http://www.openpbx.org"
-RDEPENDS = "ssmtp"
-SECTION = "voip"
-LICENSE = "GPL"
-DEPENDS = "openssl zlib tiff libcap spandsp speex readline js \
- sox-native findutils-native"
-DEPENDS_${PN}-ldap = "openldap"
-RRECOMMENDS = "logrotate"
-RRECOMMENDS_${PN}-ogi = "perl perl-module-strict openpbx.org-perl"
-PV = "1.2_rc3"
-PR = "r2"
-
-SRC_URI = "http://www.openpbx.org/releases/${P}.tar.gz \
- svn://svn.openpbx.org/openpbx-sounds/trunk/sounds/en_US;module=MelanieTaylor;proto=svn \
- file://bootstrap.patch;patch=1 \
- file://openssl.m4.patch;patch=1 \
- file://logrotate \
- file://volatiles \
- file://init"
-
-PARALLEL_MAKE = ""
-INITSCRIPT_NAME = "openpbx"
-INITSCRIPT_PARAMS = "defaults 60"
-
-inherit autotools update-rc.d
-
-EXTRA_OECONF = " --with-ssl=${STAGING_DIR}/${HOST_SYS} --enable-low_memory \
- --disable-zaptel --with-directory-layout=lsb --enable-t38 \
- --with-codec-speex=${STAGING_DIR}/${HOST_SYS} --with-app_ldap \
- --with-perl-shebang='#!${bindir}/perl' --with-jabber --with-res_jabber \
- --with-javascript --with-res_js \
- --bindir=${bindir} --datadir=${datadir} --sysconfdir=${sysconfdir} \
- --includedir=${includedir} --infodir=${infodir} --mandir=${mandir} \
- --localstatedir=${localstatedir} --libdir=${libdir}"
-
-do_configure_prepend () {
- ${S}/bootstrap.sh
- # Fix some stupidness with the VoiceMail app naming. Case Matters!
- sed -i 's:Voicemail:VoiceMail:' ${S}/configs/extensions.conf.sample
- sed -i 's:/var:${localstatedir}:' ${WORKDIR}/volatiles
- sed -i 's:/var:${localstatedir}:' ${WORKDIR}/logrotate
- sed -i 's:/etc/init.d:${sysconfdir}/init.d:' ${WORKDIR}/logrotate
-}
-
-do_install_append() {
- install -c -D -m 755 ${WORKDIR}/init ${D}${sysconfdir}/init.d/openpbx
- install -c -D -m 644 ${WORKDIR}/logrotate ${D}${sysconfdir}/logrotate.d/openpbx
- install -c -D -m 644 ${WORKDIR}/volatiles ${D}${sysconfdir}/default/volatiles/openpbx
- # And now for sounds...
- for file in `find ${WORKDIR}/MelanieTaylor -name \*.wav`; do
- echo $file
- sox -V $file -t raw -s -r 8000 -c 1 -w `echo $file|sed -e s/\.wav$/.sln/` resample -ql;
- sox -V $file -t raw -U -r 8000 -c 1 -b `echo $file|sed -e s/\.wav$/.ulaw/` resample -ql;
- sox -V $file -t raw -A -r 8000 -c 1 -b `echo $file|sed -e s/\.wav$/.alaw/` resample -ql;
- sox -V $file -t gsm -r 8000 -c 1 -b `echo $file|sed -e s/\.wav$/.gsm/` resample -ql;
- relfile=`echo $file|sed -e s:^${WORKDIR}/MelanieTaylor/::`
- relfile2=`echo $relfile|sed -e s:\.wav$::`
- install -c -D -m 644 ${WORKDIR}/MelanieTaylor/$relfile2.sln ${D}${datadir}/openpbx.org/sounds/$relfile2.sln
- install -c -D -m 644 ${WORKDIR}/MelanieTaylor/$relfile2.ulaw ${D}${datadir}/openpbx.org/sounds/$relfile2.ulaw
- install -c -D -m 644 ${WORKDIR}/MelanieTaylor/$relfile2.alaw ${D}${datadir}/openpbx.org/sounds/$relfile2.alaw
- install -c -D -m 644 ${WORKDIR}/MelanieTaylor/$relfile2.gsm ${D}${datadir}/openpbx.org/sounds/$relfile2.gsm
- done
-}
-
-PACKAGES = "${PN}-sounds ${PN}-fax ${PN}-ogi ${PN}-ldap ${PN}-doc ${PN}-dev ${PN}"
-
-FILES_${PN}-sounds = "${datadir}/openpbx.org/sounds/*"
-FILES_${PN}-dev = "${libdir}/openpbx.org/modules/*.la \
- ${libdir}/openpbx.org/*.la \
- ${includedir}/openpbx/*"
-FILES_${PN}-fax = "${libdir}/openpbx.org/modules/app_backgrounddetect.so \
- ${libdir}/openpbx.org/modules/app_faxdetect.so \
- ${libdir}/openpbx.org/modules/app_rxfax.so \
- ${libdir}/openpbx.org/modules/app_txfax.so"
-FILES_${PN}-ogi = "${libdir}/openpbx.org/modules/res_ogi.so \
- ${datadir}/openpbx.org/ogi/*"
-FILES_${PN}-ldap = "${libdir}/openpbx.org/modules/app_ldap.*"
-
-pkg_postinst_prepend() {
- grep -q openpbx ${sysconfdir}/group || addgroup --system openpbx
- grep -q openpbx ${sysconfdir}/passwd || adduser --system --home ${localstatedir}/run/openpbx.org --no-create-home --disabled-password --ingroup openpbx -s ${base_bindir}/false openpbx
- chown -R openpbx:openpbx ${libdir}/openpbx.org ${localstatedir}/lib/openpbx.org ${localstatedir}/spool/openpbx.org ${localstatedir}/log/openpbx.org ${localstatedir}/run/openpbx.org ${sysconfdir}/openpbx.org ${datadir}/openpbx.org
- /etc/init.d/populate-volatile.sh update
-}
-
-pkg_postinst_${PN}-fax () {
- chown -R openpbx:openpbx ${libdir}/openpbx.org
-}
-
-pkg_postinst_${PN}-ldap () {
- chown -R openpbx:openpbx ${libdir}/openpbx.org
-}
-
-pkg_postinst_${PN}-sounds () {
- chown -R openpbx:openpbx ${datadir}/openpbx.org
-}
-
-CONFFILES_${PN} += "${sysconfdir}/openpbx.org/musiconhold.conf"
-CONFFILES_${PN} += "${sysconfdir}/openpbx.org/adsi.conf"
-CONFFILES_${PN} += "${sysconfdir}/openpbx.org/adtranvofr.conf"
-CONFFILES_${PN} += "${sysconfdir}/openpbx.org/agents.conf"
-CONFFILES_${PN} += "${sysconfdir}/openpbx.org/cdr.conf"
-CONFFILES_${PN} += "${sysconfdir}/openpbx.org/cdr_custom.conf"
-CONFFILES_${PN} += "${sysconfdir}/openpbx.org/cdr_manager.conf"
-CONFFILES_${PN} += "${sysconfdir}/openpbx.org/cdr_tds.conf"
-CONFFILES_${PN} += "${sysconfdir}/openpbx.org/codecs.conf"
-CONFFILES_${PN} += "${sysconfdir}/openpbx.org/dnsmgr.conf"
-CONFFILES_${PN} += "${sysconfdir}/openpbx.org/dundi.conf"
-CONFFILES_${PN} += "${sysconfdir}/openpbx.org/enum.conf"
-CONFFILES_${PN} += "${sysconfdir}/openpbx.org/extconfig.conf"
-CONFFILES_${PN} += "${sysconfdir}/openpbx.org/extensions.conf"
-CONFFILES_${PN} += "${sysconfdir}/openpbx.org/extensions.ael"
-CONFFILES_${PN} += "${sysconfdir}/openpbx.org/features.conf"
-CONFFILES_${PN} += "${sysconfdir}/openpbx.org/iax.conf"
-CONFFILES_${PN} += "${sysconfdir}/openpbx.org/indications.conf"
-CONFFILES_${PN} += "${sysconfdir}/openpbx.org/logger.conf"
-CONFFILES_${PN} += "${sysconfdir}/openpbx.org/manager.conf"
-CONFFILES_${PN} += "${sysconfdir}/openpbx.org/meetme.conf"
-CONFFILES_${PN} += "${sysconfdir}/openpbx.org/mgcp.conf"
-CONFFILES_${PN} += "${sysconfdir}/openpbx.org/modem.conf"
-CONFFILES_${PN} += "${sysconfdir}/openpbx.org/modules.conf"
-CONFFILES_${PN} += "${sysconfdir}/openpbx.org/muted.conf"
-CONFFILES_${PN} += "${sysconfdir}/openpbx.org/openpbx.adsi"
-CONFFILES_${PN} += "${sysconfdir}/openpbx.org/openpbx.conf"
-CONFFILES_${PN} += "${sysconfdir}/openpbx.org/osp.conf"
-CONFFILES_${PN} += "${sysconfdir}/openpbx.org/privacy.conf"
-CONFFILES_${PN} += "${sysconfdir}/openpbx.org/queues.conf"
-CONFFILES_${PN} += "${sysconfdir}/openpbx.org/rpt.conf"
-CONFFILES_${PN} += "${sysconfdir}/openpbx.org/rtp.conf"
-CONFFILES_${PN} += "${sysconfdir}/openpbx.org/sip.conf"
-CONFFILES_${PN} += "${sysconfdir}/openpbx.org/sip_notify.conf"
-CONFFILES_${PN} += "${sysconfdir}/openpbx.org/udptl.conf"
-CONFFILES_${PN} += "${sysconfdir}/openpbx.org/voicemail.conf"
-CONFFILES_${PN} += "${sysconfdir}/openpbx.org/woomera.conf"