From owner-svn-ports-head@freebsd.org Mon Aug 27 06:15:58 2018 Return-Path: Delivered-To: svn-ports-head@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 947B4108DF32; Mon, 27 Aug 2018 06:15:58 +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 3856A8068B; Mon, 27 Aug 2018 06:15:58 +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 EE03119CF1; Mon, 27 Aug 2018 06:15:57 +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 w7R6Fv7Z070623; Mon, 27 Aug 2018 06:15:57 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w7R6FvVx070619; Mon, 27 Aug 2018 06:15:57 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201808270615.w7R6FvVx070619@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Mon, 27 Aug 2018 06:15:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r478179 - in head/science: . datawarrior X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/science: . datawarrior X-SVN-Commit-Revision: 478179 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.27 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: Mon, 27 Aug 2018 06:15:58 -0000 Author: yuri Date: Mon Aug 27 06:15:56 2018 New Revision: 478179 URL: https://svnweb.freebsd.org/changeset/ports/478179 Log: New port: science/datawarrior: Chemistry-aware multi-purpose data visualization and analysis program Added: head/science/datawarrior/ head/science/datawarrior/Makefile (contents, props changed) head/science/datawarrior/distinfo (contents, props changed) head/science/datawarrior/pkg-descr (contents, props changed) Modified: head/science/Makefile Modified: head/science/Makefile ============================================================================== --- head/science/Makefile Mon Aug 27 06:14:21 2018 (r478178) +++ head/science/Makefile Mon Aug 27 06:15:56 2018 (r478179) @@ -49,6 +49,7 @@ SUBDIR += colt SUBDIR += coot SUBDIR += crf++ + SUBDIR += datawarrior SUBDIR += dcl SUBDIR += devisor SUBDIR += dft_tools Added: head/science/datawarrior/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/science/datawarrior/Makefile Mon Aug 27 06:15:56 2018 (r478179) @@ -0,0 +1,47 @@ +# $FreeBSD$ + +PORTNAME= datawarrior +DISTVERSION= 4.7.2 +CATEGORIES= science java +MASTER_SITES= https://www.dropbox.com/s/n3sjyh2ets71wo9/${DISTNAME}${EXTRACT_SUFX}?dl=1&dummy=/ +DISTNAME= datawarrior${DISTVERSION:S/.//g}Source + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Chemistry-aware multi-purpose data visualization and analysis program + +LICENSE= GPLv3 +LICENSE_FILE= ${WRKSRC}/gpl.txt + +BUILD_DEPENDS= openjfx8-devel>0:java/openjfx8-devel +RUN_DEPENDS= openjfx8-devel>0:java/openjfx8-devel + +USE_JAVA= yes +USE_LOCALE= en_US.UTF-8 +NO_ARCH= yes + +WRKSRC= ${WRKDIR}/publicSource + +do-build: + @cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ./buildDataWarrior + +do-install: + cd ${WRKSRC} && ${COPYTREE_SHARE} . ${STAGEDIR}${DATADIR} + @${FIND} ${STAGEDIR}${DATADIR} -name "*.java" -delete + @cd ${STAGEDIR}${DATADIR} && ${RM} gpl.txt buildDataWarrior + @(echo "#!/bin/sh"; \ + echo ""; \ + echo "cd ${DATADIR} && sh runDataWarrior"; \ + ) > ${STAGEDIR}${PREFIX}/bin/${PORTNAME} + @${CHMOD} +x ${STAGEDIR}${PREFIX}/bin/${PORTNAME} + # delete empty directories hierarchically + @cd ${STAGEDIR}${DATADIR} && \ + while [ $$(${FIND} . -type d -empty | wc -l) != 0 ] ; do \ + ${FIND} . -type d -empty -delete; \ + done + +post-install: # autoplist: a lot of files in DATADIR + @cd ${STAGEDIR}${PREFIX} && \ + ${FIND} ${DATADIR:S/^${PREFIX}\///} -type f >> ${TMPPLIST} + @${ECHO} "bin/${PORTNAME}" >> ${TMPPLIST} + +.include Added: head/science/datawarrior/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/science/datawarrior/distinfo Mon Aug 27 06:15:56 2018 (r478179) @@ -0,0 +1,3 @@ +TIMESTAMP = 1535337370 +SHA256 (datawarrior472Source.tar.gz) = eed79e80a36e90aebeb8e90aaa193f1e7213ed5d10175e27952e072e842a114d +SIZE (datawarrior472Source.tar.gz) = 22392950 Added: head/science/datawarrior/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/science/datawarrior/pkg-descr Mon Aug 27 06:15:56 2018 (r478179) @@ -0,0 +1,15 @@ +DataWarrior is an interactive, chemistry-aware multi-purpose data visualization +and analysis program. It works on any kind of tabular data assuming rows to +contain objects or cases and columns to contain associated properties and +values. DataWarrior provides interactive views to visualize data, to discover +correlations and to extract hidden knowledge from large data sets. Data filters +allow focusing on specific data subsets in a dynamic way. Chemical intelligence +is woven into the program to work with chemical structures as easily as with +numerical values. Data can be filtered on structural motives, views are +chemistry aware, molecule properties can be predicted from chemical structures, +and specialized cheminformatics methods explore the relationship between +chemical structure and measured properties. DataWarrior supports multiple files +types and allows merging data from files with data from the clipboard or from +databases. + +WWW: http://www.openmolecules.org/