bbab7f59e9
- Remove all references to defunct ARCH arm - Remove all references to defunct ARCH sparc64 - Remove x11-drivers/xf86-video-sunffb which requires defunct sparc64 ARCH - Remove sysutils/afbinit requires defunct sparc64 ARCH - Remove all references to bktr driver - Remove all references to defunct FreeBSD_12 - Remove all references to OSVERSION/OSREL corresponding to 12 - Remove conditionals in Mk/Uses/cabal.mk - Remove sparc reference from Mk/Uses/qt-dist.mk - Remove BROKEN_sparc64/NOT_FOR_ARCH=sparc64 - Remove BROKEN_FreeBSD_12* from: - Remove OpenSSL patches from: - Remove conditional flags for OSVERSION >= 1300000 to fixed flags. Also move conditional flags for non sparc64/arm ARCH to fixed flags. Reviewed by: brooks, jbeich, rene, salvadore Differential Revision: https://reviews.freebsd.org/D42068
46 lines
1.1 KiB
Makefile
46 lines
1.1 KiB
Makefile
PORTNAME= concurrencykit
|
|
PORTVERSION= 0.6.0
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://concurrencykit.org/releases/ \
|
|
http://repnop.org/releases/
|
|
DISTNAME= ck-${PORTVERSION}
|
|
|
|
PATCH_SITES= https://github.com/${PORTNAME}/ck/commit/
|
|
PATCHFILES= 999d4612e873bb19867ad1d7043c9c18c7c4d3b9.patch:-p1
|
|
|
|
MAINTAINER= bofh@FreeBSD.org
|
|
COMMENT= Lock-free data structures for high performance concurrent systems
|
|
WWW= http://concurrencykit.org
|
|
|
|
LICENSE= BSD2CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
ONLY_FOR_ARCHS= aarch64 amd64 armv6 armv7 i386 powerpc powerpc64 powerpc64le
|
|
|
|
OPTIONS_DEFINE= RTM VMAPACK
|
|
OPTIONS_DEFAULT= VMAPACK
|
|
|
|
RTM_DESC= Restricted Transactional Memory (x86_64 only)
|
|
VMAPACK_DESC= Enable pointer packing
|
|
|
|
RTM_CONFIGURE_ON= --enable-rtm
|
|
VMAPACK_CONFIGURE_ON= --enable-pointer-packing
|
|
|
|
USES= pkgconfig
|
|
USE_LDCONFIG= yes
|
|
HAS_CONFIGURE= yes
|
|
|
|
CONFIGURE_ARGS+= --mandir=${PREFIX}/man
|
|
|
|
TEST_TARGET= check
|
|
|
|
PLIST_SUB+= VERSION=${PORTVERSION}
|
|
|
|
post-extract:
|
|
${REINPLACE_CMD} -e 's|PKGCONFIG_DATA=@LIBRARY@|PKGCONFIG_DATA=${PREFIX}/libdata/|g' \
|
|
${WRKSRC}/Makefile.in
|
|
|
|
post-install:
|
|
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libck.so.${PORTVERSION}
|
|
|
|
.include <bsd.port.mk>
|