aboutsummaryrefslogtreecommitdiffstats
path: root/irc
diff options
context:
space:
mode:
authorpawel <pawel@FreeBSD.org>2012-01-26 04:34:11 +0800
committerpawel <pawel@FreeBSD.org>2012-01-26 04:34:11 +0800
commit2e1189074c0d489ccf2f54a4708e7297dadedfa0 (patch)
treeeb83deb431090e52068afe479e018881b2f3e358 /irc
parentc13bc023ca6e266eff7e302922b374d3e5aacaee (diff)
downloadfreebsd-ports-gnome-2e1189074c0d489ccf2f54a4708e7297dadedfa0.tar.gz
freebsd-ports-gnome-2e1189074c0d489ccf2f54a4708e7297dadedfa0.tar.zst
freebsd-ports-gnome-2e1189074c0d489ccf2f54a4708e7297dadedfa0.zip
- Add INSPIRCD_LOG and INSPIRCD_RUN substitution patterns for
etc/rc.d/inspircd file to fix service starting - WITH_GNUTLS option needs security/libgcrypt to work PR: ports/164352 Submitted by: Geoff Garside <freebsd@geoffgarside.co.uk>
Diffstat (limited to 'irc')
-rw-r--r--irc/inspircd/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/irc/inspircd/Makefile b/irc/inspircd/Makefile
index cb6604c8f639..9f8d2e4dabee 100644
--- a/irc/inspircd/Makefile
+++ b/irc/inspircd/Makefile
@@ -31,6 +31,8 @@ INSPIRCD_LOG?= /var/log/${PORTNAME}/ircd.log
SUB_LIST+= PORTNAME=${PORTNAME} \
INSPIRCD_USR=${INSPIRCD_USR} \
INSPIRCD_GRP=${INSPIRCD_GRP} \
+ INSPIRCD_LOG=${INSPIRCD_LOG} \
+ INSPIRCD_RUN=${INSPIRCD_RUN}
PLIST_SUB+= INSPIRCD_GRP=${INSPIRCD_GRP}
SUB_FILES+= pkg-deinstall
@@ -90,7 +92,8 @@ PLIST_SUB+= SQLITE3="@comment "
.endif
.if defined(WITH_GNUTLS) && !defined(WITHOUT_GNUTLS)
-LIB_DEPENDS+= gnutls.47:${PORTSDIR}/security/gnutls
+LIB_DEPENDS+= gnutls.47:${PORTSDIR}/security/gnutls \
+ gcrypt.18:${PORTSDIR}/security/libgcrypt
CONFIGURE_ARGS+= --enable-gnutls
PLIST_SUB+= GNUTLS=""
.else