summaryrefslogtreecommitdiff
path: root/news
diff options
context:
space:
mode:
authorKevin Bowling <kbowling@FreeBSD.org>2019-12-07 05:24:09 +0000
committerKevin Bowling <kbowling@FreeBSD.org>2019-12-07 05:24:09 +0000
commitf24dc3450e2c4517b34d6328b97cdb79a8a37f39 (patch)
tree7e8a262b21e850d9fdf959852998cd5fdcf73c85 /news
parentaudio/cadence: Update 0.9.0-7 -> 0.9.1 (diff)
news/inn: Add support for embedded Python
PR: 239922 Approved by: krion (mentor) Sponsored by: BBOX.io Differential Revision: https://reviews.freebsd.org/D22604
Notes
Notes: svn path=/head/; revision=519180
Diffstat (limited to 'news')
-rw-r--r--news/inn/Makefile13
1 files changed, 10 insertions, 3 deletions
diff --git a/news/inn/Makefile b/news/inn/Makefile
index 845972dd9690..e5d90f9d6bd6 100644
--- a/news/inn/Makefile
+++ b/news/inn/Makefile
@@ -3,6 +3,7 @@
PORTNAME= inn
PORTVERSION= 2.6.3
+PORTREVISION= 1
CATEGORIES= news
MASTER_SITES= ISC/${PORTNAME}
@@ -22,7 +23,7 @@ CPE_VENDOR= isc
CONFLICTS?= inn-stable-[0-9]* inn-current-[0-9]*
-OPTIONS_DEFINE= BERKELEYDB GNUPG KERBEROS SASL KEYWORDS \
+OPTIONS_DEFINE= BERKELEYDB GNUPG KERBEROS PYTHON SASL KEYWORDS \
LARGE_FILES OPENSSL SETGID_INEWS TAGGED_HASH \
UUCP_RNEWS DOCS EXAMPLES
OPTIONS_DEFAULT= BERKELEYDB GNUPG KEYWORDS OPENSSL LARGE_FILES \
@@ -30,6 +31,7 @@ OPTIONS_DEFAULT= BERKELEYDB GNUPG KEYWORDS OPENSSL LARGE_FILES \
OPTIONS_SUB= yes
KERBEROS_DESC= Enable Kerberos v5 (for auth_krb5)
+PYTHON_DESC= Enable support for embedded Python
SASL_DESC= Enable SASL (for imapfeed authentication)
TAGGED_HASH_DESC= Use tagged hash table for history
LARGE_FILES_DESC= Support for files larger than 2GB
@@ -87,6 +89,10 @@ CONFIGURE_ENV+= ac_cv_func_krb5_init_ets=yes
CONFIGURE_ARGS+= --without-krb5
.endif
+.if ${PORT_OPTIONS:MKEYWORDS}
+CONFIGURE_ARGS+= --enable-keywords
+.endif
+
.if ${PORT_OPTIONS:MLARGE_FILES}
CONFIGURE_ARGS+= --enable-largefiles
. if ${PORT_OPTIONS:MTAGGED_HASH}
@@ -94,8 +100,9 @@ IGNORE= cannot be compiled with both LARGE_FILES and TAGGED_HASH: please re-ru
. endif
.endif
-.if ${PORT_OPTIONS:MKEYWORDS}
-CONFIGURE_ARGS+= --enable-keywords
+.if ${PORT_OPTIONS:MPYTHON}
+USES=+ python
+CONFIGURE_ARGS+= --with-python
.endif
.if ${PORT_OPTIONS:MSASL}