2021-11-14 19:42:27 +01:00
|
|
|
# $NetBSD: options.mk,v 1.7 2021/11/14 18:42:27 tsutsui Exp $
|
Import jwm from pkgsrc-wip.
This was packaged by pip88nl of gmail.com with some minor changes
by me.
JWM is a light-weight window manager for the X11 Window System.
It provides a menu, taskbar, key binding, system notification tray,
pager, a dock, and simple customizations. JWM is written in C and
uses only Xlib and the shape extension, libXpm and (optionally)
libpng. It can support some MWM, GNOME, and WM Spec hints.
(This software needs some work, but I import to official pkgsrc
so it will get more usage. I have been using it for a couple
months now. With its built-in features, it is a smaller than
blackbox with add-ons.)
2006-08-04 03:08:21 +02:00
|
|
|
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.jwm
|
2021-11-14 19:42:27 +01:00
|
|
|
PKG_SUPPORTED_OPTIONS= debug cairo jpeg png svg
|
|
|
|
PKG_SUGGESTED_OPTIONS= cairo jpeg png svg
|
Import jwm from pkgsrc-wip.
This was packaged by pip88nl of gmail.com with some minor changes
by me.
JWM is a light-weight window manager for the X11 Window System.
It provides a menu, taskbar, key binding, system notification tray,
pager, a dock, and simple customizations. JWM is written in C and
uses only Xlib and the shape extension, libXpm and (optionally)
libpng. It can support some MWM, GNOME, and WM Spec hints.
(This software needs some work, but I import to official pkgsrc
so it will get more usage. I have been using it for a couple
months now. With its built-in features, it is a smaller than
blackbox with add-ons.)
2006-08-04 03:08:21 +02:00
|
|
|
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
|
|
|
|
.if !empty(PKG_OPTIONS:Mdebug)
|
|
|
|
CONFIGURE_ARGS+= --enable-debug
|
|
|
|
.endif
|
|
|
|
|
2021-11-14 19:42:27 +01:00
|
|
|
.if !empty(PKG_OPTIONS:Mcairo)
|
|
|
|
.include "../../graphics/cairo/buildlink3.mk"
|
2016-10-10 15:22:22 +02:00
|
|
|
.else
|
2021-11-14 19:42:27 +01:00
|
|
|
CONFIGURE_ARGS+= --disable-cairo
|
2008-06-17 02:00:30 +02:00
|
|
|
.endif
|
|
|
|
|
|
|
|
.if !empty(PKG_OPTIONS:Mjpeg)
|
2010-12-23 12:44:24 +01:00
|
|
|
.include "../../mk/jpeg.buildlink3.mk"
|
2016-10-10 15:22:22 +02:00
|
|
|
.else
|
|
|
|
CONFIGURE_ARGS+= --disable-jpeg
|
2008-06-17 02:00:30 +02:00
|
|
|
.endif
|
|
|
|
|
Import jwm from pkgsrc-wip.
This was packaged by pip88nl of gmail.com with some minor changes
by me.
JWM is a light-weight window manager for the X11 Window System.
It provides a menu, taskbar, key binding, system notification tray,
pager, a dock, and simple customizations. JWM is written in C and
uses only Xlib and the shape extension, libXpm and (optionally)
libpng. It can support some MWM, GNOME, and WM Spec hints.
(This software needs some work, but I import to official pkgsrc
so it will get more usage. I have been using it for a couple
months now. With its built-in features, it is a smaller than
blackbox with add-ons.)
2006-08-04 03:08:21 +02:00
|
|
|
.if !empty(PKG_OPTIONS:Mpng)
|
|
|
|
.include "../../graphics/png/buildlink3.mk"
|
|
|
|
.else
|
2007-02-22 20:26:05 +01:00
|
|
|
CONFIGURE_ARGS+= --disable-png
|
Import jwm from pkgsrc-wip.
This was packaged by pip88nl of gmail.com with some minor changes
by me.
JWM is a light-weight window manager for the X11 Window System.
It provides a menu, taskbar, key binding, system notification tray,
pager, a dock, and simple customizations. JWM is written in C and
uses only Xlib and the shape extension, libXpm and (optionally)
libpng. It can support some MWM, GNOME, and WM Spec hints.
(This software needs some work, but I import to official pkgsrc
so it will get more usage. I have been using it for a couple
months now. With its built-in features, it is a smaller than
blackbox with add-ons.)
2006-08-04 03:08:21 +02:00
|
|
|
.endif
|
2016-10-10 15:22:22 +02:00
|
|
|
|
|
|
|
.if !empty(PKG_OPTIONS:Msvg)
|
|
|
|
.include "../../graphics/librsvg/buildlink3.mk"
|
|
|
|
.else
|
|
|
|
CONFIGURE_ARGS+= --disable-rsvg
|
|
|
|
.endif
|