1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-01 05:45:45 +00:00

- Convert to new options framework

- Remove ABI version from LIB_DEPENDS

Approved by:	eadler, bapt (mentors, implicit)
This commit is contained in:
Bryan Drewery 2012-08-30 12:08:46 +00:00
parent 0544a4ddff
commit ba51b87cf9
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=303371
2 changed files with 6 additions and 7 deletions

View File

@ -255,6 +255,7 @@ SPANDSP_DESC?= Spandsp faxing support
SPEEX_DESC?= Speex audio format support
SQL_DESC?= SQL database backend
SQLITE_DESC?= SQLite backend
SQLITE3_DESC?= SQLite3 backend
SSE_DESC?= Use SSE optimized routines
SSH_DESC?= SSH support
SSL_DESC?= SSL support

View File

@ -15,7 +15,7 @@ DISTNAME= gateway-${PORTVERSION}
MAINTAINER= ports@FreeBSD.org
COMMENT= WAP / SMS Gateway
LIB_DEPENDS= pcre.1:${PORTSDIR}/devel/pcre
LIB_DEPENDS= pcre:${PORTSDIR}/devel/pcre
USE_RC_SUBR= kannel
USE_GNOME= libxml2
@ -31,30 +31,28 @@ CONFIGURE_ARGS= --with-cflags="${CPPFLAGS}" --with-libs="${LDFLAGS}" \
MAN1= mtbatch.1 seewbmp.1 wmlsc.1 wmlsdasm.1
MAN8= kannel.8 run_kannel_box.8
OPTIONS= MYSQL "Enable MySQL support" off \
PGSQL "Enable PostgreSQL support" off \
SQLITE3 "Enable SQLite support" off
OPTIONS_DEFINE= MYSQL PGSQL SQLITE3
.include <bsd.port.options.mk>
CPPFLAGS+= -I${LOCALBASE}/include ${PTHREAD_CFLAGS}
LDFLAGS+= -L${LOCALBASE}/lib ${PTHREAD_LIBS}
.if defined(WITH_MYSQL)
.if ${PORT_OPTIONS:MMYSQL}
USE_MYSQL= yes
CONFIGURE_ARGS+=--with-mysql
.else
CONFIGURE_ARGS+=--without-mysql
.endif
.if defined(WITH_PGSQL)
.if ${PORT_OPTIONS:MPGSQL}
USE_PGSQL= yes
CONFIGURE_ARGS+=--with-pgsql
.else
CONFIGURE_ARGS+=--without-pgsql
.endif
.if defined(WITH_SQLITE3)
.if ${PORT_OPTIONS:MSQLITE3}
USE_SQLITE= 3
CONFIGURE_ARGS+=--with-sqlite3
.else