blob: d1b34b49a732a9b20e537e920e2790a4709dfe2a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# $NetBSD: options.mk,v 1.1 2007/10/25 21:06:17 adam Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.gimp
PKG_SUPPORTED_OPTIONS= aalib gnome
PKG_SUGGESTED_OPTIONS= aalib gnome
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Maalib)
.include "../../graphics/aalib/buildlink3.mk"
PLIST_SUBST+= AALIB=
.else
PLIST_SUBST+= AALIB="@comment "
.endif
.if !empty(PKG_OPTIONS:Mgnome)
.include "../../www/libgtkhtml/buildlink3.mk"
PLIST_SUBST+= GNOME=
.else
PLIST_SUBST+= GNOME="@comment "
.endif
|