Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 26 Dec 2017 16:53:32 +0000 (UTC)
From:      Tijl Coosemans <tijl@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r457294 - in head/net/proxy-suite: . files
Message-ID:  <201712261653.vBQGrW28085674@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@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>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201712261653.vBQGrW28085674>