Index: head/devel/libconcurrent/Makefile =================================================================== --- head/devel/libconcurrent/Makefile (revision 456315) +++ head/devel/libconcurrent/Makefile (revision 456316) @@ -1,54 +1,49 @@ # Created by: Tobias Kortkamp # $FreeBSD$ PORTNAME= libconcurrent -PORTVERSION= 0.0.20160303 -PORTREVISION= 4 +PORTVERSION= 0.0.20160629 CATEGORIES= devel MAINTAINER= tobik@FreeBSD.org COMMENT= Tiny asymmetric-coroutine library LICENSE= ZLIB LICENSE_FILE= ${WRKSRC}/LICENSE +ONLY_FOR_ARCHS= amd64 i386 + BUILD_DEPENDS= nasm:devel/nasm +USES= gmake compiler:c11 USE_GITHUB= yes GH_ACCOUNT= sharow # Rolling release -GH_TAGNAME= f55d33a789a4b2c6267268ec2d44a245f766f500 +GH_TAGNAME= d84e7374c89be147ed7c0ba0fe844dad7f7ebb3e -ONLY_FOR_ARCHS= i386 amd64 - -OPTIONS_DEFINE= EXAMPLES - MAKEFILE= makefile MAKE_ARGS= LIBCONCURRENT_DESTDIR=${STAGEDIR}${PREFIX} -USES= gmake compiler:c11 +TEST_TARGET= test +OPTIONS_DEFINE= EXAMPLES + post-patch: -# Remove explicitly (re-)set C compiler and linker in libconcurrent's -# makefile. The ports system will provide the correct ones. This is -# needed on FreeBSD 9 where cc does not understand -std=c11. - @${REINPLACE_CMD} 's/CC=cc//g' ${WRKSRC}/makefile - @${REINPLACE_CMD} 's/LD=ld//g' ${WRKSRC}/makefile # libconcurrent's makefile resets ${ARCH} internally and the ports # system interferes with that for some reason, so replace it with a -# more neutral variant. - @${REINPLACE_CMD} 's/ARCH/LIBCONCURRENT_ARCH/g' ${WRKSRC}/makefile -# Same with ${DESTDIR} - @${REINPLACE_CMD} 's/DESTDIR/LIBCONCURRENT_DESTDIR/g' ${WRKSRC}/makefile +# more neutral variant. Same with ${DESTDIR}. + @${REINPLACE_CMD} -e 's/ARCH/LIBCONCURRENT_ARCH/g' \ + -e 's/DESTDIR/LIBCONCURRENT_DESTDIR/g' \ + ${WRKSRC}/makefile post-patch-EXAMPLES-on: # Fix examples makefile to work out-of-tree @${REINPLACE_CMD} 's|INCDIR+=-I../include|INCDIR+=-I${PREFIX}/include|g' \ ${WRKSRC}/examples/makefile @${REINPLACE_CMD} 's|-L../|-L${PREFIX}/lib|g' \ ${WRKSRC}/examples/makefile post-install-EXAMPLES-on: @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} @(cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR}) .include Index: head/devel/libconcurrent/distinfo =================================================================== --- head/devel/libconcurrent/distinfo (revision 456315) +++ head/devel/libconcurrent/distinfo (revision 456316) @@ -1,2 +1,3 @@ -SHA256 (sharow-libconcurrent-0.0.20160303-f55d33a789a4b2c6267268ec2d44a245f766f500_GH0.tar.gz) = 418adeab02ce005756fc9c33165cf121ec4950f7e8f96b842fe22838a23953f4 -SIZE (sharow-libconcurrent-0.0.20160303-f55d33a789a4b2c6267268ec2d44a245f766f500_GH0.tar.gz) = 9550 +TIMESTAMP = 1513271521 +SHA256 (sharow-libconcurrent-0.0.20160629-d84e7374c89be147ed7c0ba0fe844dad7f7ebb3e_GH0.tar.gz) = 109acebc18bf81f16046e5f5011544ae4c849a8c1d31daebd7395fb0413b6a6f +SIZE (sharow-libconcurrent-0.0.20160629-d84e7374c89be147ed7c0ba0fe844dad7f7ebb3e_GH0.tar.gz) = 10374 Index: head/devel/libconcurrent/pkg-plist =================================================================== --- head/devel/libconcurrent/pkg-plist (revision 456315) +++ head/devel/libconcurrent/pkg-plist (revision 456316) @@ -1,12 +1,13 @@ include/concurrent/concurrent.h include/concurrent/shortname.h lib/libconcurrent.a %%PORTEXAMPLES%%%%EXAMPLESDIR%%/accumulator.c %%PORTEXAMPLES%%%%EXAMPLESDIR%%/concurrent_sort1.c %%PORTEXAMPLES%%%%EXAMPLESDIR%%/coroutine1.c %%PORTEXAMPLES%%%%EXAMPLESDIR%%/coroutine2.c %%PORTEXAMPLES%%%%EXAMPLESDIR%%/float1.c %%PORTEXAMPLES%%%%EXAMPLESDIR%%/float2.c %%PORTEXAMPLES%%%%EXAMPLESDIR%%/makefile %%PORTEXAMPLES%%%%EXAMPLESDIR%%/many_context1.c +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/strsplit.c %%PORTEXAMPLES%%%%EXAMPLESDIR%%/time_slice1.c