mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-30 05:40:06 +00:00
be6c15b5c6
Add USES=xorg and USES=gl to ports in categories starting with 'g'. While here, try to sprinkle other USES (mostly gnome and sdl) as needed.
27 lines
657 B
Makefile
27 lines
657 B
Makefile
# Created by: Yukihiro Nakai <Nakai@Mlab.t.u-tokyo.ac.jp>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= xdino
|
|
PORTVERSION= 5.5.2
|
|
PORTREVISION= 2
|
|
CATEGORIES= games
|
|
MASTER_SITES= XCONTRIB/games/xpuzzles
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Dino puzzle game for X11
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
|
USES= imake xorg
|
|
USE_XORG= x11 xext xt sm ice
|
|
|
|
PLIST_FILES= bin/xdino \
|
|
man/man1/xdino.1.gz \
|
|
lib/X11/app-defaults/Dino
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/xdino ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_DATA} ${WRKSRC}/Dino.ad ${STAGEDIR}${PREFIX}/lib/X11/app-defaults/Dino
|
|
${INSTALL_MAN} ${WRKSRC}/xdino.man ${STAGEDIR}${MANPREFIX}/man/man1/xdino.1
|
|
|
|
.include <bsd.port.mk>
|