From owner-svn-ports-all@freebsd.org Mon Sep 10 06:07:40 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E84571080394; Mon, 10 Sep 2018 06:07:39 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 95454711CD; Mon, 10 Sep 2018 06:07:39 +0000 (UTC) (envelope-from yuri@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 8A4D8246DE; Mon, 10 Sep 2018 06:07:39 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w8A67dE6020330; Mon, 10 Sep 2018 06:07:39 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w8A67dxr020329; Mon, 10 Sep 2018 06:07:39 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201809100607.w8A67dxr020329@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Mon, 10 Sep 2018 06:07:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r479362 - head/science/msms X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/science/msms X-SVN-Commit-Revision: 479362 X-SVN-Commit-Repository: ports 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.27 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: Mon, 10 Sep 2018 06:07:40 -0000 Author: yuri Date: Mon Sep 10 06:07:38 2018 New Revision: 479362 URL: https://svnweb.freebsd.org/changeset/ports/479362 Log: science/msms: Simplify Modified: head/science/msms/Makefile Modified: head/science/msms/Makefile ============================================================================== --- head/science/msms/Makefile Mon Sep 10 06:03:08 2018 (r479361) +++ head/science/msms/Makefile Mon Sep 10 06:07:38 2018 (r479362) @@ -1,7 +1,6 @@ # $FreeBSD$ PORTNAME= msms -DISTVERSIONPREFIX= v DISTVERSION= 2.6.1 CATEGORIES= science MASTER_SITES= http://mgltools.scripps.edu/downloads/tars/releases/MSMSRELEASE/REL${DISTVERSION}/ @@ -12,7 +11,7 @@ COMMENT= Program to efficiently compute molecular surf LICENSE= MSMS_LICENSE LICENSE_NAME= MSMS License -LICENSE_FILE= ${WRKSRC}/license.txt +LICENSE_FILE= ${WRKDIR}/license.txt LICENSE_PERMS= no-auto-accept no-dist-mirror no-pkg-mirror # No redistribution is allowed. ONLY_FOR_ARCHS= amd64 i386 @@ -20,7 +19,6 @@ ONLY_FOR_ARCHS_REASON= Binaries available only for ${O RESTRICTED= No commercial use, only for use by individuals -NO_WRKSUBDIR= yes NO_BUILD= yes ARCH_MSMS_DIST= ${ARCH:S/amd64/i86_64/:S/i386/i86/} @@ -32,10 +30,10 @@ PLIST_FILES= bin/${PORTNAME} \ man/man1/${PORTNAME}.1.gz post-extract: - @${AWK} -f ${FILESDIR}/extract-license.awk < ${WRKSRC}/README > ${LICENSE_FILE} + @${AWK} -f ${FILESDIR}/extract-license.awk < ${WRKDIR}/README > ${LICENSE_FILE} do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME}.${ARCH_MSMS_FILE}Linux2.${DISTVERSION}${ARCH:S/amd64/.staticgcc/:S/${ARCH}//} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} - ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${STAGEDIR}${MAN1PREFIX}/man/man1 + ${INSTALL_PROGRAM} ${WRKDIR}/${PORTNAME}.${ARCH_MSMS_FILE}Linux2.${DISTVERSION}${ARCH:S/amd64/.staticgcc/:S/i386//} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} + ${INSTALL_MAN} ${WRKDIR}/${PORTNAME}.1 ${STAGEDIR}${MAN1PREFIX}/man/man1 .include