20 lines
379 B
Makefile
20 lines
379 B
Makefile
|
# $NetBSD: options.mk,v 1.1.1.1 2009/11/19 15:48:19 sborrill Exp $
|
||
|
|
||
|
PKG_OPTIONS_VAR= PKG_OPTIONS.vnstat
|
||
|
PKG_SUPPORTED_OPTIONS= gd
|
||
|
PKG_SUGGESTED_OPTIONS= gd
|
||
|
|
||
|
.include "../../mk/bsd.options.mk"
|
||
|
|
||
|
PLIST_VARS= gd
|
||
|
###
|
||
|
### Add support for image output
|
||
|
###
|
||
|
.if !empty(PKG_OPTIONS:Mgd)
|
||
|
BUILD_TARGET= all
|
||
|
PLIST.gd= yes
|
||
|
.include "../../graphics/gd/buildlink3.mk"
|
||
|
.else
|
||
|
BUILD_TARGET=
|
||
|
.endif
|