freebsd-ports/x11/xkbset/Makefile
Niclas Zeising 4c46ca73d8 Add USES=xorg USES=gl, ports categories x
Add USES=xorg and USES=gl to ports in categories starting with 'x'
While here, try to sprinkle other USES (mostly gnome and sdl) as needed.
2019-11-07 18:36:55 +00:00

38 lines
865 B
Makefile

# Created by: Stephen Montgomery-Smith <stephen@math.missouri.edu>
# $FreeBSD$
PORTNAME= xkbset
PORTVERSION= 0.5
PORTREVISION= 3
CATEGORIES= x11
MASTER_SITES= http://faculty.missouri.edu/~stephen/software/xkbset/ \
http://www.math.missouri.edu/~stephen/software/xkbset/
MAINTAINER= stephen@FreeBSD.org
COMMENT= Manage various XKB features of X Window
LICENSE= BSD3CLAUSE
USES= perl5 xorg
USE_XORG= x11
USE_PERL5= build
MAKE_ARGS= X11BASE="${LOCALBASE}" X11PREFIX="${PREFIX}" \
INSTALL_DATA="${INSTALL_DATA}" \
INSTALL_PROGRAM="${INSTALL_PROGRAM}"
OPTIONS_DEFINE= GUI
GUI_DESC= Install Tk GUI
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MGUI}
RUN_DEPENDS+= p5-Tk>=0:x11-toolkits/p5-Tk
PLIST_SUB+= GUI=""
MAKE_ARGS+= INSTALL_SCRIPT="${INSTALL_SCRIPT}"
.else
PLIST_SUB+= GUI="@comment "
MAKE_ARGS+= INSTALL_SCRIPT=:
.endif
.include <bsd.port.mk>