From owner-svn-ports-head@freebsd.org Tue Jan 5 15:46:40 2016 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 0BE32A620F3; Tue, 5 Jan 2016 15:46:40 +0000 (UTC) (envelope-from amdmi3@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 A126F132C; Tue, 5 Jan 2016 15:46:39 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u05FkcB8075230; Tue, 5 Jan 2016 15:46:38 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u05FkcMC075228; Tue, 5 Jan 2016 15:46:38 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201601051546.u05FkcMC075228@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 5 Jan 2016 15:46:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r405296 - in head/security/zenmap: . files X-SVN-Group: ports-head 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.20 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, 05 Jan 2016 15:46:40 -0000 Author: amdmi3 Date: Tue Jan 5 15:46:38 2016 New Revision: 405296 URL: https://svnweb.freebsd.org/changeset/ports/405296 Log: - Fix broken zenmap-root script - While here, add LICENSE_FILE, switch to WRKSRC_SUBDIR, add NO_ARCH and switch to options helpers PR: 204713 Submitted by: admin@vladiom.com.ua Approved by: maintainer timeout (nemysis, 6 weeks) Modified: head/security/zenmap/Makefile head/security/zenmap/files/zenmap-root.in Modified: head/security/zenmap/Makefile ============================================================================== --- head/security/zenmap/Makefile Tue Jan 5 15:06:08 2016 (r405295) +++ head/security/zenmap/Makefile Tue Jan 5 15:46:38 2016 (r405296) @@ -3,6 +3,7 @@ PORTNAME= zenmap PORTVERSION= 6.47 +PORTREVISION= 1 CATEGORIES= security ipv6 MASTER_SITES= http://nmap.org/dist/ \ SF/nemysisfreebsdp/security/:icons @@ -15,16 +16,18 @@ MAINTAINER= nemysis@FreeBSD.org COMMENT= GUI frontend for the Nmap scanning utility LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/COPYING RUN_DEPENDS= nmap:${PORTSDIR}/security/nmap \ ${PYTHON_PKGNAMEPREFIX}sqlite3>0:${PORTSDIR}/databases/py-sqlite3 -WRKSRC= ${WRKDIR}/${DISTNAME}/${PORTNAME} +WRKSRC_SUBDIR= ${PORTNAME} USES= dos2unix python tar:bzip2 DOS2UNIX_GLOB= *.xml USE_GNOME= pygtk2 USE_PYTHON= autoplist distutils +NO_ARCH= yes OPTIONS_DEFINE= NLS OPTIONS_SUB= yes @@ -34,8 +37,6 @@ NLS_USES= gettext SUB_FILES= zenmap-root -.include - post-extract: @${RM} -f ${WRKSRC}/install_scripts/unix/su-to-zenmap.sh @${CP} -a ${FILESDIR}/pc-su ${WRKSRC}/install_scripts/unix/su-to-zenmap.sh @@ -65,9 +66,8 @@ post-patch: @${FIND} ${WRKSRC} -name "*.bak" -delete @${FIND} ${WRKSRC}/../ndiff -name "*.bak" -delete -.if ! ${PORT_OPTIONS:MNLS} +post-patch-NLS-off: @${REINPLACE_CMD} -i '' '/locale_dir, mo_find, /d' ${WRKSRC}/setup.py -.endif post-install: ${INSTALL_SCRIPT} ${WRKDIR}/zenmap-root ${STAGEDIR}${PREFIX}/bin/ Modified: head/security/zenmap/files/zenmap-root.in ============================================================================== --- head/security/zenmap/files/zenmap-root.in Tue Jan 5 15:06:08 2016 (r405295) +++ head/security/zenmap/files/zenmap-root.in Tue Jan 5 15:46:38 2016 (r405296) @@ -3,6 +3,4 @@ # $FreeBSD$ # -cd "%%DATADIR%%" && exec su-to-zenmap.sh zenmap - - +exec %%DATADIR%%/su-to-zenmap.sh zenmap