diff options
Diffstat (limited to 'graphics/gimp/options.mk')
-rw-r--r-- | graphics/gimp/options.mk | 20 |
1 files changed, 17 insertions, 3 deletions
diff --git a/graphics/gimp/options.mk b/graphics/gimp/options.mk index d1b34b49a73..4e1b4916e0a 100644 --- a/graphics/gimp/options.mk +++ b/graphics/gimp/options.mk @@ -1,8 +1,8 @@ -# $NetBSD: options.mk,v 1.1 2007/10/25 21:06:17 adam Exp $ +# $NetBSD: options.mk,v 1.2 2007/10/28 16:43:00 dogcow Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.gimp -PKG_SUPPORTED_OPTIONS= aalib gnome -PKG_SUGGESTED_OPTIONS= aalib gnome +PKG_SUPPORTED_OPTIONS= aalib gnome mng svg +PKG_SUGGESTED_OPTIONS= aalib gnome mng svg .include "../../mk/bsd.options.mk" @@ -19,3 +19,17 @@ PLIST_SUBST+= GNOME= .else PLIST_SUBST+= GNOME="@comment " .endif + +.if !empty(PKG_OPTIONS:Mmng) +.include "../../graphics/mng/buildlink3.mk" +PLIST_SUBST+= MNG= +.else +PLIST_SUBST+= MNG="@comment " +.endif + +.if !empty(PKG_OPTIONS:Msvg) +.include "../../graphics/librsvg/buildlink3.mk" +PLIST_SUBST+= SVG= +.else +PLIST_SUBST+= SVG="@comment " +.endif |