wok view asterisk/receipt @ rev 5195

slitaz-doc: fix version for 3.0
author Christophe Lincoln <pankso@slitaz.org>
date Sun Mar 28 17:16:33 2010 +0200 (2010-03-28)
parents 395ec8205cff
children 5afe838f2ad8
line source
1 # SliTaz package receipt.
3 PACKAGE="asterisk"
4 VERSION="1.6.1.6"
5 CATEGORY="misc"
6 SHORT_DESC="Open Source PBX and telephony toolkit."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://www.asterisk.org/"
10 WGET_URL="http://downloads.asterisk.org/pub/telephony/asterisk/$TARBALL"
11 DEPENDS="openssl ncurses zlib libogg libvorbis curl newt libusb alsa-lib \
12 speex iksemel spandsp tiff radiusclient-ng nbs freetds libpostgresqlclient \
13 libmysqlclient libunixODBC popt dahdi libpri lua libcap attr net-snmp \
14 portaudio sqlite libkrb5 libcomerr3 libsdl-image"
15 BUILD_DEPENDS="libvorbis-dev curl-dev speex-dev alsa-lib-dev popt-dev \
16 libpri-dev spandsp-dev lua-dev dahdi-dev postgresql-dev net-snmp-dev \
17 libsdl-dev nbs-dev libogg-dev libogg speex spandsp iksemel iksemel-dev \
18 gmime gmime-dev openssl-dev openssl unixODBC-dev unixODBC \
19 openldap-dev openldap portaudio-dev portaudio"
20 CONFIG_FILES="/etc/asterisk"
21 TAGS="telephone toolkit"
23 # Rules to configure and make the package.
24 #
25 # Graphical configuration: 'make menuconfig' or 'make gmenuconfig'
26 #
27 compile_rules()
28 {
29 cd $src
30 sed -i 's/tar xof/tar xf/' sounds/Makefile
31 sed -i '/LOG_ERROR, "The file/ {nd}' main/config.c
32 sed -i 's/LOG_ERROR, "The file/LOG_WARNING, "The file/' main/config.c
33 sed -i 's|lua5.1/||' pbx/pbx_lua.c
34 sed -i 's/define AST_PBX_MAX_STACK.*/define AST_PBX_MAX_STACK 1024/' \
35 main/pbx.c
36 echo '' | contrib/scripts/get_ilbc_source.sh
37 sed -i '/codec_ilbc/{ns/no/yes/}' menuselect-tree
38 ./configure \
39 --prefix=/usr \
40 --sysconfdir=/etc \
41 --without-pwlib \
42 --with-dahdi=$WOK/dahdi/$(ls $WOK/dahdi/taz) \
43 $CONFIGURE_ARGS &&
44 make &&
45 make DESTDIR=$PWD/_pkg install &&
46 make DESTDIR=$PWD/_pkg samples &&
47 cd contrib/utils &&
48 gcc rawplayer.c -o $src/_pkg/usr/bin/rawplayer
49 }
51 # Rules to gen a SliTaz package suitable for Tazpkg.
52 genpkg_rules()
53 {
54 mkdir -p $fs/usr
55 cp -a $_pkg/etc $fs
56 cp -a $_pkg/var $fs
57 cp -a $_pkg/usr/bin $fs/usr
58 cp -a $_pkg/usr/lib $fs/usr
59 cp -a $_pkg/usr/sbin $fs/usr
60 cp -a stuff/* $fs
61 }
63 # Rules to configure package
64 setup_rules()
65 {
66 case "$2" in
67 mysql_host)
68 sed -i "s|^hostname=.*|hostname=$3|" $1/etc/asterisk/cdr_mysql.conf
69 sed -i "s|^dbhost=.*|dbhost=$3|" $1/etc/asterisk/res_mysql.conf
70 ;;
71 mysql_user)
72 sed -i "s|^user=.*|user=$3|" $1/etc/asterisk/cdr_mysql.conf
73 sed -i "s|^dbuser=.*|dbuser=$3|" $1/etc/asterisk/res_mysql.conf
74 ;;
75 mysql_password)
76 sed -i "s|^password=.*|password=$3|" $1/etc/asterisk/cdr_mysql.conf
77 sed -i "s|^dbpass=.*|dbpass=$3|" $1/etc/asterisk/res_mysql.conf
78 ;;
79 mysql_database)
80 sed -i "s|^dbname=.*|dbname=$3|" $1/etc/asterisk/res_mysql.conf \
81 $1/etc/asterisk/cdr_mysql.conf
82 ;;
83 pgsql_host)
84 sed -i "s|^hostname=.*|hostname=$3|" $1/etc/asterisk/cdr_pgsql.conf
85 sed -i "s|^dbhost=.*|dbhost=$3|" $1/etc/asterisk/res_pgsql.conf
86 ;;
87 pgsql_user)
88 sed -i "s|^user=.*|user=$3|" $1/etc/asterisk/cdr_pgsql.conf
89 sed -i "s|^dbuser=.*|dbuser=$3|" $1/etc/asterisk/res_pgsql.conf
90 ;;
91 pgsql_password)
92 sed -i "s|^password=.*|password=$3|" $1/etc/asterisk/cdr_pgsql.conf
93 sed -i "s|^dbpass=.*|dbpass=$3|" $1/etc/asterisk/res_pgsql.conf
94 ;;
95 pgsql_database)
96 sed -i "s|^dbname=.*|dbname=$3|" $1/etc/asterisk/res_pgsql.conf \
97 $1/etc/asterisk/cdr_pgsql.conf
98 ;;
99 *) cat <<EOT
100 mysql_host hostname or ip of mysql server
101 mysql_user username to connect to mysql server
102 mysql_password password to connect to mysql server
103 mysql_database database used by asterisk
104 pgsql_host hostname or ip of postgresql server
105 pgsql_user username to connect to postgresql server
106 pgsql_password password to connect to postgresql server
107 pgsql_database database used by asterisk
108 EOT
109 ;;
110 esac
111 }