8142f7bd5c
QDBM is an embeded database library compatible with GDBM and NDBM. It features hash database and B+ tree database and is developed referring to GDBM for the purpose of the following three points: higher processing speed, smaller size of a database file, and simpler API. This package provides the C++ interface of QDBM.
28 lines
733 B
Makefile
28 lines
733 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2005/11/23 06:57:45 minskim Exp $
|
|
#
|
|
|
|
.include "../../databases/qdbm/Makefile.common"
|
|
|
|
PKGNAME= qdbm-plus-1.0.0.${QDBM_VERSION}
|
|
CATEGORIES= databases devel
|
|
|
|
MAINTAINER= obata@lins.jp
|
|
HOMEPAGE= http://qdbm.sourceforge.net/
|
|
COMMENT= C++ API for QDBM
|
|
|
|
MY_SUBDIR= plus
|
|
BUILD_DIRS= ${MY_SUBDIR}
|
|
CONFIGURE_DIRS= ${MY_SUBDIR}
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_LANGUAGES+= c++
|
|
TEST_TARGET= check
|
|
|
|
.include "../../databases/qdbm/buildlink3.mk"
|
|
.if defined(PTHREAD_TYPE) && ${PTHREAD_TYPE} != "none"
|
|
SUBST_CLASSES+= pthread
|
|
SUBST_STAGE.pthread= pre-configure
|
|
SUBST_FILES.pthread= ${MY_SUBDIR}/configure
|
|
SUBST_SED.pthread= -e 's|-lpthread|${PTHREAD_LIBS}|'
|
|
.endif
|
|
.include "../../mk/bsd.pkg.mk"
|