blob: 8fd9809acae728b3706ac380ef56597538af6b94 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# $NetBSD: options.mk,v 1.1 2012/06/02 07:11:09 wiz Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.gnumeric
PKG_SUPPORTED_OPTIONS= psiconv
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mpsiconv)
.include "../../converters/psiconv/buildlink3.mk"
.else
CONFIGURE_ARGS+= --without-psiconv
.endif
|