3 ## Make sure we were called from Makefile
5 if [ "x$ASTERISKVERSIONNUM" = "x" ]; then
6 echo " ** Do not call this script directly"
10 ## Create a pkgconfig spec file for 3rd party modules (pkg-config asterisk --cflags)
12 if [ ! -d $PPATH ]; then
16 #Solaris (and some others) don't have sed -r. perl -p is equivalent
17 if [[ `echo "xxx" | sed -r 's/x/y/g' 2>/dev/null | ${GREP} -c "yyy"` != 0 ]]; then
23 ## Clean out CFLAGS for the spec file.
25 LOCAL_CFLAGS
=`echo $CFLAGS | ${EXTREGEX} 's/\s*-pipe\s*//g' | ${EXTREGEX} 's/-[Wmp]\S*\s*//g' | \
26 ${EXTREGEX} 's/-I(include|\.\.\/include) //g' | \
27 ${EXTREGEX} 's/-DINSTALL_PREFIX=\S* //g' | \
28 ${EXTREGEX} 's/-DASTERISK_VERSION=\S* //g' | \
29 ${EXTREGEX} 's/-DAST(ETCDIR|LIBDIR|VARLIBDIR|VARRUNDIR|SPOOLDIR|LOGDIR|CONFPATH|MODDIR|AGIDIR)=\S* //g'`
32 cat <<EOF > $PPATH/asterisk.pc
33 install_prefix=$INSTALL_PREFIX
34 version_number=$ASTERISKVERSIONNUM
37 varlibdir=$ASTVARLIBDIR
38 varrundir=$ASTVARRUNDIR
46 Description: Open Source PBX and telephony toolkit
47 Version: $ASTERISKVERSION