mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-25 00:51:21 +00:00
4c46ca73d8
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.
25 lines
615 B
Makefile
25 lines
615 B
Makefile
# Created by: Roman Bogorodskiy <novel@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= xidle
|
|
PORTVERSION= 26052015
|
|
CATEGORIES= x11
|
|
MASTER_SITES= LOCAL/novel
|
|
|
|
MAINTAINER= novel@FreeBSD.org
|
|
COMMENT= Run a program on X inactivity
|
|
|
|
USES= tar:bzip2 xorg
|
|
CFLAGS+= -I${LOCALBASE}/include -D__dead=static
|
|
MAKE_ARGS+= X11BASE="${LOCALBASE}" \
|
|
CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}"
|
|
|
|
USE_XORG= x11 xscrnsaver xcb xau xdmcp xext
|
|
PLIST_FILES= bin/xidle man/man1/xidle.1.gz
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/xidle ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/xidle.1 ${STAGEDIR}${PREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|