043e53b516
There are still some features not enabled by default, but this is a solid foundation upon which to build - a fully-functional PBX can be built, including PSTN gatewaying using the comms/zaptel-netbsd package. From the DESCR: Asterisk is a complete PBX in software. It provides all of the features you would expect from a PBX and more. Asterisk does voice over IP in three protocols, and can interoperate with almost all standards-based telephony equipment using relatively inexpensive hardware. Asterisk provides Voicemail services with Directory, Call Conferencing, Interactive Voice Response, Call Queuing. It has support for three-way calling, caller ID services, ADSI, SIP and H.323 (as both client and gateway).
22 lines
579 B
Makefile
22 lines
579 B
Makefile
# $NetBSD: options.mk,v 1.1.1.1 2005/04/08 03:10:52 riz Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.asterisk
|
|
PKG_SUPPORTED_OPTIONS= zaptel gtk
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Mzaptel)
|
|
# zaptel only supported under NetBSD at the moment
|
|
. include "../../comms/zaptel-netbsd/buildlink3.mk"
|
|
MAKE_FLAGS+= ASTERISK_USE_ZAPTEL=1
|
|
PLIST_SUBST+= ZAPTEL=
|
|
.else
|
|
PLIST_SUBST+= ZAPTEL="@comment "
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mgtk)
|
|
. include "../../x11/gtk/buildlink3.mk"
|
|
MAKE_FLAGS+= ASTERISK_USE_GTK=1
|
|
PLIST_SUBST+= GTK=
|
|
.else
|
|
PLIST_SUBST+= GTK="@comment "
|
|
.endif
|