Received: by mail.netbsd.org (Postfix, from userid 605) id 77EE684E6E; Mon, 1 Jan 2018 01:22:00 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 046FD84E68 for ; Mon, 1 Jan 2018 01:22:00 +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 R-9PsBCUbcis for ; Mon, 1 Jan 2018 01:21:59 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 8692C84D86 for ; Mon, 1 Jan 2018 01:21:59 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 81E23FB40; Mon, 1 Jan 2018 01:21:59 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1514769719248390" MIME-Version: 1.0 Date: Mon, 1 Jan 2018 01:21:59 +0000 From: "Roland Illig" Subject: CVS commit: pkgsrc/lang/abcl To: pkgsrc-changes@NetBSD.org Reply-To: rillig@netbsd.org X-Mailer: log_accum Message-Id: <20180101012159.81E23FB40@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. --_----------=_1514769719248390 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: rillig Date: Mon Jan 1 01:21:59 UTC 2018 Modified Files: pkgsrc/lang/abcl: Makefile Log Message: Cleanup: replace curly braces with parentheses. To generate a diff of this commit: cvs rdiff -u -r1.12 -r1.13 pkgsrc/lang/abcl/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1514769719248390 Content-Disposition: inline Content-Length: 1967 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/abcl/Makefile diff -u pkgsrc/lang/abcl/Makefile:1.12 pkgsrc/lang/abcl/Makefile:1.13 --- pkgsrc/lang/abcl/Makefile:1.12 Sun Sep 17 15:04:23 2017 +++ pkgsrc/lang/abcl/Makefile Mon Jan 1 01:21:59 2018 @@ -1,9 +1,9 @@ -# $NetBSD: Makefile,v 1.12 2017/09/17 15:04:23 asau Exp $ +# $NetBSD: Makefile,v 1.13 2018/01/01 01:21:59 rillig Exp $ DISTNAME= abcl-src-1.5.0 -PKGNAME= $(DISTNAME:C/-src//) +PKGNAME= ${DISTNAME:C/-src//} CATEGORIES= lang -MASTER_SITES= http://abcl.org/releases/$(PKGVERSION_NOREV)/ +MASTER_SITES= http://abcl.org/releases/${PKGVERSION_NOREV}/ MAINTAINER= asau@inbox.ru HOMEPAGE= http://abcl.org/ @@ -14,20 +14,20 @@ BUILD_DEPENDS= apache-ant>=1.7.1:../../d INSTALLATION_DIRS= bin lib/abcl do-build: - $(RUN)$(_ULIMIT_CMD) cd $(WRKSRC) && \ - $(PKGSRC_SETENV) $(MAKE_ENV) \ - ant -nouserlib -Dabcl.runtime.jar.path=$(PREFIX)/lib/abcl/abcl.jar + ${RUN}${_ULIMIT_CMD} cd ${WRKSRC} && \ + ${PKGSRC_SETENV} ${MAKE_ENV} \ + ant -nouserlib -Dabcl.runtime.jar.path=${PREFIX}/lib/abcl/abcl.jar do-install: - $(INSTALL_SCRIPT) $(WRKSRC)/abcl $(DESTDIR)$(PREFIX)/bin - $(INSTALL_DATA) $(WRKSRC)/dist/abcl.jar $(DESTDIR)$(PREFIX)/lib/abcl - $(INSTALL_DATA) $(WRKSRC)/dist/abcl-contrib.jar $(DESTDIR)$(PREFIX)/lib/abcl + ${INSTALL_SCRIPT} ${WRKSRC}/abcl ${DESTDIR}${PREFIX}/bin + ${INSTALL_DATA} ${WRKSRC}/dist/abcl.jar ${DESTDIR}${PREFIX}/lib/abcl + ${INSTALL_DATA} ${WRKSRC}/dist/abcl-contrib.jar ${DESTDIR}${PREFIX}/lib/abcl # TODO: requires network connectivity to fetch dependencies (e.g. JUnit) do-test: - $(RUN)$(_ULIMIT_CMD) cd $(WRKSRC) && \ - $(PKGSRC_SETENV) $(MAKE_ENV) \ - ant -nouserlib -Dabcl.runtime.jar.path=$(PREFIX)/lib/abcl/abcl.jar abcl.test + ${RUN}${_ULIMIT_CMD} cd ${WRKSRC} && \ + ${PKGSRC_SETENV} ${MAKE_ENV} \ + ant -nouserlib -Dabcl.runtime.jar.path=${PREFIX}/lib/abcl/abcl.jar abcl.test .include "../../mk/java-vm.mk" .include "../../mk/bsd.pkg.mk" --_----------=_1514769719248390--