From owner-svn-ports-all@freebsd.org Sun Oct 7 21:54:21 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 DEB0510A846D; Sun, 7 Oct 2018 21:54:20 +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 8237396362; Sun, 7 Oct 2018 21:54:20 +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 5D20D19B07; Sun, 7 Oct 2018 21:54:20 +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 w97LsKPv057599; Sun, 7 Oct 2018 21:54:20 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w97LsJtO057596; Sun, 7 Oct 2018 21:54:19 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201810072154.w97LsJtO057596@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sun, 7 Oct 2018 21:54:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r481495 - in head/science: . molgif X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/science: . molgif X-SVN-Commit-Revision: 481495 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: Sun, 07 Oct 2018 21:54:21 -0000 Author: yuri Date: Sun Oct 7 21:54:19 2018 New Revision: 481495 URL: https://svnweb.freebsd.org/changeset/ports/481495 Log: New port: science/molgif: Tool to create GIF animations of molecules Added: head/science/molgif/ head/science/molgif/Makefile (contents, props changed) head/science/molgif/distinfo (contents, props changed) head/science/molgif/pkg-descr (contents, props changed) Modified: head/science/Makefile Modified: head/science/Makefile ============================================================================== --- head/science/Makefile Sun Oct 7 21:29:01 2018 (r481494) +++ head/science/Makefile Sun Oct 7 21:54:19 2018 (r481495) @@ -139,6 +139,7 @@ SUBDIR += minc2 SUBDIR += mmdb2 SUBDIR += mol2ps + SUBDIR += molgif SUBDIR += mpb SUBDIR += mpqc SUBDIR += msms Added: head/science/molgif/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/science/molgif/Makefile Sun Oct 7 21:54:19 2018 (r481495) @@ -0,0 +1,29 @@ +# $FreeBSD$ + +PORTNAME= molgif +DISTVERSION= g20180108 +CATEGORIES= science + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Tool to create GIF animations of molecules + +LICENSE= ISCL +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= go:lang/go + +USE_GITHUB= yes +GH_ACCOUNT= ilyak +GH_TAGNAME= a7df9e4 +GH_SUBDIR= src/github.com/${GH_ACCOUNT}/${PORTNAME} + +PLIST_FILES= bin/${PORTNAME} + +do-build: + @cd ${WRKSRC}/${GH_SUBDIR} && \ + ${SETENV} ${MAKE_ENV} GOPATH=${WRKSRC} go build + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin + +.include Added: head/science/molgif/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/science/molgif/distinfo Sun Oct 7 21:54:19 2018 (r481495) @@ -0,0 +1,3 @@ +TIMESTAMP = 1538947291 +SHA256 (ilyak-molgif-g20180108-a7df9e4_GH0.tar.gz) = 62873f4b10cad999d68b24027313b84861e7788426b22a5951dd3d405598f91e +SIZE (ilyak-molgif-g20180108-a7df9e4_GH0.tar.gz) = 11076976 Added: head/science/molgif/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/science/molgif/pkg-descr Sun Oct 7 21:54:19 2018 (r481495) @@ -0,0 +1,5 @@ +Molgif is an easy-to-use tool for creating GIF animations of molecules. Thanks +to the widespread support of GIF file format, animations can be easily embedded +into presentations, websites, wikipedia, and so forth. + +WWW: https://github.com/ilyak/molgif