23 lines
735 B
Makefile
23 lines
735 B
Makefile
# $NetBSD: options.mk,v 1.2 2015/12/29 04:54:36 dholland Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.freeswitch
|
|
PKG_SUPPORTED_OPTIONS= freeswitch-08k freeswitch-16k freeswitch-32k freeswitch-48k
|
|
PKG_SUGGESTED_OPTIONS= freeswitch-08k freeswitch-16k
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Mfreeswitch-08k)
|
|
DISTFILES+= freeswitch-sounds-ru-RU-elena-8000-${VERSION}.tar.gz
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mfreeswitch-16k)
|
|
DISTFILES+= freeswitch-sounds-ru-RU-elena-16000-${VERSION}.tar.gz
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mfreeswitch-32k)
|
|
DISTFILES+= freeswitch-sounds-ru-RU-elena-32000-${VERSION}.tar.gz
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mfreeswitch-48k)
|
|
DISTFILES+= freeswitch-sounds-ru-RU-elena-48000-${VERSION}.tar.gz
|
|
.endif
|