63850835a5
The GNU Gatekeeper is an open-source project that implements an H.323 gatekeeper. A gatekeeper provides call control services to the H.323 endpoints. It is an integral part of most useful internet telephony installations that are based on the H.323 standard. According to the recommendations from H.323, GnuGK provides most of the following functions based on the OpenH323 protocol stack: * Address Translation * Admissions Control * Bandwidth Control * Zone Management * Call Control Signaling * Call Authorization * Bandwidth Management * Call Management ok kili@
75 lines
1.7 KiB
Makefile
75 lines
1.7 KiB
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2007/04/27 21:10:42 ajacoutot Exp $
|
|
|
|
SHARED_ONLY= Yes
|
|
|
|
COMMENT= "H.323 gatekeeper"
|
|
|
|
DISTNAME= gnugk-2.2.6
|
|
CATEGORIES= net telephony
|
|
|
|
HOMEPAGE= http://www.gnugk.org/
|
|
|
|
MAINTAINER= Antoine Jacoutot <ajacoutot@openbsd.org>
|
|
|
|
# GPLv2
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=openh323gk/}
|
|
|
|
WANTLIB= avutil c crypto expat m ossaudio pt pthread ssl stdc++
|
|
|
|
LIB_DEPENDS= h323.>=1::net/openh323
|
|
|
|
GNUGK_ID= _gnugk
|
|
SUBST_VARS= GNUGK_ID
|
|
|
|
USE_GMAKE= Yes
|
|
ALL_TARGET= optshared addpasswd
|
|
NO_REGRESS= Yes
|
|
|
|
CONFIGURE_STYLE=gnu
|
|
CONFIGURE_ARGS= --enable-radius \
|
|
--disable-firebird
|
|
|
|
MAKE_ENV+= CC=${CC} CPLUS=${CXX} \
|
|
STDCCFLAGS="${STDCCFLAGS} -I${LOCALBASE}/include/openh323" \
|
|
OH323_LIBDIR=${LOCALBASE}/lib \
|
|
SYSLIBDIR=`ptlib-config --libdir` \
|
|
PTLIB_FILE=libpt.`ptlib-config --sharedlibext`.`ptlib-config --version`
|
|
|
|
FLAVORS= mysql pgsql
|
|
FLAVOR?=
|
|
|
|
.if ${FLAVOR:L:Mmysql}
|
|
WANTLIB+= z
|
|
LIB_DEPENDS+= mysqlclient.>=18::databases/mysql
|
|
CONFIGURE_ARGS+=--enable-mysql
|
|
.else
|
|
CONFIGURE_ARGS+=--disable-mysql
|
|
.endif
|
|
|
|
.if ${FLAVOR:L:Mpgsql}
|
|
LIB_DEPENDS+= pq.>=5::databases/postgresql
|
|
CONFIGURE_ARGS+=--enable-pgsql \
|
|
--with-pgsql-include-dir=${LOCALBASE}/include/postgresql
|
|
.else
|
|
CONFIGURE_ARGS+=--disable-pgsql
|
|
.endif
|
|
|
|
pre-configure:
|
|
@perl -pi -e 's,!!SYSCONFDIR!!,${SYSCONFDIR},g' \
|
|
${WRKSRC}/docs/gnugk.1
|
|
|
|
post-install:
|
|
${INSTALL_MAN_DIR} ${PREFIX}/man/man1/
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/gnugk/
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/gnugk/
|
|
${INSTALL_MAN} ${WRKSRC}/docs/gnugk.1 ${PREFIX}/man/man1/
|
|
${INSTALL_DATA} ${WRKSRC}/docs/*.txt ${PREFIX}/share/doc/gnugk/
|
|
cp ${WRKSRC}/etc/* ${PREFIX}/share/examples/gnugk/
|
|
|
|
.include <bsd.port.mk>
|