diff options
author | reinoud <reinoud> | 2006-01-25 00:00:03 +0000 |
---|---|---|
committer | reinoud <reinoud> | 2006-01-25 00:00:03 +0000 |
commit | 4fbb1921c61441d998ff696e49f227b4f1ff4903 (patch) | |
tree | 935ded5ffc7c06e81b1436a2218efce61f8d7fc9 /net/kiax/Makefile | |
parent | 02e805ac70a7f06ea127f12422bcbb4c34737353 (diff) | |
download | pkgsrc-4fbb1921c61441d998ff696e49f227b4f1ff4903.tar.gz |
Initial import of kiax 0.8.4
In the process of the development of Asterisk a new protocol has gathered
the attention among the VoIP users - the Inter-Asterisk eXchange, or IAX
(TM), Protocol, used as a the native communication protocol between
Asterisk PBX Servers. What is particularly good in it is that it requires
only one UDP port per endpoint to create a successful communication channel
for VoIP calls. This makes it much friendlier for users behind NAT, which
is not the case with SIP and H.323 - they required specific router
configurations for their channel establishment, thus hindering faster
spread of VoIP on the home and corporate desktop.
Diffstat (limited to 'net/kiax/Makefile')
-rw-r--r-- | net/kiax/Makefile | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/net/kiax/Makefile b/net/kiax/Makefile new file mode 100644 index 00000000000..729e1fcd376 --- /dev/null +++ b/net/kiax/Makefile @@ -0,0 +1,32 @@ +# $NetBSD: Makefile,v 1.1.1.1 2006/01/25 00:00:03 reinoud Exp $ +# + +DISTNAME= kiax-0.8.4 +CATEGORIES= comms net audio +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=kiax/} +EXTRACT_SUFX= .tar.bz2 + +MAINTAINER= reinoud@NetBSD.org +HOMEPAGE= http://www.kiax.org/ +COMMENT= Open internet telephony system + +USE_PKGLOCALEDIR= yes +USE_TOOLS+= gmake pkg-config +HAS_CONFIGURE= yes + +do-configure: + (cd ${WRKSRC} && ${QTDIR}/bin/qmake -o Makefile qkiax.pro) + (cd ${WRKSRC}/src && ${QTDIR}/bin/qmake -o Makefile src.pro) + +LDFLAGS+= -lossaudio + +# Fix hardcoded paths +SUBST_CLASSES+= path +SUBST_MESSAGE.path= Fixing hardcoded paths. +SUBST_STAGE.path= pre-configure +SUBST_FILES.path= src/src.pro bin/Makefile +SUBST_SED.path= -e 's:/usr/local:${PREFIX}:g' + +.include "../../x11/qt3-libs/buildlink3.mk" +.include "../../x11/qt3-tools/buildlink3.mk" +.include "../../mk/bsd.pkg.mk" |