From owner-svn-ports-all@freebsd.org Mon May 16 19:07:07 2016 Return-Path: Delivered-To: svn-ports-all@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 A8A0DB3D733; Mon, 16 May 2016 19:07:07 +0000 (UTC) (envelope-from bsam@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 791A81FE0; Mon, 16 May 2016 19:07:07 +0000 (UTC) (envelope-from bsam@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u4GJ76MG000206; Mon, 16 May 2016 19:07:06 GMT (envelope-from bsam@FreeBSD.org) Received: (from bsam@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u4GJ76Cx000205; Mon, 16 May 2016 19:07:06 GMT (envelope-from bsam@FreeBSD.org) Message-Id: <201605161907.u4GJ76Cx000205@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bsam set sender to bsam@FreeBSD.org using -f From: Boris Samorodov Date: Mon, 16 May 2016 19:07:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r415356 - head/java/intellij-pty4j X-SVN-Group: ports-head 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.22 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, 16 May 2016 19:07:07 -0000 Author: bsam Date: Mon May 16 19:07:06 2016 New Revision: 415356 URL: https://svnweb.freebsd.org/changeset/ports/415356 Log: java/intellij-pty4: A new version of IntelliJ IDEA (pending commit) uses pty4j-0.6.jar which seems to include FreeBSD support. Do not install pty4j-0.5.jar, install only the native component of pty4j. PR: 209552 Submitted by: bsam (me) Approved by: Tobias Kortkamp (maintainer) Modified: head/java/intellij-pty4j/Makefile Modified: head/java/intellij-pty4j/Makefile ============================================================================== --- head/java/intellij-pty4j/Makefile Mon May 16 19:04:38 2016 (r415355) +++ head/java/intellij-pty4j/Makefile Mon May 16 19:07:06 2016 (r415356) @@ -3,6 +3,7 @@ PORTNAME= intellij-pty4j PORTVERSION= 0.5 +PORTREVISION= 1 CATEGORIES= java devel MAINTAINER= t@tobik.me @@ -22,8 +23,6 @@ USES= gmake .include "${.CURDIR}/../intellij/common.mk" -PLIST_FILES= ${IDEA_HOME}/lib/pty4j-0.5.jar - .include # The directory we need to install Pty4J's native library in depends @@ -56,6 +55,5 @@ do-install: # See above why we always use freebsd/x86_64/ here ${INSTALL_LIB} ${WRKSRC}/os/freebsd/x86_64/libpty.so ${STAGEDIR}${IDEA_HOME}/lib/libpty/freebsd/${PTY4J_ARCH}/ .endif - ${INSTALL_DATA} ${WRKSRC}/build/pty4j-0.5.jar ${STAGEDIR}${IDEA_HOME}/lib/pty4j-0.5.jar .include