From owner-svn-ports-all@freebsd.org Sat Dec 10 20:21:56 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 42B8FC713DD; Sat, 10 Dec 2016 20:21:56 +0000 (UTC) (envelope-from bsam@passap.ru) Received: from forward4o.cmail.yandex.net (forward4o.cmail.yandex.net [IPv6:2a02:6b8:0:1a72::289]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "forwards.mail.yandex.net", Issuer "Yandex CA" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id F2E71114A; Sat, 10 Dec 2016 20:21:55 +0000 (UTC) (envelope-from bsam@passap.ru) Received: from smtp1m.mail.yandex.net (smtp1m.mail.yandex.net [77.88.61.132]) by forward4o.cmail.yandex.net (Yandex) with ESMTP id 3782A20BDD; Sat, 10 Dec 2016 23:21:52 +0300 (MSK) Received: from smtp1m.mail.yandex.net (localhost.localdomain [127.0.0.1]) by smtp1m.mail.yandex.net (Yandex) with ESMTP id 9824663C0CF6; Sat, 10 Dec 2016 23:21:50 +0300 (MSK) Received: by smtp1m.mail.yandex.net (nwsmtp/Yandex) with ESMTPSA id gEiys7Cd8W-LnV4YPOd; Sat, 10 Dec 2016 23:21:49 +0300 (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client certificate not present) X-Yandex-Suid-Status: 1 0,1 0,1 0,1 0 Subject: Re: svn commit: r428322 - head/comms/java-simple-serial-connector To: Boris Samorodov , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org References: <201612102018.uBAKIc8m031650@repo.freebsd.org> From: Boris Samorodov Message-ID: Date: Sat, 10 Dec 2016 23:21:47 +0300 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:45.0) Gecko/20100101 Thunderbird/45.4.0 MIME-Version: 1.0 In-Reply-To: <201612102018.uBAKIc8m031650@repo.freebsd.org> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 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: Sat, 10 Dec 2016 20:21:56 -0000 10.12.2016 23:18, Boris Samorodov пишет: > Author: bsam > Date: Sat Dec 10 20:18:38 2016 > New Revision: 428322 Sorry, the PR actually is 214778. (It was an attachement id I used instead of the PR no). > URL: https://svnweb.freebsd.org/changeset/ports/428322 > > Log: > comms/java-simple-serial-connector: Do not rewrite system variable ARCH: > rename ARCH -> JSSC_ARCH. > > PR: 177334 > Submitted by: linimon > Patched by: Kyle Evans (maintainer) > > Modified: > head/comms/java-simple-serial-connector/Makefile > > Modified: head/comms/java-simple-serial-connector/Makefile > ============================================================================== > --- head/comms/java-simple-serial-connector/Makefile Sat Dec 10 20:10:15 2016 (r428321) > +++ head/comms/java-simple-serial-connector/Makefile Sat Dec 10 20:18:38 2016 (r428322) > @@ -25,7 +25,9 @@ PLIST_FILES= ${JAVA_HOME}/jre/lib/ext/js > .include > > .if ${ARCH} == "armv6" || ${ARCH} == "aarch64" > -ARCH= arm > +JSSC_ARCH= arm > +.else > +JSSC_ARCH= ${ARCH} > .endif > > post-extract: > @@ -35,8 +37,8 @@ post-extract: > pre-build: > ${RM} -r ${WRKSRC_LIBS}/* > ${MKDIR} ${WRKSRC_LIBS}/freebsd > - (cd ${WRKSRC}/src/cpp/_nix_based && ${CXX} ${CXXFLAGS} ${CPPFLAGS} -shared -fPIC -o ${WRKSRC_LIBS}/freebsd/libjSSC-${MAJOR_MINOR}_${ARCH}.so jssc.cpp) > - ${STRIP_CMD} ${WRKSRC_LIBS}/freebsd/libjSSC-${MAJOR_MINOR}_${ARCH}.so > + (cd ${WRKSRC}/src/cpp/_nix_based && ${CXX} ${CXXFLAGS} ${CPPFLAGS} -shared -fPIC -o ${WRKSRC_LIBS}/freebsd/libjSSC-${MAJOR_MINOR}_${JSSC_ARCH}.so jssc.cpp) > + ${STRIP_CMD} ${WRKSRC_LIBS}/freebsd/libjSSC-${MAJOR_MINOR}_${JSSC_ARCH}.so > > do-install: > @${MKDIR} ${STAGEDIR}${JAVA_HOME}/jre/lib/ext >