Received: by mail.netbsd.org (Postfix, from userid 605) id 8E9C884D9C; Tue, 5 Mar 2019 11:28:34 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 1515C84D5D for ; Tue, 5 Mar 2019 11:28:34 +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 0_9h0IpQIxxu for ; Tue, 5 Mar 2019 11:28:33 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 948F884D24 for ; Tue, 5 Mar 2019 11:28:33 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 9215FFB16; Tue, 5 Mar 2019 11:28:33 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1551785313167200" MIME-Version: 1.0 Date: Tue, 5 Mar 2019 11:28:33 +0000 From: "Ryo ONODERA" Subject: CVS commit: pkgsrc/devel/pycharm-bin To: pkgsrc-changes@NetBSD.org Reply-To: ryoon@netbsd.org X-Mailer: log_accum Message-Id: <20190305112833.9215FFB16@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. --_----------=_1551785313167200 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:28:33 UTC 2019 Modified Files: pkgsrc/devel/pycharm-bin: Makefile Log Message: Depend on fsnotifier and fix an installation issue * Depend on sysutils/fsnotifier * Replace PKGNAME with PKGNAME_NOREV in do-install target for consistent PLIST * Bump PKGREVISION To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 pkgsrc/devel/pycharm-bin/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1551785313167200 Content-Disposition: inline Content-Length: 1482 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/pycharm-bin/Makefile diff -u pkgsrc/devel/pycharm-bin/Makefile:1.1 pkgsrc/devel/pycharm-bin/Makefile:1.2 --- pkgsrc/devel/pycharm-bin/Makefile:1.1 Sun Mar 3 18:02:47 2019 +++ pkgsrc/devel/pycharm-bin/Makefile Tue Mar 5 11:28:33 2019 @@ -1,9 +1,10 @@ -# $NetBSD: Makefile,v 1.1 2019/03/03 18:02:47 youri Exp $ +# $NetBSD: Makefile,v 1.2 2019/03/05 11:28:33 ryoon Exp $ VERSION= 2018.3.5 DISTNAME= pycharm-community-${VERSION} PKGNAME= pycharm-bin-${VERSION} +PKGREVISION= 1 CATEGORIES= devel MASTER_SITES= http://download.jetbrains.com/python/ @@ -12,6 +13,8 @@ HOMEPAGE= http://www.jetbrains.org/ COMMENT= JetBrain\'s python IDE LICENSE= apache-2.0 +DEPENDS+= intellij-fsnotifier-[0-9]*:../../sysutils/intellij-fsnotifier + WRKSRC= ${WRKDIR}/pycharm-community-${VERSION} USE_JAVA= yes USE_JAVA2= 8 @@ -51,10 +54,10 @@ do-install: helpers/pydev/pydevd_attach_to_process/attach_linux_amd64.so \ helpers/pydev/pydevd_attach_to_process/attach_linux_x86.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}/pycharm.desktop > \ ${DESTDIR}${PREFIX}/share/applications/pycharm.desktop && \ - pax -rw -pm * ${DESTDIR}${PREFIX}/${PKGNAME} + pax -rw -pm * ${DESTDIR}${PREFIX}/${PKGNAME_NOREV} .include "../../lang/python/application.mk" .include "../../mk/java-vm.mk" --_----------=_1551785313167200--