mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-08-03 09:48:00 -04:00
30 lines
640 B
Makefile
30 lines
640 B
Makefile
# $NetBSD: options.mk,v 1.6 2015/07/23 20:54:54 markd Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.gimp
|
|
PKG_SUPPORTED_OPTIONS= aalib mng pdf svg
|
|
PKG_SUGGESTED_OPTIONS= mng svg
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
PLIST_VARS+= aalib mng pdf svg
|
|
|
|
.if !empty(PKG_OPTIONS:Maalib)
|
|
.include "../../graphics/aalib/buildlink3.mk"
|
|
PLIST.aalib= yes
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mmng)
|
|
.include "../../graphics/mng/buildlink3.mk"
|
|
PLIST.mng= yes
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mpdf)
|
|
.include "../../print/poppler-glib/buildlink3.mk"
|
|
PLIST.pdf= yes
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Msvg)
|
|
.include "../../graphics/librsvg/buildlink3.mk"
|
|
PLIST.svg= yes
|
|
.endif
|