svn commit: r339439 - head/irc/inspircd
Mark Felder
feld at FreeBSD.org
Sat Jan 11 17:23:10 UTC 2014
Author: feld
Date: Sat Jan 11 17:23:09 2014
New Revision: 339439
URL: http://svnweb.freebsd.org/changeset/ports/339439
Log:
Fix SQLITE and GNUTLS build options which were missing pkgconfig
PR: ports/185610
Approved by: swills (mentor)
Modified:
head/irc/inspircd/Makefile
Modified: head/irc/inspircd/Makefile
==============================================================================
--- head/irc/inspircd/Makefile Sat Jan 11 16:56:28 2014 (r339438)
+++ head/irc/inspircd/Makefile Sat Jan 11 17:23:09 2014 (r339439)
@@ -93,6 +93,7 @@ PLIST_SUB+= PGSQL="@comment "
.endif
.if ${PORT_OPTIONS:MSQLITE}
+USES+= pkgconfig
USE_SQLITE= 3
EXTRAS:=${EXTRAS},m_sqlite3.cpp
PLIST_SUB+= SQLITE=""
@@ -101,8 +102,9 @@ PLIST_SUB+= SQLITE="@comment "
.endif
.if ${PORT_OPTIONS:MGNUTLS}
-LIB_DEPENDS+= gnutls:${PORTSDIR}/security/gnutls \
- gcrypt:${PORTSDIR}/security/libgcrypt
+USES+= pkgconfig
+LIB_DEPENDS+= libgnutls.so:${PORTSDIR}/security/gnutls \
+ libgcrypt.so:${PORTSDIR}/security/libgcrypt
CONFIGURE_ARGS+= --enable-gnutls
EXTRAS:=${EXTRAS},m_ssl_gnutls.cpp
PLIST_SUB+= GNUTLS=""
@@ -120,7 +122,7 @@ PLIST_SUB+= OPENSSL="@comment "
.endif
.if ${PORT_OPTIONS:MPCRE}
-LIB_DEPENDS+= pcre:${PORTSDIR}/devel/pcre
+LIB_DEPENDS+= libpcre.so:${PORTSDIR}/devel/pcre
EXTRAS:=${EXTRAS},m_regex_pcre.cpp
PLIST_SUB+= PCRE=""
.else
More information about the svn-ports-head
mailing list