blob: 8d8ea57c401430db5c403a185d286cbc9c12bf92 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# $NetBSD: Makefile,v 1.45 2019/07/11 09:25:26 nia Exp $
#
DISTNAME= tokyocabinet-1.4.48
CATEGORIES= databases
MASTER_SITES= ${HOMEPAGE}
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= https://fallabs.com/tokyocabinet/
COMMENT= Modern implementation of DBM
LICENSE= gnu-lgpl-v2.1
GNU_CONFIGURE= yes
USE_GCC_RUNTIME=yes
USE_TOOLS+= gmake pkg-config
USE_LANGUAGES= c99
PKGCONFIG_OVERRIDE+= tokyocabinet.pc.in
.include "options.mk"
TEST_TARGET= check
.include "../../mk/pthread.buildlink3.mk"
PTHREAD_AUTO_VARS= yes
.if defined(PTHREAD_TYPE) && ${PTHREAD_TYPE} == "none"
CONFIGURE_ARGS+= --disable-pthread
.else
CONFIGURE_ARGS+= --enable-pthread
SUBST_CLASSES+= pthread
SUBST_STAGE.pthread= pre-configure
SUBST_FILES.pthread= configure
SUBST_SED.pthread= -e 's|-lpthread|${PTHREAD_LIBS}|'
.endif
.include "../../mk/bsd.pkg.mk"
|