From owner-svn-ports-head@freebsd.org Fri Nov 18 15:47:07 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 D791AC483B7; Fri, 18 Nov 2016 15:47:07 +0000 (UTC) (envelope-from vg@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 B2807118D; Fri, 18 Nov 2016 15:47:07 +0000 (UTC) (envelope-from vg@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uAIFl6U0056897; Fri, 18 Nov 2016 15:47:06 GMT (envelope-from vg@FreeBSD.org) Received: (from vg@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uAIFl6pY056893; Fri, 18 Nov 2016 15:47:06 GMT (envelope-from vg@FreeBSD.org) Message-Id: <201611181547.uAIFl6pY056893@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: vg set sender to vg@FreeBSD.org using -f From: Veniamin Gvozdikov Date: Fri, 18 Nov 2016 15:47:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r426328 - in head/graphics/yed: . 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.23 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: Fri, 18 Nov 2016 15:47:07 -0000 Author: vg Date: Fri Nov 18 15:47:06 2016 New Revision: 426328 URL: https://svnweb.freebsd.org/changeset/ports/426328 Log: - Update to 3.16.2.1 - Fix unsupported major.minor version 52.0 PR: ports/213839 Submitted by: olevole@olevole.ru Approved by: Eugene Mychlo (maintainer) Modified: head/graphics/yed/Makefile head/graphics/yed/distinfo head/graphics/yed/files/yed.in head/graphics/yed/pkg-plist Modified: head/graphics/yed/Makefile ============================================================================== --- head/graphics/yed/Makefile Fri Nov 18 15:39:14 2016 (r426327) +++ head/graphics/yed/Makefile Fri Nov 18 15:47:06 2016 (r426328) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= yed -PORTVERSION= 3.16.1 +PORTVERSION= 3.16.2.1 CATEGORIES= graphics java MASTER_SITES= # DISTNAME= yEd-${PORTVERSION} @@ -18,7 +18,7 @@ LICENSE_PERMS= no-dist-mirror no-dist-se USES= zip USE_JAVA= yes -JAVA_VERSION= 1.7+ +JAVA_VERSION= 1.8+ NO_BUILD= yes RESTRICTED= Downloading requires acceptance of license agreement DESKTOP_ENTRIES="yEd" "${COMMENT}" "" "yed" "Graphics;" false @@ -40,19 +40,24 @@ do-install: @${MKDIR} ${STAGEDIR}${DATADIR} ${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin ${INSTALL_DATA} ${WRKSRC}/license.html ${STAGEDIR}${DATADIR} + ${INSTALL_DATA} ${WRKSRC}/thirdpartylicenses.html ${STAGEDIR}${DATADIR} ${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.jar ${STAGEDIR}${DATADIR} @${MKDIR} ${STAGEDIR}${DATADIR}/lib . for lib in common-image.jar \ common-io.jar \ common-lang.jar \ + imageio-bmp.jar \ imageio-core.jar \ + imageio-hdr.jar \ imageio-icns.jar \ - imageio-ico.jar \ imageio-iff.jar \ imageio-jpeg.jar \ imageio-metadata.jar \ + imageio-pcx.jar \ imageio-pict.jar \ imageio-psd.jar \ + imageio-sgi.jar \ + imageio-tga.jar \ imageio-thumbsdb.jar \ imageio-tiff.jar \ vectorgraphics.jar Modified: head/graphics/yed/distinfo ============================================================================== --- head/graphics/yed/distinfo Fri Nov 18 15:39:14 2016 (r426327) +++ head/graphics/yed/distinfo Fri Nov 18 15:47:06 2016 (r426328) @@ -1,3 +1,3 @@ -TIMESTAMP = 1474225333 -SHA256 (yEd-3.16.1.zip) = f2c48697ae2d6d1fa29005157d3d8f319380bef9ecc250ae727246bd2f9bfe40 -SIZE (yEd-3.16.1.zip) = 33118338 +TIMESTAMP = 1477597016 +SHA256 (yEd-3.16.2.1.zip) = 47ac746ad30eb6375b8f45e9382efd0db0b6e3b1eb8f4760625963175b753805 +SIZE (yEd-3.16.2.1.zip) = 34677676 Modified: head/graphics/yed/files/yed.in ============================================================================== --- head/graphics/yed/files/yed.in Fri Nov 18 15:39:14 2016 (r426327) +++ head/graphics/yed/files/yed.in Fri Nov 18 15:47:06 2016 (r426328) @@ -1,2 +1,11 @@ #!/bin/sh + +#: ${JAVA_HOME=%%PREFIX%%/openjdk8} +JAVA_HOME=%%PREFIX%%/openjdk8 + +if [ ! -x ${JAVA_HOME}/bin/java ]; then + echo "No java distribution in ${JAVA_HOME}" + exit 1 +fi + exec java -Dawt.useSystemAAFontSettings=on -jar %%DATADIR%%/yed.jar Modified: head/graphics/yed/pkg-plist ============================================================================== --- head/graphics/yed/pkg-plist Fri Nov 18 15:39:14 2016 (r426327) +++ head/graphics/yed/pkg-plist Fri Nov 18 15:47:06 2016 (r426328) @@ -2,16 +2,21 @@ bin/yed %%DATADIR%%/lib/common-image.jar %%DATADIR%%/lib/common-io.jar %%DATADIR%%/lib/common-lang.jar +%%DATADIR%%/lib/imageio-bmp.jar %%DATADIR%%/lib/imageio-core.jar +%%DATADIR%%/lib/imageio-hdr.jar %%DATADIR%%/lib/imageio-icns.jar -%%DATADIR%%/lib/imageio-ico.jar %%DATADIR%%/lib/imageio-iff.jar %%DATADIR%%/lib/imageio-jpeg.jar %%DATADIR%%/lib/imageio-metadata.jar +%%DATADIR%%/lib/imageio-pcx.jar %%DATADIR%%/lib/imageio-pict.jar %%DATADIR%%/lib/imageio-psd.jar +%%DATADIR%%/lib/imageio-sgi.jar +%%DATADIR%%/lib/imageio-tga.jar %%DATADIR%%/lib/imageio-thumbsdb.jar %%DATADIR%%/lib/imageio-tiff.jar %%DATADIR%%/lib/vectorgraphics.jar %%DATADIR%%/license.html +%%DATADIR%%/thirdpartylicenses.html %%DATADIR%%/yed.jar