Received: by mail.netbsd.org (Postfix, from userid 605) id 97E8184D9A; Tue, 5 Mar 2019 11:27:53 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 1FC2A84D78 for ; Tue, 5 Mar 2019 11:27:53 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id B9brTOArJXkI for ; Tue, 5 Mar 2019 11:27:52 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 9CB2484D24 for ; Tue, 5 Mar 2019 11:27:52 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 96BB7FB16; Tue, 5 Mar 2019 11:27:52 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1551785272269300" MIME-Version: 1.0 Date: Tue, 5 Mar 2019 11:27:52 +0000 From: "Ryo ONODERA" Subject: CVS commit: pkgsrc/devel/intellij-ce-bin To: pkgsrc-changes@NetBSD.org Reply-To: ryoon@netbsd.org X-Mailer: log_accum Message-Id: <20190305112752.96BB7FB16@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1551785272269300 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: ryoon Date: Tue Mar 5 11:27:52 UTC 2019 Modified Files: pkgsrc/devel/intellij-ce-bin: Makefile Log Message: Depend on fsnotifier and fix installation issues * Depend on sysutils/fsnotifier * Replace PKGNAME with PKGNAME_NOREV in do-install target for consistent PLIST * REPLACE_BASH requires USE_TOOLS+=bash not to cause empty #! line * Bump PKGREVISION To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 pkgsrc/devel/intellij-ce-bin/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1551785272269300 Content-Disposition: inline Content-Length: 1647 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/intellij-ce-bin/Makefile diff -u pkgsrc/devel/intellij-ce-bin/Makefile:1.1 pkgsrc/devel/intellij-ce-bin/Makefile:1.2 --- pkgsrc/devel/intellij-ce-bin/Makefile:1.1 Sun Mar 3 16:34:27 2019 +++ pkgsrc/devel/intellij-ce-bin/Makefile Tue Mar 5 11:27:52 2019 @@ -1,10 +1,11 @@ -# $NetBSD: Makefile,v 1.1 2019/03/03 16:34:27 youri Exp $ +# $NetBSD: Makefile,v 1.2 2019/03/05 11:27:52 ryoon Exp $ # # TODO Import intellij-fsnotifier with inotify support from FreeBSD. VERSION= 2018.3.5 DISTNAME= ideaIC-${VERSION:S/.0.0//}-no-jdk PKGNAME= intellij-ce-bin-${VERSION} +PKGREVISION= 1 CATEGORIES= devel MASTER_SITES= http://download.jetbrains.com/idea/ @@ -13,11 +14,13 @@ HOMEPAGE= http://www.jetbrains.org/ COMMENT= JetBrain\'s Java IDE LICENSE= apache-2.0 +DEPENDS+= intellij-fsnotifier-[0-9]*:../../sysutils/intellij-fsnotifier + WRKSRC= ${WRKDIR}/idea-IC-183.5912.21 USE_JAVA= yes USE_JAVA2= 8 -USE_TOOLS+= pax sed +USE_TOOLS+= bash pax sed REPLACE_PYTHON= bin/printenv.py \ bin/restart.py \ @@ -50,9 +53,9 @@ do-install: plugins/android/lib/libwebp/linux/libwebp_jni.so \ plugins/android/lib/libwebp/linux/libwebp_jni64.so && \ ${ECHO} "idea.filewatcher.disabled=true" >> bin/idea.properties && \ - ${SED} -e "s|@@IDEA_HOME@@|${PREFIX}/${PKGNAME}|g" \ + ${SED} -e "s|@@IDEA_HOME@@|${PREFIX}/${PKGNAME_NOREV}|g" \ ${FILESDIR}/idea.desktop > ${DESTDIR}${PREFIX}/share/applications/idea.desktop && \ - pax -rw -pm * ${DESTDIR}${PREFIX}/${PKGNAME} + pax -rw -pm * ${DESTDIR}${PREFIX}/${PKGNAME_NOREV} .include "../../lang/python/application.mk" .include "../../mk/java-vm.mk" --_----------=_1551785272269300--