aboutsummaryrefslogtreecommitdiffstats
path: root/databases/kyotocabinet/Makefile
blob: 1022bd6fe998bc3f127f5fa93d4553ac95e26576 (plain) (blame)
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# New ports collection makefile for:    kyotocabinet
# Date created:     22 April 2010
# Whom:         Akinori MUSHA aka knu <knu@idaemons.org>
#
# $FreeBSD$
#

PORTNAME=   kyotocabinet
PORTVERSION=    0.9.18
CATEGORIES= databases
MASTER_SITES=   http://1978th.net/kyotocabinet/

MAINTAINER= knu@FreeBSD.org
COMMENT=    A straightforward implementation of DBM

MAKE_JOBS_SAFE= yes

USE_GCC=    4.2+
GNU_CONFIGURE=  yes
USE_GMAKE=  yes
USE_LDCONFIG=   yes
MAKE_ARGS=  PCDIR="${PREFIX}/libdata/pkgconfig"

.include <bsd.port.pre.mk>

.if ${ARCH} == "i386" && !defined(CPUTYPE)
CONFIGURE_TARGET=   i586-portbld-freebsd${OSREL}
CPUTYPE=    i586
PKGMESSAGE= ${FILESDIR}/pkg-message.${ARCH}
# _CPUCFLAGS will somehow show up twice in CFLAGS but who cares..
.include <bsd.cpu.mk>
.endif

.if !defined(NOPORTDOCS)
PORTDOCS=   *
.endif

MAN1=       kccachetest.1 \
        kchashmgr.1 \
        kchashtest.1 \
        kclangctest.1 \
        kcpolymgr.1 \
        kcpolytest.1 \
        kcprototest.1 \
        kctreemgr.1 \
        kctreetest.1 \
        kcutilcodec.1 \
        kcutiltest.1

check: build
    cd ${WRKSRC}; ${MAKE} check

post-install:
    ${MKDIR} ${DATADIR}
    ${INSTALL_DATA} ${WRKSRC}/kyotocabinet.idl ${DATADIR}/
.if !defined(NOPORTDOCS)
    ${MKDIR} ${DOCSDIR}
    cd ${WRKSRC} && ${COPYTREE_SHARE} "COPYING ChangeLog THANKS doc" ${DOCSDIR}/
.endif
.if exists(${PKGMESSAGE})
    @${CAT} ${PKGMESSAGE}
.endif

.include <bsd.port.post.mk>