View | Details | Raw Unified | Return to bug 216463
Collapse All | Expand All

(-)Makefile (-13 / +12 lines)
Lines 47-56 Link Here
47
.if defined(LITE)
47
.if defined(LITE)
48
PKGNAMESUFFIX=		-lite
48
PKGNAMESUFFIX=		-lite
49
PLIST_SUB+=		${x:tu}="@comment $x not installed" \
49
PLIST_SUB+=		${x:tu}="@comment $x not installed" \
50
			${x:tu}_LIB="@comment %x not installed " \
50
			${x:tu}_LIB="@comment $x not installed " \
51
			${x:tu}_MAN="@comment $x not installed "
51
			${x:tu}_MAN="@comment $x not installed "
52
CONFIGURE_ARGS+=	--enable-$x=no
52
CONFIGURE_ARGS+=	--enable-$x=no
53
OPTIONS_EXCLUDE+=	RTP SNMP GEOIP LUA ADNS CARES
53
OPTIONS_EXCLUDE+=	RTP SNMP GEOIP LUA CARES ANDROIDDUMP
54
.else
54
.else
55
PLIST_SUB+=		${x:tu}=bin/$x \
55
PLIST_SUB+=		${x:tu}=bin/$x \
56
			${x:tu}_MAN="" \
56
			${x:tu}_MAN="" \
Lines 58-83 Link Here
58
.endif
58
.endif
59
.endfor
59
.endfor
60
60
61
OPTIONS_DEFINE=		RTP SNMP IPV6 GEOIP LUA DECRYPT
61
OPTIONS_DEFINE=		RTP SNMP IPV6 GEOIP LUA DECRYPT ANDROIDDUMP CARES
62
62
63
OPTIONS_RADIO=		ASYNCDNS GUI
63
OPTIONS_RADIO=		GUI
64
OPTIONS_SINGLE=		KERBEROS
64
OPTIONS_SINGLE=		KERBEROS
65
65
66
OPTIONS_RADIO_ASYNCDNS=	ADNS CARES
67
OPTIONS_RADIO_GUI=	GTK2 GTK3 QT5
66
OPTIONS_RADIO_GUI=	GTK2 GTK3 QT5
68
OPTIONS_SINGLE_KERBEROS=KRB_BASE KRB_HEIMDAL KRB_MIT KRB_NONE
67
OPTIONS_SINGLE_KERBEROS=KRB_BASE KRB_HEIMDAL KRB_MIT KRB_NONE
69
68
70
OPTIONS_DEFAULT?=	SNMP ADNS IPV6 GEOIP KRB_BASE GTK3 DECRYPT
69
OPTIONS_DEFAULT?=	SNMP IPV6 GEOIP KRB_BASE GTK3 DECRYPT
71
70
72
RTP_DESC=		Enable support for playing back RTP streams
71
RTP_DESC=		Enable support for playing back RTP streams
73
DECRYPT_DESC=		Decryption support for SSL and IPSec
72
DECRYPT_DESC=		Decryption support for SSL and IPSec
74
ASYNCDNS_DESC=		Asynchronous DNS lookup support
73
ANDROIDDUMP_DESC=	Build androiddump extcap tool 
75
ADNS_DESC=		Asynchronous DNS resolution via GNU adns
76
KERBEROS_DESC=		Kerberos dissection support
74
KERBEROS_DESC=		Kerberos dissection support
77
KRB_BASE_DESC=		Kerberos support via base system
75
KRB_BASE_DESC=		Kerberos support via base system
78
KRB_HEIMDAL_DESC=	Kerberos support via security/heimdal
76
KRB_HEIMDAL_DESC=	Kerberos support via security/heimdal
79
KRB_MIT_DESC=		Kerberos support via security/krb5
77
KRB_MIT_DESC=		Kerberos support via security/krb5
80
KRB_NONE_DESC=		Disable Kerberos support
78
KRB_NONE_DESC=		Disable Kerberos support
79
CARES_DESC=			Enable support for asynchronous DNS via c-ares
81
80
82
GTK2_USE=	GNOME=gtk20,cairo
81
GTK2_USE=	GNOME=gtk20,cairo
83
GTK3_USE=	GNOME=gtk30,cairo
82
GTK3_USE=	GNOME=gtk30,cairo
Lines 91-97 Link Here
91
RTP_LIB_DEPENDS=	libportaudio.so:audio/portaudio
90
RTP_LIB_DEPENDS=	libportaudio.so:audio/portaudio
92
RTP_CPPFLAGS=		-I${LOCALBASE}/include
91
RTP_CPPFLAGS=		-I${LOCALBASE}/include
93
SNMP_LIB_DEPENDS=	libsmi.so:net-mgmt/libsmi
92
SNMP_LIB_DEPENDS=	libsmi.so:net-mgmt/libsmi
94
ADNS_LIB_DEPENDS=	libadns.so:dns/adns
95
CARES_LIB_DEPENDS=	libcares.so:dns/c-ares
93
CARES_LIB_DEPENDS=	libcares.so:dns/c-ares
96
GEOIP_LIB_DEPENDS=	libGeoIP.so:net/GeoIP
94
GEOIP_LIB_DEPENDS=	libGeoIP.so:net/GeoIP
97
DECRYPT_LIB_DEPENDS=	libgnutls.so:security/gnutls \
95
DECRYPT_LIB_DEPENDS=	libgnutls.so:security/gnutls \
Lines 103-118 Link Here
103
KRB_NONE_CONFIGURE_OFF=	--with-krb5
101
KRB_NONE_CONFIGURE_OFF=	--with-krb5
104
KRB_NONE_CONFIGURE_ENV_OFF=	KRB5_CONFIG=${KRB5CONFIG}
102
KRB_NONE_CONFIGURE_ENV_OFF=	KRB5_CONFIG=${KRB5CONFIG}
105
103
106
GTK2_CONFIGURE_WITH=	gtk2
104
GTK2_CONFIGURE_ON=	--with-gtk=2 --with-qt=no
107
GTK3_CONFIGURE_WITH=	gtk3
105
GTK3_CONFIGURE_ON=	--with-gtk=3 --with-qt=no
108
QT5_CONFIGURE_WITH=	qt
106
QT5_CONFIGURE_ON=	--with-qt=5 --with-gtk=no
109
LUA_CONFIGURE_WITH=	lua
107
LUA_CONFIGURE_WITH=	lua
110
RTP_CONFIGURE_WITH=	portaudio
108
RTP_CONFIGURE_WITH=	portaudio
111
SNMP_CONFIGURE_WITH=	libsmi
109
SNMP_CONFIGURE_WITH=	libsmi
112
ADNS_CONFIGURE_WITH=	adns
113
CARES_CONFIGURE_WITH=	c-ares
110
CARES_CONFIGURE_WITH=	c-ares
114
GEOIP_CONFIGURE_WITH=	geoip
111
GEOIP_CONFIGURE_WITH=	geoip
115
DECRYPT_CONFIGURE_WITH=	gnutls gcrypt
112
DECRYPT_CONFIGURE_WITH=	gnutls gcrypt
113
ANDROIDDUMP_CONFIGURE_ON=	--enable-androiddump=yes
114
ANDROIDDUMP_CONFIGURE_OFF=	--enable-androiddump=no
116
115
117
LUA_CPPFLAGS=		-I${LUA_INCDIR}
116
LUA_CPPFLAGS=		-I${LUA_INCDIR}
118
117

Return to bug 216463