]> git.pld-linux.org Git - packages/asterisk.git/blobdiff - asterisk.spec
- use external libedit
[packages/asterisk.git] / asterisk.spec
index a67a4bd136a128f4350aa1df2923638dc354efd3..668abb3bdd4f9b4f8895db92b7214e74ef6e3566 100644 (file)
@@ -9,6 +9,8 @@
 # Conditional build:
 %bcond_with    rxfax           # without rx (also tx :-D) fax
 %bcond_with    bluetooth       # without bluetooth support (NFT)
+%bcond_without h323            # With H.323 support
+%bcond_with    zaptel          # zaptel instead of dahdi
 %bcond_with    zhone           # zhone hack
 %bcond_with    zhone_hack      # huge hack workarounding broken zhone channel banks which start randomly
                                # issuing pulse-dialled calls to weird numbers
 Summary:       Asterisk PBX
 Summary(pl.UTF-8):     Centralka (PBX) Asterisk
 Name:          asterisk
-Version:       1.4.31
+Version:       1.4.44
 Release:       1%{?with_bristuff:.bristuff}
 License:       GPL v2
 Group:         Applications/System
-Source0:       http://downloads.digium.com/pub/asterisk/%{name}-%{version}.tar.gz
-# Source0-md5: 9499d3b25abd931989d902c0ce8ca029
+Source0:       http://downloads.digium.com/pub/asterisk/releases/%{name}-%{version}.tar.gz
+# Source0-md5: 31daa6d5702f58bea1448e9ef45c9c8e
 Source1:       %{name}.init
 Source2:       %{name}.sysconfig
 Source3:       http://downloads.digium.com/pub/telephony/sounds/releases/asterisk-core-sounds-en-gsm-1.4.6.tar.gz
@@ -37,6 +39,7 @@ Patch0:               %{name}-m4.patch
 Patch1:                %{name}-configure.patch
 Patch2:                %{name}-no_k6_on_sparc.patch
 Patch3:                %{name}-lib.patch
+Patch4:                %{name}-external-libedit.patch
 Source10:      http://soft-switch.org/downloads/spandsp/spandsp-%{_spandsp_version}/asterisk-1.2.x/app_txfax.c
 # Source10-md5:        8c8fcb263b76897022b4c28052a7b439
 Source11:      http://soft-switch.org/downloads/spandsp/spandsp-%{_spandsp_version}/asterisk-1.2.x/app_rxfax.c
@@ -56,11 +59,17 @@ BuildRequires:      autoconf
 BuildRequires: automake
 BuildRequires: bison
 %{?with_bluetooth:BuildRequires: bluez-devel}
+%if %{with zaptel}
+BuildRequires: zaptel-devel >= 1.2.10
+%else
+BuildRequires: dahdi-linux-devel
+%endif
 BuildRequires: freetds >= 0.63
 BuildRequires: gawk
 BuildRequires: gcc >= 5:3.4
 BuildRequires: iksemel-devel
 BuildRequires: imap-static
+BuildRequires: libedit-devel
 BuildRequires: mysql-devel
 BuildRequires: ncurses-devel
 BuildRequires: openssl-devel >= 0.9.7d
@@ -69,10 +78,11 @@ BuildRequires:      sed >= 4.0
 %{?with_rxfax:BuildRequires:   spandsp-devel-%{_spandsp_version}}
 BuildRequires: speex-devel
 BuildRequires: unixODBC-devel
-BuildRequires: zaptel-devel >= 1.2.10
 BuildRequires: zlib-devel
+%if %{with h323}
 BuildRequires: openh323-devel
 BuildRequires: pwlib-devel
+%endif
 %if %{with bristuff}
 BuildRequires: libgsmat-devel
 BuildRequires: libpri-bristuff-devel >= 1.2.4
@@ -81,8 +91,10 @@ BuildRequires:  libpri-devel >= 1.2.4
 %endif
 Requires(post,preun):  /sbin/chkconfig
 Requires:      rc-scripts
+%if %{with h323}
 %requires_eq   openh323
 %requires_eq   pwlib
+%endif
 BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
 %description
@@ -146,6 +158,7 @@ Pliki przykładowe dla centralki Asterisk.
 #%patch6 -p1
 #%patch7 -p1
 #%patch9 -p1
+%patch4 -p1
 
 %if %{with rxfax}
 cd apps
@@ -179,13 +192,24 @@ rm -f pbx/.depend
 %{__autoheader}
 %{__autoconf}
 
-CPPFLAGS="-I/usr/include/openh323"; export CPPFLAGS
+CPPFLAGS="%{rpmcppflags} -I/usr/include/imap"; export CPPFLAGS
+%if %{with h323}
+CPPFLAGS="$CPPFLAGS -I/usr/include/openh323"; export CPPFLAGS
+%endif
 %configure \
+%if %{with zaptel}
        --with-zaptel=%{_prefix} \
        --without-dahdi \
+%else
+       --with-dahdi=%{_prefix} \
+       --without-zaptel \
+%endif
+       --without-osptk \
+       %{!?with_h323:--without-h323} \
        %{?with_bristuff:--with-gsmat=%{_prefix}} \
        --with-imap="`pwd`"/imap
 
+
 # safe checks
 %{?with_bristuff:grep '^#define HAVE_GSMAT 1' include/asterisk/autoconfig.h || exit 1}
 
This page took 0.168309 seconds and 4 git commands to generate.