Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 18 Jul 2012 22:57:42 +0000 (UTC)
From:      Florian Smeets <flo@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r301132 - head/net/asterisk
Message-ID:  <201207182257.q6IMvg2G019572@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: flo
Date: Wed Jul 18 22:57:42 2012
New Revision: 301132
URL: http://svn.freebsd.org/changeset/ports/301132

Log:
  - fix a logic bug in the DAHDI and H323 options, the logic was the wrong way
    around. Selecting the option turned it off and vice versa. [1]
  - bump PORTREVISION
  - remove remnants of old options framework
  
  Reported by:	Attila Bogar <attila.bogar@gmail.com> [1]
  		David Froehlich <dfroe@gmx.de> [1]

Modified:
  head/net/asterisk/Makefile   (contents, props changed)

Modified: head/net/asterisk/Makefile
==============================================================================
--- head/net/asterisk/Makefile	Wed Jul 18 22:56:35 2012	(r301131)
+++ head/net/asterisk/Makefile	Wed Jul 18 22:57:42 2012	(r301132)
@@ -7,6 +7,7 @@
 
 PORTNAME=	asterisk
 PORTVERSION=	1.8.14.1
+PORTREVISION=	1
 CATEGORIES=	net
 MASTER_SITES=	http://downloads.asterisk.org/pub/telephony/asterisk/ \
 		http://downloads.asterisk.org/pub/telephony/asterisk/old-releases/
@@ -81,9 +82,6 @@ VARDIR=${PREFIX}/var
 OPTIONS_DEFINE+=	DAHDI
 OPTIONS_DEFAULT+=	DAHDI
 DAHDI_DESC?=	DAHDI support
-
-# Include this since we have altered OPTIONS.
-.include <bsd.port.options.mk>
 .endif
 
 SUB_LIST+=	ASTERISK_USER=${ASTERISK_USER}
@@ -92,25 +90,25 @@ PLIST_SUB+=	ASTERISK_GROUP=${ASTERISK_GR
 PLIST_SUB+=	VARDIR=${VARDIR}
 
 .if ${PORT_OPTIONS:MH323}
-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
+.else
+PLIST_SUB+=	WITH_H323="@comment "
+CONFIGURE_ARGS+=	--without-h323
 .endif
 
 .if ${PORT_OPTIONS:MDAHDI}
-PLIST_SUB+=	WITH_DAHDI="@comment "
-CONFIGURE_ARGS+=	--without-dahdi --without-openr2
-.else
 PLIST_SUB+=	WITH_DAHDI=""
 CONFIGURE_ARGS+=	--with-dahdi --with-openr2
 BUILD_DEPENDS+=	libpri>=1.4.10:${PORTSDIR}/misc/libpri \
 		${LOCALBASE}/include/dahdi/user.h:${PORTSDIR}/misc/dahdi
 LIB_DEPENDS+=	pri.1:${PORTSDIR}/misc/libpri\
 		openr2.4:${PORTSDIR}/misc/openr2
+.else
+PLIST_SUB+=	WITH_DAHDI="@comment "
+CONFIGURE_ARGS+=	--without-dahdi --without-openr2
 .endif
 
 #



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201207182257.q6IMvg2G019572>