Index: head/net/asterisk/Makefile =================================================================== --- head/net/asterisk/Makefile (revision 209323) +++ head/net/asterisk/Makefile (revision 209324) @@ -1,172 +1,172 @@ # New ports collection makefile for: asterisk # Date created: 17 October 2003 # Whom: Maxim Sobolev # # $FreeBSD$ # PORTNAME= asterisk -PORTVERSION= 1.4.18 +PORTVERSION= 1.4.18.1 CATEGORIES= net MASTER_SITES= http://ftp.digium.com/pub/asterisk/ \ http://ftp.digium.com/pub/asterisk/old-releases/ MAINTAINER= sobomax@FreeBSD.org COMMENT= An Open Source PBX and telephony toolkit BUILD_DEPENDS= mpg123:${PORTSDIR}/audio/mpg123 LIB_DEPENDS= speex.1:${PORTSDIR}/audio/speex \ newt.51:${PORTSDIR}/devel/newt \ gsm.1:${PORTSDIR}/audio/gsm \ curl.4:${PORTSDIR}/ftp/curl RUN_DEPENDS= mpg123:${PORTSDIR}/audio/mpg123 ONLY_FOR_ARCHS= i386 sparc64 amd64 powerpc GNU_CONFIGURE= yes CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${LOCALBASE}/include/openh323" \ LDFLAGS="-L${LOCALBASE}/lib" CONFIGURE_ARGS= --with-gsm=${LOCALBASE} CPPFLAGS= -I${LOCALBASE}/include -I${LOCALBASE}/include/openh323 USE_GMAKE= yes USE_BISON= build USE_RC_SUBR= asterisk.sh MAKE_ENV= PTHREAD_CFLAGS="${PTHREAD_CFLAGS}" \ PTHREAD_LIBS="${PTHREAD_LIBS}" \ MKDIR="${MKDIR}" \ PWLIBDIR=${LOCALBASE}/share/pwlib \ OPENH323DIR=${LOCALBASE}/share/openh323 \ OSVERSION=${OSVERSION} \ CXX="${CXX}" MAN8= asterisk.8 astgenkey.8 autosupport.8 safe_asterisk.8 OPTIONS= OGGVORBIS "Enable Ogg Vorbis support" on \ ODBC "Enable ODBC support" on \ POSTGRES "Enable PostgreSQL support" on \ RADIUS "Enable RADIUS accounting support" on \ SNMP "Enable SNMP support" on \ H323 "Enable H.323 support" on \ FREETDS "Enable FreeTDS support" on \ JABBER "Enable Jabber and Gtalk support" on \ SQLITE "Enable SQLITE support" on \ CODEC_PATCH "Apply codec negotiation patch" off .include .if ${ARCH} == "i386" || ${ARCH} == "amd64" OPTIONS+= ZAPTEL "Enable Zaptel support" off .else WITHOUT_ZAPTEL= yes .endif .if defined(WITHOUT_H323) PLIST_SUB+= WITH_H323="@comment " CONFIGURE_ARGS+= --without-h323 .else PLIST_SUB+= WITH_H323="" CONFIGURE_ARGS+= --with-h323=${LOCALBASE} LIB_DEPENDS+= pt_r.1:${PORTSDIR}/devel/pwlib \ h323_r.1:${PORTSDIR}/net/openh323 .endif .if defined(WITHOUT_ZAPTEL) PLIST_SUB+= WITH_ZAPTEL="@comment " CONFIGURE_ARGS+= --without-zaptel .else PLIST_SUB+= WITH_ZAPTEL="" CONFIGURE_ARGS+= --with-zaptel BUILD_DEPENDS+= libpri>=1.2.0:${PORTSDIR}/misc/libpri \ ${LOCALBASE}/include/zaptel/zaptel.h:${PORTSDIR}/misc/zaptel LIB_DEPENDS+= pri.1:${PORTSDIR}/misc/libpri RUN_DEPENDS+= ${LOCALBASE}/include/zaptel/zaptel.h:${PORTSDIR}/misc/zaptel .endif # # WITH_FREETDS, WITH_PGSQL and WITH_SQLITE can also be added to MAKE_ENV # similarly .if defined(WITHOUT_ODBC) PLIST_SUB+= WITH_ODBC="@comment " CONFIGURE_ARGS+= --without-odbc .else PLIST_SUB+= WITH_ODBC="" CONFIGURE_ARGS+= --with-odbc --with-ltdl LIB_DEPENDS+= odbc.1:${PORTSDIR}/databases/unixODBC \ ltdl.4:${PORTSDIR}/devel/libltdl15 .endif .if defined(WITHOUT_FREETDS) PLIST_SUB+= WITH_FREETDS="@comment " CONFIGURE_ARGS+= --without-tds .else PLIST_SUB+= WITH_FREETDS="" CONFIGURE_ARGS+= --with-tds=${LOCALBASE} LIB_DEPENDS+= tds.5:${PORTSDIR}/databases/freetds .endif .if defined(WITHOUT_POSTGRES) PLIST_SUB+= WITH_POSTGRES="@comment " CONFIGURE_ARGS+= --without-postgres .else PLIST_SUB+= WITH_POSTGRES="" USE_PGSQL= yes CONFIGURE_ARGS+= --with-postgres .endif .if defined(WITHOUT_OGGVORBIS) PLIST_SUB+= WITH_OGGVORBIS="@comment " CONFIGURE_ARGS+= --without-ogg .else PLIST_SUB+= WITH_OGGVORBIS="" CONFIGURE_ARGS+= --with-ogg LIB_DEPENDS+= vorbis.4:${PORTSDIR}/audio/libvorbis .endif .if defined(WITHOUT_RADIUS) PLIST_SUB+= WITH_RADIUS="@comment " CONFIGURE_ARGS+= --without-radius .else PLIST_SUB+= WITH_RADIUS="" CONFIGURE_ARGS+= --with-radius LIB_DEPENDS+= radiusclient-ng.2:${PORTSDIR}/net/radiusclient .endif .if defined(WITHOUT_SNMP) PLIST_SUB+= WITH_SNMP="@comment " CONFIGURE_ARGS+= --without-netsnmp .else PLIST_SUB+= WITH_SNMP="" CONFIGURE_ARGS+= --with-netsnmp LIB_DEPENDS+= netsnmp.10:${PORTSDIR}/net-mgmt/net-snmp .endif .if defined(WITHOUT_JABBER) PLIST_SUB+= WITH_JABBER="@comment " CONFIGURE_ARGS+= --without-iksemel .else PLIST_SUB+= WITH_JABBER="" CONFIGURE_ARGS+= --with-iksemel LIB_DEPENDS+= iksemel.4:${PORTSDIR}/textproc/iksemel .endif .if defined(WITHOUT_SQLITE) PLIST_SUB+= WITH_SQLITE="@comment " CONFIGURE_ARGS+= --without-sqlite .else PLIST_SUB+= WITH_SQLITE="" CONFIGURE_ARGS+= --with-sqlite LIB_DEPENDS+= sqlite:${PORTSDIR}/databases/sqlite2 .endif .if defined(WITH_CODEC_PATCH) PATCHFILES= asterisk-1.4.18-codec-negotiation-20080313.diff.gz PATCH_SITES= http://b2bua.org/chrome/site/ EXTRA_PATCHES+= ${PATCHDIR}/codecnego-patch-Makefile .else EXTRA_PATCHES+= ${PATCHDIR}/nocodecnego-patch-Makefile .endif post-patch: ${REINPLACE_CMD} -e 's|/var/lib|${PREFIX}/share|g' ${WRKSRC}/configs/musiconhold.conf.sample .include Property changes on: head/net/asterisk/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.94 \ No newline at end of property +1.95 \ No newline at end of property Index: head/net/asterisk/distinfo =================================================================== --- head/net/asterisk/distinfo (revision 209323) +++ head/net/asterisk/distinfo (revision 209324) @@ -1,6 +1,6 @@ -MD5 (asterisk-1.4.18.tar.gz) = 3d8b2b2ef4f202901771663b40f19c3d -SHA256 (asterisk-1.4.18.tar.gz) = 4209e3cda5be25b5a9834599090c4a2ba478acb6670a11581766b480d856108f -SIZE (asterisk-1.4.18.tar.gz) = 11496828 +MD5 (asterisk-1.4.18.1.tar.gz) = a0d7ee4054a04529b745e60dd4e750c4 +SHA256 (asterisk-1.4.18.1.tar.gz) = 5ed2e8b66fc8ac96e516b0ddfea065012e39ef51c8f35ed69c6d7cd74e180d78 +SIZE (asterisk-1.4.18.1.tar.gz) = 11488923 MD5 (asterisk-1.4.18-codec-negotiation-20080313.diff.gz) = c2bc3b82217383936961a61b239e4635 SHA256 (asterisk-1.4.18-codec-negotiation-20080313.diff.gz) = 6a6ec9436de24e8c35d5922f7116e65e08052bc6bef6ecc12790736bcf058af5 SIZE (asterisk-1.4.18-codec-negotiation-20080313.diff.gz) = 38966 Property changes on: head/net/asterisk/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.35 \ No newline at end of property +1.36 \ No newline at end of property Index: head/net/asterisk10/Makefile =================================================================== --- head/net/asterisk10/Makefile (revision 209323) +++ head/net/asterisk10/Makefile (revision 209324) @@ -1,172 +1,172 @@ # New ports collection makefile for: asterisk # Date created: 17 October 2003 # Whom: Maxim Sobolev # # $FreeBSD$ # PORTNAME= asterisk -PORTVERSION= 1.4.18 +PORTVERSION= 1.4.18.1 CATEGORIES= net MASTER_SITES= http://ftp.digium.com/pub/asterisk/ \ http://ftp.digium.com/pub/asterisk/old-releases/ MAINTAINER= sobomax@FreeBSD.org COMMENT= An Open Source PBX and telephony toolkit BUILD_DEPENDS= mpg123:${PORTSDIR}/audio/mpg123 LIB_DEPENDS= speex.1:${PORTSDIR}/audio/speex \ newt.51:${PORTSDIR}/devel/newt \ gsm.1:${PORTSDIR}/audio/gsm \ curl.4:${PORTSDIR}/ftp/curl RUN_DEPENDS= mpg123:${PORTSDIR}/audio/mpg123 ONLY_FOR_ARCHS= i386 sparc64 amd64 powerpc GNU_CONFIGURE= yes CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${LOCALBASE}/include/openh323" \ LDFLAGS="-L${LOCALBASE}/lib" CONFIGURE_ARGS= --with-gsm=${LOCALBASE} CPPFLAGS= -I${LOCALBASE}/include -I${LOCALBASE}/include/openh323 USE_GMAKE= yes USE_BISON= build USE_RC_SUBR= asterisk.sh MAKE_ENV= PTHREAD_CFLAGS="${PTHREAD_CFLAGS}" \ PTHREAD_LIBS="${PTHREAD_LIBS}" \ MKDIR="${MKDIR}" \ PWLIBDIR=${LOCALBASE}/share/pwlib \ OPENH323DIR=${LOCALBASE}/share/openh323 \ OSVERSION=${OSVERSION} \ CXX="${CXX}" MAN8= asterisk.8 astgenkey.8 autosupport.8 safe_asterisk.8 OPTIONS= OGGVORBIS "Enable Ogg Vorbis support" on \ ODBC "Enable ODBC support" on \ POSTGRES "Enable PostgreSQL support" on \ RADIUS "Enable RADIUS accounting support" on \ SNMP "Enable SNMP support" on \ H323 "Enable H.323 support" on \ FREETDS "Enable FreeTDS support" on \ JABBER "Enable Jabber and Gtalk support" on \ SQLITE "Enable SQLITE support" on \ CODEC_PATCH "Apply codec negotiation patch" off .include .if ${ARCH} == "i386" || ${ARCH} == "amd64" OPTIONS+= ZAPTEL "Enable Zaptel support" off .else WITHOUT_ZAPTEL= yes .endif .if defined(WITHOUT_H323) PLIST_SUB+= WITH_H323="@comment " CONFIGURE_ARGS+= --without-h323 .else PLIST_SUB+= WITH_H323="" CONFIGURE_ARGS+= --with-h323=${LOCALBASE} LIB_DEPENDS+= pt_r.1:${PORTSDIR}/devel/pwlib \ h323_r.1:${PORTSDIR}/net/openh323 .endif .if defined(WITHOUT_ZAPTEL) PLIST_SUB+= WITH_ZAPTEL="@comment " CONFIGURE_ARGS+= --without-zaptel .else PLIST_SUB+= WITH_ZAPTEL="" CONFIGURE_ARGS+= --with-zaptel BUILD_DEPENDS+= libpri>=1.2.0:${PORTSDIR}/misc/libpri \ ${LOCALBASE}/include/zaptel/zaptel.h:${PORTSDIR}/misc/zaptel LIB_DEPENDS+= pri.1:${PORTSDIR}/misc/libpri RUN_DEPENDS+= ${LOCALBASE}/include/zaptel/zaptel.h:${PORTSDIR}/misc/zaptel .endif # # WITH_FREETDS, WITH_PGSQL and WITH_SQLITE can also be added to MAKE_ENV # similarly .if defined(WITHOUT_ODBC) PLIST_SUB+= WITH_ODBC="@comment " CONFIGURE_ARGS+= --without-odbc .else PLIST_SUB+= WITH_ODBC="" CONFIGURE_ARGS+= --with-odbc --with-ltdl LIB_DEPENDS+= odbc.1:${PORTSDIR}/databases/unixODBC \ ltdl.4:${PORTSDIR}/devel/libltdl15 .endif .if defined(WITHOUT_FREETDS) PLIST_SUB+= WITH_FREETDS="@comment " CONFIGURE_ARGS+= --without-tds .else PLIST_SUB+= WITH_FREETDS="" CONFIGURE_ARGS+= --with-tds=${LOCALBASE} LIB_DEPENDS+= tds.5:${PORTSDIR}/databases/freetds .endif .if defined(WITHOUT_POSTGRES) PLIST_SUB+= WITH_POSTGRES="@comment " CONFIGURE_ARGS+= --without-postgres .else PLIST_SUB+= WITH_POSTGRES="" USE_PGSQL= yes CONFIGURE_ARGS+= --with-postgres .endif .if defined(WITHOUT_OGGVORBIS) PLIST_SUB+= WITH_OGGVORBIS="@comment " CONFIGURE_ARGS+= --without-ogg .else PLIST_SUB+= WITH_OGGVORBIS="" CONFIGURE_ARGS+= --with-ogg LIB_DEPENDS+= vorbis.4:${PORTSDIR}/audio/libvorbis .endif .if defined(WITHOUT_RADIUS) PLIST_SUB+= WITH_RADIUS="@comment " CONFIGURE_ARGS+= --without-radius .else PLIST_SUB+= WITH_RADIUS="" CONFIGURE_ARGS+= --with-radius LIB_DEPENDS+= radiusclient-ng.2:${PORTSDIR}/net/radiusclient .endif .if defined(WITHOUT_SNMP) PLIST_SUB+= WITH_SNMP="@comment " CONFIGURE_ARGS+= --without-netsnmp .else PLIST_SUB+= WITH_SNMP="" CONFIGURE_ARGS+= --with-netsnmp LIB_DEPENDS+= netsnmp.10:${PORTSDIR}/net-mgmt/net-snmp .endif .if defined(WITHOUT_JABBER) PLIST_SUB+= WITH_JABBER="@comment " CONFIGURE_ARGS+= --without-iksemel .else PLIST_SUB+= WITH_JABBER="" CONFIGURE_ARGS+= --with-iksemel LIB_DEPENDS+= iksemel.4:${PORTSDIR}/textproc/iksemel .endif .if defined(WITHOUT_SQLITE) PLIST_SUB+= WITH_SQLITE="@comment " CONFIGURE_ARGS+= --without-sqlite .else PLIST_SUB+= WITH_SQLITE="" CONFIGURE_ARGS+= --with-sqlite LIB_DEPENDS+= sqlite:${PORTSDIR}/databases/sqlite2 .endif .if defined(WITH_CODEC_PATCH) PATCHFILES= asterisk-1.4.18-codec-negotiation-20080313.diff.gz PATCH_SITES= http://b2bua.org/chrome/site/ EXTRA_PATCHES+= ${PATCHDIR}/codecnego-patch-Makefile .else EXTRA_PATCHES+= ${PATCHDIR}/nocodecnego-patch-Makefile .endif post-patch: ${REINPLACE_CMD} -e 's|/var/lib|${PREFIX}/share|g' ${WRKSRC}/configs/musiconhold.conf.sample .include Property changes on: head/net/asterisk10/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.94 \ No newline at end of property +1.95 \ No newline at end of property Index: head/net/asterisk10/distinfo =================================================================== --- head/net/asterisk10/distinfo (revision 209323) +++ head/net/asterisk10/distinfo (revision 209324) @@ -1,6 +1,6 @@ -MD5 (asterisk-1.4.18.tar.gz) = 3d8b2b2ef4f202901771663b40f19c3d -SHA256 (asterisk-1.4.18.tar.gz) = 4209e3cda5be25b5a9834599090c4a2ba478acb6670a11581766b480d856108f -SIZE (asterisk-1.4.18.tar.gz) = 11496828 +MD5 (asterisk-1.4.18.1.tar.gz) = a0d7ee4054a04529b745e60dd4e750c4 +SHA256 (asterisk-1.4.18.1.tar.gz) = 5ed2e8b66fc8ac96e516b0ddfea065012e39ef51c8f35ed69c6d7cd74e180d78 +SIZE (asterisk-1.4.18.1.tar.gz) = 11488923 MD5 (asterisk-1.4.18-codec-negotiation-20080313.diff.gz) = c2bc3b82217383936961a61b239e4635 SHA256 (asterisk-1.4.18-codec-negotiation-20080313.diff.gz) = 6a6ec9436de24e8c35d5922f7116e65e08052bc6bef6ecc12790736bcf058af5 SIZE (asterisk-1.4.18-codec-negotiation-20080313.diff.gz) = 38966 Property changes on: head/net/asterisk10/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.35 \ No newline at end of property +1.36 \ No newline at end of property Index: head/net/asterisk12/Makefile =================================================================== --- head/net/asterisk12/Makefile (revision 209323) +++ head/net/asterisk12/Makefile (revision 209324) @@ -1,107 +1,107 @@ # New ports collection makefile for: asterisk # Date created: 17 October 2003 # Whom: Maxim Sobolev # # $FreeBSD$ # PORTNAME= asterisk -PORTVERSION= 1.2.26.1 +PORTVERSION= 1.2.27 PKGNAMESUFFIX= 12 CATEGORIES= net MASTER_SITES= http://ftp.digium.com/pub/asterisk/ \ http://ftp.digium.com/pub/asterisk/old-releases/ PATCHFILES= asterisk-1.2.26.1-codec-negotiation-20080118.diff.gz PATCH_SITES= http://b2bua.org/chrome/site/ # ${PORTNAME}-1.2.4-${BRIVER}.patch.gz:bristuff # ${MASTER_SITE_LOCAL:S,$,:bristuff,} #PATCH_SITE_SUBDIR= fjoe/:bristuff #BRIVER= bristuff-0.3.0-PRE-1l MAINTAINER= sobomax@FreeBSD.org COMMENT= An Open Source PBX and telephony toolkit BUILD_DEPENDS= mpg123:${PORTSDIR}/audio/mpg123 LIB_DEPENDS= speex.1:${PORTSDIR}/audio/speex \ newt.51:${PORTSDIR}/devel/newt \ curl.4:${PORTSDIR}/ftp/curl RUN_DEPENDS= mpg123:${PORTSDIR}/audio/mpg123 ONLY_FOR_ARCHS= i386 sparc64 amd64 GNU_CONFIGURE= yes CONFIGURE_WRKSRC= ${WRKSRC}/editline USE_GMAKE= yes USE_BISON= build USE_RC_SUBR= asterisk.sh MAKE_ENV= PTHREAD_CFLAGS="${PTHREAD_CFLAGS}" \ PTHREAD_LIBS="${PTHREAD_LIBS}" \ MKDIR="${MKDIR}" \ PWLIBDIR=${LOCALBASE}/share/pwlib \ OPENH323DIR=${LOCALBASE}/share/openh323 \ OSVERSION=${OSVERSION} \ CXX="${CXX}" PLIST_SUB= BRISTUFF="@comment " MAN8= asterisk.8 astgenkey.8 autosupport.8 safe_asterisk.8 WITHOUT_FAX= yes # Doesn't build with spandsp-0.0.3. .include .if ${ARCH} != "i386" WITHOUT_ZAPTEL= 1 .endif .if defined(WITHOUT_H323) PLIST_SUB+= WITH_H323="@comment " .else LIB_DEPENDS+= pt_r.1:${PORTSDIR}/devel/pwlib\ h323_r.1:${PORTSDIR}/net/openh323 PLIST_SUB+= WITH_H323="" MAKE_ENV+= WITH_H323=1 .endif .if defined(WITHOUT_ZAPTEL) PLIST_SUB+= WITH_ZAPTEL="@comment " MAKE_ENV+= WITHOUT_ZAPTEL=1 .else BUILD_DEPENDS+= libpri>=1.2.0:${PORTSDIR}/misc/libpri \ ${LOCALBASE}/include/zaptel/zaptel.h:${PORTSDIR}/misc/zaptel LIB_DEPENDS+= pri.1:${PORTSDIR}/misc/libpri RUN_DEPENDS+= ${LOCALBASE}/include/zaptel/zaptel.h:${PORTSDIR}/misc/zaptel PLIST_SUB+= WITH_ZAPTEL="" MAKE_ENV+= WITH_ZAPTEL=1 .endif # # WITH_FREETDS, WITH_PGSQL and WITH_SQLITE can also be added to MAKE_ENV # similarly .if defined(WITHOUT_ODBC) PLIST_SUB+= WITH_ODBC="@comment " .else LIB_DEPENDS+= odbc.1:${PORTSDIR}/databases/unixODBC PLIST_SUB+= WITH_ODBC="" MAKE_ENV+= WITH_ODBC=1 .endif .if defined(WITHOUT_FREETDS) PLIST_SUB+= WITH_FREETDS="@comment " .else LIB_DEPENDS+= tds.5:${PORTSDIR}/databases/freetds PLIST_SUB+= WITH_FREETDS="" MAKE_ENV+= WITH_FREETDS=1 .endif .if defined(WITHOUT_FAX) PLIST_SUB+= WITH_FAX="@comment " .else MAKE_ENV+= WITH_FAX=1 LIB_DEPENDS+= spandsp.0:${PORTSDIR}/comms/spandsp PLIST_SUB+= WITH_FAX="" .endif post-patch: ${REINPLACE_CMD} -e 's|/var/lib|${PREFIX}/share|g' ${WRKSRC}/configs/musiconhold.conf.sample .include Property changes on: head/net/asterisk12/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.75 \ No newline at end of property +1.76 \ No newline at end of property Index: head/net/asterisk12/distinfo =================================================================== --- head/net/asterisk12/distinfo (revision 209323) +++ head/net/asterisk12/distinfo (revision 209324) @@ -1,6 +1,6 @@ -MD5 (asterisk-1.2.26.1.tar.gz) = be8d2922d31e4937a47857c4596f73f6 -SHA256 (asterisk-1.2.26.1.tar.gz) = df4c30c32fe42d45221ec1f8e34c2842452772c241117fe87a84b9398789d07d -SIZE (asterisk-1.2.26.1.tar.gz) = 10645313 +MD5 (asterisk-1.2.27.tar.gz) = b4bbd660472e56e2f80e0c0391e64b10 +SHA256 (asterisk-1.2.27.tar.gz) = 2407996df3487060b9db1a4ca73f405b633a802ba9c1454f7f3ccaaa856971e6 +SIZE (asterisk-1.2.27.tar.gz) = 10645295 MD5 (asterisk-1.2.26.1-codec-negotiation-20080118.diff.gz) = 2ae6d6cc44fdd89dab804bcf6ac79579 SHA256 (asterisk-1.2.26.1-codec-negotiation-20080118.diff.gz) = d489cf3921d0ff11571afd273b4cbd02b0e8ba5f225ac4c6fd6fc85a0de54f6b SIZE (asterisk-1.2.26.1-codec-negotiation-20080118.diff.gz) = 33572 Property changes on: head/net/asterisk12/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.26 \ No newline at end of property +1.27 \ No newline at end of property Index: head/net/asterisk14/Makefile =================================================================== --- head/net/asterisk14/Makefile (revision 209323) +++ head/net/asterisk14/Makefile (revision 209324) @@ -1,172 +1,172 @@ # New ports collection makefile for: asterisk # Date created: 17 October 2003 # Whom: Maxim Sobolev # # $FreeBSD$ # PORTNAME= asterisk -PORTVERSION= 1.4.18 +PORTVERSION= 1.4.18.1 CATEGORIES= net MASTER_SITES= http://ftp.digium.com/pub/asterisk/ \ http://ftp.digium.com/pub/asterisk/old-releases/ MAINTAINER= sobomax@FreeBSD.org COMMENT= An Open Source PBX and telephony toolkit BUILD_DEPENDS= mpg123:${PORTSDIR}/audio/mpg123 LIB_DEPENDS= speex.1:${PORTSDIR}/audio/speex \ newt.51:${PORTSDIR}/devel/newt \ gsm.1:${PORTSDIR}/audio/gsm \ curl.4:${PORTSDIR}/ftp/curl RUN_DEPENDS= mpg123:${PORTSDIR}/audio/mpg123 ONLY_FOR_ARCHS= i386 sparc64 amd64 powerpc GNU_CONFIGURE= yes CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${LOCALBASE}/include/openh323" \ LDFLAGS="-L${LOCALBASE}/lib" CONFIGURE_ARGS= --with-gsm=${LOCALBASE} CPPFLAGS= -I${LOCALBASE}/include -I${LOCALBASE}/include/openh323 USE_GMAKE= yes USE_BISON= build USE_RC_SUBR= asterisk.sh MAKE_ENV= PTHREAD_CFLAGS="${PTHREAD_CFLAGS}" \ PTHREAD_LIBS="${PTHREAD_LIBS}" \ MKDIR="${MKDIR}" \ PWLIBDIR=${LOCALBASE}/share/pwlib \ OPENH323DIR=${LOCALBASE}/share/openh323 \ OSVERSION=${OSVERSION} \ CXX="${CXX}" MAN8= asterisk.8 astgenkey.8 autosupport.8 safe_asterisk.8 OPTIONS= OGGVORBIS "Enable Ogg Vorbis support" on \ ODBC "Enable ODBC support" on \ POSTGRES "Enable PostgreSQL support" on \ RADIUS "Enable RADIUS accounting support" on \ SNMP "Enable SNMP support" on \ H323 "Enable H.323 support" on \ FREETDS "Enable FreeTDS support" on \ JABBER "Enable Jabber and Gtalk support" on \ SQLITE "Enable SQLITE support" on \ CODEC_PATCH "Apply codec negotiation patch" off .include .if ${ARCH} == "i386" || ${ARCH} == "amd64" OPTIONS+= ZAPTEL "Enable Zaptel support" off .else WITHOUT_ZAPTEL= yes .endif .if defined(WITHOUT_H323) PLIST_SUB+= WITH_H323="@comment " CONFIGURE_ARGS+= --without-h323 .else PLIST_SUB+= WITH_H323="" CONFIGURE_ARGS+= --with-h323=${LOCALBASE} LIB_DEPENDS+= pt_r.1:${PORTSDIR}/devel/pwlib \ h323_r.1:${PORTSDIR}/net/openh323 .endif .if defined(WITHOUT_ZAPTEL) PLIST_SUB+= WITH_ZAPTEL="@comment " CONFIGURE_ARGS+= --without-zaptel .else PLIST_SUB+= WITH_ZAPTEL="" CONFIGURE_ARGS+= --with-zaptel BUILD_DEPENDS+= libpri>=1.2.0:${PORTSDIR}/misc/libpri \ ${LOCALBASE}/include/zaptel/zaptel.h:${PORTSDIR}/misc/zaptel LIB_DEPENDS+= pri.1:${PORTSDIR}/misc/libpri RUN_DEPENDS+= ${LOCALBASE}/include/zaptel/zaptel.h:${PORTSDIR}/misc/zaptel .endif # # WITH_FREETDS, WITH_PGSQL and WITH_SQLITE can also be added to MAKE_ENV # similarly .if defined(WITHOUT_ODBC) PLIST_SUB+= WITH_ODBC="@comment " CONFIGURE_ARGS+= --without-odbc .else PLIST_SUB+= WITH_ODBC="" CONFIGURE_ARGS+= --with-odbc --with-ltdl LIB_DEPENDS+= odbc.1:${PORTSDIR}/databases/unixODBC \ ltdl.4:${PORTSDIR}/devel/libltdl15 .endif .if defined(WITHOUT_FREETDS) PLIST_SUB+= WITH_FREETDS="@comment " CONFIGURE_ARGS+= --without-tds .else PLIST_SUB+= WITH_FREETDS="" CONFIGURE_ARGS+= --with-tds=${LOCALBASE} LIB_DEPENDS+= tds.5:${PORTSDIR}/databases/freetds .endif .if defined(WITHOUT_POSTGRES) PLIST_SUB+= WITH_POSTGRES="@comment " CONFIGURE_ARGS+= --without-postgres .else PLIST_SUB+= WITH_POSTGRES="" USE_PGSQL= yes CONFIGURE_ARGS+= --with-postgres .endif .if defined(WITHOUT_OGGVORBIS) PLIST_SUB+= WITH_OGGVORBIS="@comment " CONFIGURE_ARGS+= --without-ogg .else PLIST_SUB+= WITH_OGGVORBIS="" CONFIGURE_ARGS+= --with-ogg LIB_DEPENDS+= vorbis.4:${PORTSDIR}/audio/libvorbis .endif .if defined(WITHOUT_RADIUS) PLIST_SUB+= WITH_RADIUS="@comment " CONFIGURE_ARGS+= --without-radius .else PLIST_SUB+= WITH_RADIUS="" CONFIGURE_ARGS+= --with-radius LIB_DEPENDS+= radiusclient-ng.2:${PORTSDIR}/net/radiusclient .endif .if defined(WITHOUT_SNMP) PLIST_SUB+= WITH_SNMP="@comment " CONFIGURE_ARGS+= --without-netsnmp .else PLIST_SUB+= WITH_SNMP="" CONFIGURE_ARGS+= --with-netsnmp LIB_DEPENDS+= netsnmp.10:${PORTSDIR}/net-mgmt/net-snmp .endif .if defined(WITHOUT_JABBER) PLIST_SUB+= WITH_JABBER="@comment " CONFIGURE_ARGS+= --without-iksemel .else PLIST_SUB+= WITH_JABBER="" CONFIGURE_ARGS+= --with-iksemel LIB_DEPENDS+= iksemel.4:${PORTSDIR}/textproc/iksemel .endif .if defined(WITHOUT_SQLITE) PLIST_SUB+= WITH_SQLITE="@comment " CONFIGURE_ARGS+= --without-sqlite .else PLIST_SUB+= WITH_SQLITE="" CONFIGURE_ARGS+= --with-sqlite LIB_DEPENDS+= sqlite:${PORTSDIR}/databases/sqlite2 .endif .if defined(WITH_CODEC_PATCH) PATCHFILES= asterisk-1.4.18-codec-negotiation-20080313.diff.gz PATCH_SITES= http://b2bua.org/chrome/site/ EXTRA_PATCHES+= ${PATCHDIR}/codecnego-patch-Makefile .else EXTRA_PATCHES+= ${PATCHDIR}/nocodecnego-patch-Makefile .endif post-patch: ${REINPLACE_CMD} -e 's|/var/lib|${PREFIX}/share|g' ${WRKSRC}/configs/musiconhold.conf.sample .include Property changes on: head/net/asterisk14/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.94 \ No newline at end of property +1.95 \ No newline at end of property Index: head/net/asterisk14/distinfo =================================================================== --- head/net/asterisk14/distinfo (revision 209323) +++ head/net/asterisk14/distinfo (revision 209324) @@ -1,6 +1,6 @@ -MD5 (asterisk-1.4.18.tar.gz) = 3d8b2b2ef4f202901771663b40f19c3d -SHA256 (asterisk-1.4.18.tar.gz) = 4209e3cda5be25b5a9834599090c4a2ba478acb6670a11581766b480d856108f -SIZE (asterisk-1.4.18.tar.gz) = 11496828 +MD5 (asterisk-1.4.18.1.tar.gz) = a0d7ee4054a04529b745e60dd4e750c4 +SHA256 (asterisk-1.4.18.1.tar.gz) = 5ed2e8b66fc8ac96e516b0ddfea065012e39ef51c8f35ed69c6d7cd74e180d78 +SIZE (asterisk-1.4.18.1.tar.gz) = 11488923 MD5 (asterisk-1.4.18-codec-negotiation-20080313.diff.gz) = c2bc3b82217383936961a61b239e4635 SHA256 (asterisk-1.4.18-codec-negotiation-20080313.diff.gz) = 6a6ec9436de24e8c35d5922f7116e65e08052bc6bef6ecc12790736bcf058af5 SIZE (asterisk-1.4.18-codec-negotiation-20080313.diff.gz) = 38966 Property changes on: head/net/asterisk14/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.35 \ No newline at end of property +1.36 \ No newline at end of property Index: head/net/asterisk16/Makefile =================================================================== --- head/net/asterisk16/Makefile (revision 209323) +++ head/net/asterisk16/Makefile (revision 209324) @@ -1,172 +1,172 @@ # New ports collection makefile for: asterisk # Date created: 17 October 2003 # Whom: Maxim Sobolev # # $FreeBSD$ # PORTNAME= asterisk -PORTVERSION= 1.4.18 +PORTVERSION= 1.4.18.1 CATEGORIES= net MASTER_SITES= http://ftp.digium.com/pub/asterisk/ \ http://ftp.digium.com/pub/asterisk/old-releases/ MAINTAINER= sobomax@FreeBSD.org COMMENT= An Open Source PBX and telephony toolkit BUILD_DEPENDS= mpg123:${PORTSDIR}/audio/mpg123 LIB_DEPENDS= speex.1:${PORTSDIR}/audio/speex \ newt.51:${PORTSDIR}/devel/newt \ gsm.1:${PORTSDIR}/audio/gsm \ curl.4:${PORTSDIR}/ftp/curl RUN_DEPENDS= mpg123:${PORTSDIR}/audio/mpg123 ONLY_FOR_ARCHS= i386 sparc64 amd64 powerpc GNU_CONFIGURE= yes CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${LOCALBASE}/include/openh323" \ LDFLAGS="-L${LOCALBASE}/lib" CONFIGURE_ARGS= --with-gsm=${LOCALBASE} CPPFLAGS= -I${LOCALBASE}/include -I${LOCALBASE}/include/openh323 USE_GMAKE= yes USE_BISON= build USE_RC_SUBR= asterisk.sh MAKE_ENV= PTHREAD_CFLAGS="${PTHREAD_CFLAGS}" \ PTHREAD_LIBS="${PTHREAD_LIBS}" \ MKDIR="${MKDIR}" \ PWLIBDIR=${LOCALBASE}/share/pwlib \ OPENH323DIR=${LOCALBASE}/share/openh323 \ OSVERSION=${OSVERSION} \ CXX="${CXX}" MAN8= asterisk.8 astgenkey.8 autosupport.8 safe_asterisk.8 OPTIONS= OGGVORBIS "Enable Ogg Vorbis support" on \ ODBC "Enable ODBC support" on \ POSTGRES "Enable PostgreSQL support" on \ RADIUS "Enable RADIUS accounting support" on \ SNMP "Enable SNMP support" on \ H323 "Enable H.323 support" on \ FREETDS "Enable FreeTDS support" on \ JABBER "Enable Jabber and Gtalk support" on \ SQLITE "Enable SQLITE support" on \ CODEC_PATCH "Apply codec negotiation patch" off .include .if ${ARCH} == "i386" || ${ARCH} == "amd64" OPTIONS+= ZAPTEL "Enable Zaptel support" off .else WITHOUT_ZAPTEL= yes .endif .if defined(WITHOUT_H323) PLIST_SUB+= WITH_H323="@comment " CONFIGURE_ARGS+= --without-h323 .else PLIST_SUB+= WITH_H323="" CONFIGURE_ARGS+= --with-h323=${LOCALBASE} LIB_DEPENDS+= pt_r.1:${PORTSDIR}/devel/pwlib \ h323_r.1:${PORTSDIR}/net/openh323 .endif .if defined(WITHOUT_ZAPTEL) PLIST_SUB+= WITH_ZAPTEL="@comment " CONFIGURE_ARGS+= --without-zaptel .else PLIST_SUB+= WITH_ZAPTEL="" CONFIGURE_ARGS+= --with-zaptel BUILD_DEPENDS+= libpri>=1.2.0:${PORTSDIR}/misc/libpri \ ${LOCALBASE}/include/zaptel/zaptel.h:${PORTSDIR}/misc/zaptel LIB_DEPENDS+= pri.1:${PORTSDIR}/misc/libpri RUN_DEPENDS+= ${LOCALBASE}/include/zaptel/zaptel.h:${PORTSDIR}/misc/zaptel .endif # # WITH_FREETDS, WITH_PGSQL and WITH_SQLITE can also be added to MAKE_ENV # similarly .if defined(WITHOUT_ODBC) PLIST_SUB+= WITH_ODBC="@comment " CONFIGURE_ARGS+= --without-odbc .else PLIST_SUB+= WITH_ODBC="" CONFIGURE_ARGS+= --with-odbc --with-ltdl LIB_DEPENDS+= odbc.1:${PORTSDIR}/databases/unixODBC \ ltdl.4:${PORTSDIR}/devel/libltdl15 .endif .if defined(WITHOUT_FREETDS) PLIST_SUB+= WITH_FREETDS="@comment " CONFIGURE_ARGS+= --without-tds .else PLIST_SUB+= WITH_FREETDS="" CONFIGURE_ARGS+= --with-tds=${LOCALBASE} LIB_DEPENDS+= tds.5:${PORTSDIR}/databases/freetds .endif .if defined(WITHOUT_POSTGRES) PLIST_SUB+= WITH_POSTGRES="@comment " CONFIGURE_ARGS+= --without-postgres .else PLIST_SUB+= WITH_POSTGRES="" USE_PGSQL= yes CONFIGURE_ARGS+= --with-postgres .endif .if defined(WITHOUT_OGGVORBIS) PLIST_SUB+= WITH_OGGVORBIS="@comment " CONFIGURE_ARGS+= --without-ogg .else PLIST_SUB+= WITH_OGGVORBIS="" CONFIGURE_ARGS+= --with-ogg LIB_DEPENDS+= vorbis.4:${PORTSDIR}/audio/libvorbis .endif .if defined(WITHOUT_RADIUS) PLIST_SUB+= WITH_RADIUS="@comment " CONFIGURE_ARGS+= --without-radius .else PLIST_SUB+= WITH_RADIUS="" CONFIGURE_ARGS+= --with-radius LIB_DEPENDS+= radiusclient-ng.2:${PORTSDIR}/net/radiusclient .endif .if defined(WITHOUT_SNMP) PLIST_SUB+= WITH_SNMP="@comment " CONFIGURE_ARGS+= --without-netsnmp .else PLIST_SUB+= WITH_SNMP="" CONFIGURE_ARGS+= --with-netsnmp LIB_DEPENDS+= netsnmp.10:${PORTSDIR}/net-mgmt/net-snmp .endif .if defined(WITHOUT_JABBER) PLIST_SUB+= WITH_JABBER="@comment " CONFIGURE_ARGS+= --without-iksemel .else PLIST_SUB+= WITH_JABBER="" CONFIGURE_ARGS+= --with-iksemel LIB_DEPENDS+= iksemel.4:${PORTSDIR}/textproc/iksemel .endif .if defined(WITHOUT_SQLITE) PLIST_SUB+= WITH_SQLITE="@comment " CONFIGURE_ARGS+= --without-sqlite .else PLIST_SUB+= WITH_SQLITE="" CONFIGURE_ARGS+= --with-sqlite LIB_DEPENDS+= sqlite:${PORTSDIR}/databases/sqlite2 .endif .if defined(WITH_CODEC_PATCH) PATCHFILES= asterisk-1.4.18-codec-negotiation-20080313.diff.gz PATCH_SITES= http://b2bua.org/chrome/site/ EXTRA_PATCHES+= ${PATCHDIR}/codecnego-patch-Makefile .else EXTRA_PATCHES+= ${PATCHDIR}/nocodecnego-patch-Makefile .endif post-patch: ${REINPLACE_CMD} -e 's|/var/lib|${PREFIX}/share|g' ${WRKSRC}/configs/musiconhold.conf.sample .include Property changes on: head/net/asterisk16/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.94 \ No newline at end of property +1.95 \ No newline at end of property Index: head/net/asterisk16/distinfo =================================================================== --- head/net/asterisk16/distinfo (revision 209323) +++ head/net/asterisk16/distinfo (revision 209324) @@ -1,6 +1,6 @@ -MD5 (asterisk-1.4.18.tar.gz) = 3d8b2b2ef4f202901771663b40f19c3d -SHA256 (asterisk-1.4.18.tar.gz) = 4209e3cda5be25b5a9834599090c4a2ba478acb6670a11581766b480d856108f -SIZE (asterisk-1.4.18.tar.gz) = 11496828 +MD5 (asterisk-1.4.18.1.tar.gz) = a0d7ee4054a04529b745e60dd4e750c4 +SHA256 (asterisk-1.4.18.1.tar.gz) = 5ed2e8b66fc8ac96e516b0ddfea065012e39ef51c8f35ed69c6d7cd74e180d78 +SIZE (asterisk-1.4.18.1.tar.gz) = 11488923 MD5 (asterisk-1.4.18-codec-negotiation-20080313.diff.gz) = c2bc3b82217383936961a61b239e4635 SHA256 (asterisk-1.4.18-codec-negotiation-20080313.diff.gz) = 6a6ec9436de24e8c35d5922f7116e65e08052bc6bef6ecc12790736bcf058af5 SIZE (asterisk-1.4.18-codec-negotiation-20080313.diff.gz) = 38966 Property changes on: head/net/asterisk16/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.35 \ No newline at end of property +1.36 \ No newline at end of property