mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-27 05:10:36 +00:00
f8ec1d6881
Use correct syntax to tell configure to disable extensions. Remove unneeded dependency.
154 lines
4.2 KiB
Makefile
154 lines
4.2 KiB
Makefile
# New ports collection makefile for: SQL Relay
|
|
# Date created: 2 July 2001
|
|
# Whom: Akinori MUSHA aka knu <knu@idaemons.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= ${SQLRELAY_PORTNAME}
|
|
PORTVERSION= ${SQLRELAY_PORTVERSION}
|
|
CATEGORIES= databases
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= sqlrelay
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= A persistent DB connection pooling/proxying/load balancing system
|
|
|
|
LIB_DEPENDS= rudiments.0:${PORTSDIR}/devel/rudiments
|
|
|
|
USE_ICONV= yes
|
|
USE_REINPLACE= yes
|
|
USE_GMAKE= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
PTHREADINCLUDES="${PTHREAD_CFLAGS}" \
|
|
PTHREADLIBS="${PTHREAD_LIBS}"
|
|
CONFIGURE_ARGS= ${SQLRELAY_CONFIGURE_ARGS} \
|
|
--disable-tcl \
|
|
--disable-java \
|
|
--disable-perl \
|
|
--disable-php \
|
|
--disable-python \
|
|
--disable-ruby \
|
|
--disable-zope
|
|
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
|
MAKE_ARGS= VERSION="${PORTVERSION:R}"
|
|
INSTALLS_SHLIB= yes
|
|
|
|
POSTGRESQL_PORT?= databases/postgresql7
|
|
|
|
.include "${.CURDIR}/Makefile.common"
|
|
|
|
OPTIONS= MSQL "Build MSQL connection" off \
|
|
MYSQL "Build MySQL connection" off \
|
|
ODBC "Build ODBC connection" off \
|
|
POSTGRESQL "Build PostgreSQL connection" off \
|
|
SQLITE "Build SQLite connection" off \
|
|
FREETDS "Build FreeTDS connection" off \
|
|
INTERBASE "Build Interbase connection" off \
|
|
GTK "Build GTK configuration tool" off
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if defined(WITH_SQLITE) && ${WITH_SQLITE:L} != no
|
|
LIB_DEPENDS+= gdbm.3:${PORTSDIR}/databases/gdbm \
|
|
sqlite.2:${PORTSDIR}/databases/sqlite
|
|
CONFIGURE_ARGS+= --with-gdbm-prefix="${LOCALBASE}" \
|
|
--with-sqlite-prefix="${LOCALBASE}"
|
|
IF_SQLITE= ""
|
|
.else
|
|
CONFIGURE_ARGS+= --without-gdbm-prefix \
|
|
--disable-sqlite
|
|
IF_SQLITE= "@comment "
|
|
.endif
|
|
|
|
.if defined(WITH_MYSQL) && ${WITH_MYSQL:L} != no
|
|
USE_MYSQL= yes
|
|
CONFIGURE_ARGS+= --with-mysql-prefix="${LOCALBASE}"
|
|
IF_MYSQL= ""
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-mysql
|
|
IF_MYSQL= "@comment "
|
|
.endif
|
|
|
|
.if defined(WITH_INTERBASE) && ${WITH_INTERBASE:L} != no
|
|
LIB_DEPENDS+= gds.1:${PORTSDIR}/databases/firebird
|
|
CONFIGURE_ARGS+= --with-interbase-prefix="${LOCALBASE}/firebird"
|
|
IF_INTERBASE= ""
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-interbase
|
|
IF_INTERBASE= "@comment "
|
|
.endif
|
|
|
|
.if defined(WITH_MSQL) && ${WITH_MSQL:L} != no
|
|
LIB_DEPENDS+= msql.1:${PORTSDIR}/databases/msql
|
|
CONFIGURE_ARGS+= --with-msql-prefix="${LOCALBASE}"
|
|
IF_MSQL= ""
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-msql
|
|
IF_MSQL= "@comment "
|
|
.endif
|
|
|
|
.if defined(WITH_POSTGRESQL) && ${WITH_POSTGRESQL:L} != no
|
|
LIB_DEPENDS+= pq.3:${PORTSDIR}/${POSTGRESQL_PORT}
|
|
CONFIGURE_ARGS+= --with-postgresql-prefix="${LOCALBASE}"
|
|
IF_POSTGRESQL= ""
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-postgresql
|
|
IF_POSTGRESQL= "@comment "
|
|
.endif
|
|
|
|
.if defined(WITH_ODBC) && ${WITH_ODBC:L} != no
|
|
LIB_DEPENDS+= odbc.1:${PORTSDIR}/databases/unixODBC
|
|
CONFIGURE_ARGS+= --with-odbc-prefix="${LOCALBASE}"
|
|
IF_ODBC= ""
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-odbc
|
|
IF_ODBC= "@comment "
|
|
.endif
|
|
|
|
.if defined(WITH_FREETDS) && ${WITH_FREETDS:L} != no
|
|
LIB_DEPENDS+= tds.3:${PORTSDIR}/databases/freetds
|
|
CONFIGURE_ARGS+= --with-freetds-prefix="${LOCALBASE}"
|
|
IF_FREETDS= ""
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-freetds
|
|
IF_FREETDS= "@comment "
|
|
.endif
|
|
|
|
.if defined(WITH_GTK) && ${WITH_GTK:L} != no
|
|
LIB_DEPENDS+= gtk12.2:${PORTSDIR}/x11-toolkits/gtk12
|
|
CONFIGURE_ARGS+= --with-gtk-prefix="${X11BASE}"
|
|
IF_GTK= ""
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-gtk
|
|
IF_GTK= "@comment "
|
|
.endif
|
|
|
|
PLIST_SUB= IF_SQLITE=${IF_SQLITE} \
|
|
IF_MYSQL=${IF_MYSQL} \
|
|
IF_MSQL=${IF_MSQL} \
|
|
IF_POSTGRESQL=${IF_POSTGRESQL} \
|
|
IF_ODBC=${IF_ODBC} \
|
|
IF_FREETDS=${IF_FREETDS} \
|
|
IF_INTERBASE=${IF_INTERBASE} \
|
|
IF_GTK=${IF_GTK}
|
|
|
|
MAN1= fields.1 query.1 query.py.1 sqlr-config-gtk.1 sqlrsh.1
|
|
MAN8= sqlr-connection.8 sqlr-cachemanager.8 sqlr-ipclean.8 \
|
|
sqlr-listener.8 sqlr-scaler.8 sqlr-start.8 sqlr-stop.8
|
|
|
|
post-patch:
|
|
${REINPLACE_CMD} -E \
|
|
-e 's,/usr/local[[:>:]],${PREFIX},g;' \
|
|
-e 's,[[:<:]]gtk-config[[:>:]],${GTK_CONFIG:T},g;' \
|
|
${WRKSRC}/configure
|
|
${REINPLACE_CMD} -E \
|
|
-e 's,\.so\.\$$\(SQLR_VERSION\),\.so\.$$(basename $$(SQLR_VERSION)),g;' \
|
|
${WRKSRC}/src/api/c/src/Makefile \
|
|
${WRKSRC}/src/api/c++/src/Makefile
|
|
${FIND} ${WRKSRC} -name Makefile | ${XARGS} ${REINPLACE_CMD} -E \
|
|
-e 's#-release \$$\(SQLR_VERSION\)##g;'
|
|
|
|
.include <bsd.port.post.mk>
|