mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-01 01:17:02 +00:00
76 lines
1.7 KiB
Makefile
76 lines
1.7 KiB
Makefile
# Created by: Domas Mituzas <midom@dammit.lt>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= kannel
|
|
PORTVERSION= 1.5.0
|
|
PORTREVISION= 2
|
|
CATEGORIES= www
|
|
MASTER_SITES= http://www.kannel.org/download/${PORTVERSION}/
|
|
MASTER_SITE_SUBDIR= ${PORTVERSION}
|
|
DISTNAME= gateway-${PORTVERSION}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= WAP / SMS Gateway
|
|
|
|
LIB_DEPENDS= pcre:${PORTSDIR}/devel/pcre
|
|
|
|
USE_RC_SUBR= kannel
|
|
USE_GNOME= libxml2
|
|
USE_OPENSSL= yes
|
|
USE_GMAKE= yes
|
|
USE_BZIP2= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --with-cflags="${CPPFLAGS}" --with-libs="${LDFLAGS}" \
|
|
--enable-pcre=yes --enable-docs=no --with-malloc=native \
|
|
--enable-start-stop-daemon=no --without-sdb --without-oracle \
|
|
--without-sqlite2
|
|
|
|
MAN1= mtbatch.1 seewbmp.1 wmlsc.1 wmlsdasm.1
|
|
MAN8= kannel.8 run_kannel_box.8
|
|
|
|
OPTIONS_DEFINE= MYSQL PGSQL SQLITE3
|
|
|
|
NO_STAGE= yes
|
|
.include <bsd.port.options.mk>
|
|
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib -pthread
|
|
|
|
.if ${PORT_OPTIONS:MMYSQL}
|
|
USE_MYSQL= yes
|
|
CONFIGURE_ARGS+=--with-mysql
|
|
.else
|
|
CONFIGURE_ARGS+=--without-mysql
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MPGSQL}
|
|
USE_PGSQL= yes
|
|
CONFIGURE_ARGS+=--with-pgsql
|
|
.else
|
|
CONFIGURE_ARGS+=--without-pgsql
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MSQLITE3}
|
|
USE_SQLITE= 3
|
|
CONFIGURE_ARGS+=--with-sqlite3
|
|
.else
|
|
CONFIGURE_ARGS+=--without-sqlite3
|
|
.endif
|
|
|
|
.if ${ARCH} == "alpha"
|
|
BROKEN= Does not compile on alpha
|
|
.endif
|
|
|
|
post-install:
|
|
.for filename in wapkannel.conf smskannel.conf
|
|
${INSTALL_DATA} ${WRKSRC}/gw/${filename} ${PREFIX}/etc/${filename}.sample
|
|
.endfor
|
|
.for filename in mtbatch seewbmp wmlsc wmlsdasm
|
|
@${STRIP_CMD} ${PREFIX}/bin/${filename}
|
|
.endfor
|
|
.for filename in bearerbox run_kannel_box smsbox wapbox
|
|
@${STRIP_CMD} ${PREFIX}/sbin/${filename}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|