freebsd-ports/databases/kyotocabinet/Makefile
Philip M. Gollucci a103978295 - Update to 1.2.7
- MASTER_SITES udated
- MAN1 list updated
- THANKS removed from list of docs added to DOCSDIR
  (not present in vendor's archive anymore)
- files/patch-Makefile.in updated
- pkg-descr and pkg-plist updated

PR:             ports/149876
Submitted by:   Frederic Culot <frederic@culot.org>
Approved by:    maintainer timeout (knu ; 19 days)
2010-09-10 04:16:57 +00:00

69 lines
1.4 KiB
Makefile

# New ports collection makefile for: kyotocabinet
# Date created: 22 April 2010
# Whom: Akinori MUSHA aka knu <knu@idaemons.org>
#
# $FreeBSD$
#
PORTNAME= kyotocabinet
PORTVERSION= 1.2.7
CATEGORIES= databases
MASTER_SITES= http://fallabs.com/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 \
kcdirmgr.1 \
kcdirtest.1 \
kcforestmgr.1 \
kcforesttest.1 \
kcgrasstest.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 doc" ${DOCSDIR}/
.endif
.if exists(${PKGMESSAGE})
@${CAT} ${PKGMESSAGE}
.endif
.include <bsd.port.post.mk>