blob: fec94b0802041e3f17b4401a447495d8091b5851 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# $NetBSD: options.mk,v 1.2 2005/10/05 13:29:49 wiz Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.gqmpeg
PKG_SUPPORTED_OPTIONS= gqmpeg-japanese gqmpeg-russian
PKG_SUGGESTED_OPTIONS= gqmpeg-japanese gqmpeg-russian
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mgqmpeg-japanese)
CONFIGURE_ARGS+= --enable-japanese
.endif
.if !empty(PKG_OPTIONS:Mgqmpeg-russian)
CONFIGURE_ARGS+= --enable-russian
.endif
|