From owner-svn-ports-head@freebsd.org Tue Dec 26 16:53:34 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0A625EA1E6E; Tue, 26 Dec 2017 16:53:34 +0000 (UTC) (envelope-from tijl@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 654887DE2F; Tue, 26 Dec 2017 16:53:33 +0000 (UTC) (envelope-from tijl@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vBQGrWdD085675; Tue, 26 Dec 2017 16:53:32 GMT (envelope-from tijl@FreeBSD.org) Received: (from tijl@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vBQGrW28085674; Tue, 26 Dec 2017 16:53:32 GMT (envelope-from tijl@FreeBSD.org) Message-Id: <201712261653.vBQGrW28085674@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tijl set sender to tijl@FreeBSD.org using -f From: Tijl Coosemans Date: Tue, 26 Dec 2017 16:53:32 +0000 (UTC) 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 X-SVN-Group: ports-head X-SVN-Commit-Author: tijl X-SVN-Commit-Paths: in head/net/proxy-suite: . files X-SVN-Commit-Revision: 457294 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Dec 2017 16:53:34 -0000 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 +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 +.include