31 lines
652 B
Makefile
31 lines
652 B
Makefile
|
# Created by: Kubilay Kocak <koobs@FreeBSD.org>
|
||
|
# $FreeBSD$
|
||
|
|
||
|
PORTNAME= concurrencykit
|
||
|
PORTVERSION= 0.2.19
|
||
|
CATEGORIES= devel
|
||
|
MASTER_SITES= http://concurrencykit.org/releases/ \
|
||
|
http://repnop.org/releases/
|
||
|
DISTNAME= ck-${PORTVERSION}
|
||
|
|
||
|
MAINTAINER= koobs@FreeBSD.org
|
||
|
COMMENT= Lock-free data structures for high performance concurrent systems
|
||
|
|
||
|
LICENSE= BSD
|
||
|
|
||
|
USES= pkgconfig
|
||
|
USE_LDCONFIG= yes
|
||
|
|
||
|
GNU_CONFIGURE= yes
|
||
|
|
||
|
.include "${.CURDIR}/Makefile.man"
|
||
|
|
||
|
post-extract:
|
||
|
${REINPLACE_CMD} -e 's|PKGCONFIG_DATA=@LIBRARY@|PKGCONFIG_DATA=${PREFIX}/libdata/|g' \
|
||
|
${WRKSRC}/Makefile.in
|
||
|
|
||
|
regression-test: build
|
||
|
@cd ${WRKSRC} && ${MAKE} check
|
||
|
|
||
|
.include <bsd.port.mk>
|