diff options
author | tijl <tijl@FreeBSD.org> | 2015-04-19 20:38:16 +0800 |
---|---|---|
committer | tijl <tijl@FreeBSD.org> | 2015-04-19 20:38:16 +0800 |
commit | 1c06973304d2c5555714e2556e5ba2dbb0f10fc9 (patch) | |
tree | 538aa7f33413b3bd37a4a154dad8f55c18b8341e | |
parent | 8783d3cfabcf1a1a85d8aaa5ca59589789b4dc47 (diff) | |
download | freebsd-ports-gnome-1c06973304d2c5555714e2556e5ba2dbb0f10fc9.tar.gz freebsd-ports-gnome-1c06973304d2c5555714e2556e5ba2dbb0f10fc9.tar.zst freebsd-ports-gnome-1c06973304d2c5555714e2556e5ba2dbb0f10fc9.zip |
AC_CONFIG_MACRO_DIR is missing in configure.ac but USES=autoreconf isn't
needed so just remove it.
Reported by: antoine
-rw-r--r-- | www/e2guardian/Makefile | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/www/e2guardian/Makefile b/www/e2guardian/Makefile index 1e2c6b6480b9..11d1a723abc5 100644 --- a/www/e2guardian/Makefile +++ b/www/e2guardian/Makefile @@ -16,7 +16,7 @@ LIB_DEPENDS= libpcre.so:${PORTSDIR}/devel/pcre USE_GITHUB= yes GH_TAGNAME= ${PORTVERSION:S/^/v/} -USES= autoreconf iconv pkgconfig +USES= iconv pkgconfig GNU_CONFIGURE= yes CONFIGURE_ARGS= --localstatedir=/var \ --with-logdir=/var/log \ @@ -70,11 +70,7 @@ DEBUG_CONFIGURE_WITH= dgdebug SSL_LDFLAGS= -lssl -lcrypto SSL_CFLAGS= -D__SSLMITM -D__SSLCERT -.include <bsd.port.pre.mk> - -pre-configure: - @${REINPLACE_CMD} -e 's|.lresolv||g' \ - ${WRKSRC}/configure.ac +.include <bsd.port.options.mk> .if ${PORT_OPTIONS:MCLAMD} || ${PORT_OPTIONS:MICAP} || \ ${PORT_OPTIONS:MKAV} || ${PORT_OPTIONS:MCLISCAN} @@ -93,4 +89,4 @@ post-install: @${MV} ${STAGEDIR}${ETCDIR}/lists/bannedrooms/default \ ${STAGEDIR}${ETCDIR}/lists/bannedrooms/default.sample -.include <bsd.port.post.mk> +.include <bsd.port.mk> |