Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 10 Dec 2016 23:21:47 +0300
From:      Boris Samorodov <bsam@passap.ru>
To:        Boris Samorodov <bsam@FreeBSD.org>, ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   Re: svn commit: r428322 - head/comms/java-simple-serial-connector
Message-ID:  <daeae504-85f8-c6af-0947-3e2836d08278@passap.ru>
In-Reply-To: <201612102018.uBAKIc8m031650@repo.freebsd.org>
References:  <201612102018.uBAKIc8m031650@repo.freebsd.org>

next in thread | previous in thread | raw e-mail | index | archive | help
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 <bsdports@kyle-evans.net> (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 <bsd.port.pre.mk>
>  
>  .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
> 




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?daeae504-85f8-c6af-0947-3e2836d08278>