mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-08-03 09:48:00 -04:00
15 lines
362 B
Makefile
15 lines
362 B
Makefile
# $NetBSD: options.mk,v 1.5 2016/08/02 18:29:21 adam Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.gd
|
|
PKG_SUPPORTED_OPTIONS= x11
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Mx11)
|
|
.include "../../x11/libXpm/buildlink3.mk"
|
|
CONFIGURE_ENV+= X11BASE=${X11BASE}
|
|
CONFIGURE_ARGS+= --with-xpm=${BUILDLINK_PREFIX.libXpm}
|
|
.else
|
|
CONFIGURE_ARGS+= --without-xpm
|
|
.endif
|