svn commit: r457294 - in head/net/proxy-suite: . files

Tijl Coosemans tijl at FreeBSD.org
Tue Dec 26 16:53:34 UTC 2017


Author: tijl
Date: Tue Dec 26 16:53:32 2017
New Revision: 457294
URL: https://svnweb.freebsd.org/changeset/ports/457294

Log:
  - Remove an old patch that adds HAVE_SYS_PARAM_H to config.h.in.  It's
    already there in the current version of the port.
  - Replace a patch for configure.in with a post-patch command for configure
    so we can remove USE_AUTOTOOLS.
  - Unhide pre-install command.

Deleted:
  head/net/proxy-suite/files/patch-config.h.in
  head/net/proxy-suite/files/patch-configure.in
Modified:
  head/net/proxy-suite/Makefile

Modified: head/net/proxy-suite/Makefile
==============================================================================
--- head/net/proxy-suite/Makefile	Tue Dec 26 16:41:23 2017	(r457293)
+++ head/net/proxy-suite/Makefile	Tue Dec 26 16:53:32 2017	(r457294)
@@ -11,14 +11,14 @@ MAINTAINER=	thomas at FreeBSD.org
 COMMENT=	The SuSE Proxy-Suite, a set of programs to enhance firewall security
 LICENSE=	GPLv2
 
-USE_AUTOTOOLS=	autoconf
+GNU_CONFIGURE=	yes
 USES=		gmake tar:bzip2
 
 #
 # basic configure args
 #
 CPPFLAGS+=	-I${LOCALBASE}/include
-CONFIGURE_ARGS=	--prefix=${PREFIX} --with-libwrap=/usr/lib --with-regex \
+CONFIGURE_ARGS=	--with-libwrap=/usr/lib --with-regex \
 		--localstatedir=/var/run \
 		--enable-warnings --enable-so-linger \
 		--disable-proc-mods
@@ -53,9 +53,10 @@ MAKE_ARGS=	INST_ROOT=${STAGEDIR} CONF_DST=ftp-proxy.co
 
 SUB_FILES=	pkg-message
 
-.include <bsd.port.pre.mk>
+post-patch:
+	@${REINPLACE_CMD} 's,net/pfvar.h,,' ${WRKSRC}/configure
 
 pre-install:
-	@${STRIP_CMD} ${WRKSRC}/ftp-proxy/ftp-proxy
+	${STRIP_CMD} ${WRKSRC}/ftp-proxy/ftp-proxy
 
-.include <bsd.port.post.mk>
+.include <bsd.port.mk>


More information about the svn-ports-head mailing list