freebsd-ports/databases/libzdb/Makefile
Wen Heping 6608d50315 - Update to 2.7
- Pass maintainership to submitter
- Add LICENSE

PR:		ports/151526
Submitted by:	C-S <c-s@c-s.li>
2010-11-03 07:24:26 +00:00

56 lines
1.1 KiB
Makefile

# New ports collection makefile for: libzdb
# Date created: Nov 28 2005
# Whom: vanilla@
#
# $FreeBSD$
#
PORTNAME= libzdb
PORTVERSION= 2.7
CATEGORIES= databases
MASTER_SITES= http://www.tildeslash.com/libzdb/dist/ \
http://www.c-s.li/ports/
MAINTAINER= c-s@c-s.li
COMMENT= Thread-safe connection pool library
LICENSE= GPLv3
OPTIONS= MYSQL "Add MySQL support" on \
SQLITE "Add Sqlite support" on \
PGSQL "Add PgSQL support" on
USE_GNOME= gnomehack
USE_GMAKE= yes
USE_AUTOTOOLS= libtool:22
CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}"
USE_LDCONFIG= yes
MAKE_JOBS_SAFE= yes
CPPFLAGS= -I${LOCALBASE}/include ${PTHREAD_CFLAGS}
LDFLAGS= -L${LOCALBASE}/lib ${PTHREAD_LIBS}
.include <bsd.port.pre.mk>
.if defined(WITH_MYSQL)
USE_MYSQL= yes
CONFIGURE_ARGS+= --with-mysql=${LOCALBASE}/bin/mysql_config
.else
CONFIGURE_ARGS+= --without-mysql
.endif
.if defined(WITH_SQLITE)
USE_SQLITE= 3
CONFIGURE_ARGS+= --with-sqlite=${LOCALBASE}
.else
CONFIGURE_ARGS+= --without-sqlite
.endif
.if defined(WITH_PGSQL)
USE_PGSQL= yes
CONFIGURE_ARGS+= --with-pgsql=${LOCALBASE}/bin/pg_config
.else
CONFIGURE_ARGS+= --without-pgsql
.endif
.include <bsd.port.post.mk>