From owner-svn-ports-all@FreeBSD.ORG Tue Feb 25 11:40:22 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9FE0A610; Tue, 25 Feb 2014 11:40:22 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 71CA81E10; Tue, 25 Feb 2014 11:40:22 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s1PBeMeG075561; Tue, 25 Feb 2014 11:40:22 GMT (envelope-from ehaupt@svn.freebsd.org) Received: (from ehaupt@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s1PBeMVt075558; Tue, 25 Feb 2014 11:40:22 GMT (envelope-from ehaupt@svn.freebsd.org) Message-Id: <201402251140.s1PBeMVt075558@svn.freebsd.org> From: Emanuel Haupt Date: Tue, 25 Feb 2014 11:40:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r345965 - head/security/lockdown X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Feb 2014 11:40:22 -0000 Author: ehaupt Date: Tue Feb 25 11:40:21 2014 New Revision: 345965 URL: http://svnweb.freebsd.org/changeset/ports/345965 QAT: https://qat.redports.org/buildarchive/r345965/ Log: - Support staging - Use CFLAGS_amd64 Modified: head/security/lockdown/Makefile head/security/lockdown/pkg-plist Modified: head/security/lockdown/Makefile ============================================================================== --- head/security/lockdown/Makefile Tue Feb 25 11:33:47 2014 (r345964) +++ head/security/lockdown/Makefile Tue Feb 25 11:40:21 2014 (r345965) @@ -10,25 +10,20 @@ MASTER_SITES= http://lockdown.trunet.dk/ MAINTAINER= db@TruNet.dk COMMENT= Hardening script for FreeBSD -MAN1= editfile.1 editfstab.1 editkernel.1 editlogin.1 editttys.1 - -NO_STAGE= yes -.include - -.if ${ARCH} == amd64 -CFLAGS+= -fPIC -.endif - USE_LDCONFIG= yes WRKSRC= ${WRKDIR}/lockdown +CFLAGS_amd64+= -fPIC + do-install: - ${INSTALL_DATA} ${WRKSRC}/cppe/src/libcppe.so ${PREFIX}/lib/libcppe.so -.for i in editfile editfstab editkernel editlogin editttys - ${INSTALL_PROGRAM} ${WRKSRC}/edittools/${i}/src/${i} ${PREFIX}/bin/${i} - ${INSTALL_MAN} ${WRKSRC}/edittools/${i}/doc/${i}.1 ${PREFIX}/man/man1/${i}.1 + ${INSTALL_LIB} ${WRKSRC}/cppe/src/libcppe.so ${STAGEDIR}${PREFIX}/lib +.for f in editfile editfstab editkernel editlogin editttys + ${INSTALL_PROGRAM} ${WRKSRC}/edittools/${f}/src/${f} \ + ${STAGEDIR}${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/edittools/${f}/doc/${f}.1 \ + ${STAGEDIR}${PREFIX}/man/man1 .endfor - ${INSTALL_SCRIPT} ${WRKSRC}/lockdown ${PREFIX}/bin/lockdown + ${INSTALL_SCRIPT} ${WRKSRC}/lockdown ${STAGEDIR}${PREFIX}/bin -.include +.include Modified: head/security/lockdown/pkg-plist ============================================================================== --- head/security/lockdown/pkg-plist Tue Feb 25 11:33:47 2014 (r345964) +++ head/security/lockdown/pkg-plist Tue Feb 25 11:40:21 2014 (r345965) @@ -5,3 +5,8 @@ bin/editkernel bin/editlogin bin/editttys lib/libcppe.so +man/man1/editfile.1.gz +man/man1/editfstab.1.gz +man/man1/editkernel.1.gz +man/man1/editlogin.1.gz +man/man1/editttys.1.gz