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.
32 lines
615 B
Makefile
32 lines
615 B
Makefile
# Created by: Dmitri Goutnik <dg@syrec.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= hhpc
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 0.3.1
|
|
CATEGORIES= x11
|
|
|
|
MAINTAINER= dmgk@FreeBSD.org
|
|
COMMENT= Small X11 utility to hide the mouse pointer when unused
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
|
|
USES= gmake localbase pkgconfig xorg
|
|
USE_XORG= x11
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= aktau
|
|
ALL_TARGET= release
|
|
|
|
PLIST_FILES= bin/hhpc
|
|
|
|
PORTDOCS= README.md
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/hhpc ${STAGEDIR}${PREFIX}/bin/
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|