mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-27 05:10:36 +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.
37 lines
772 B
Makefile
37 lines
772 B
Makefile
# Created by: Andrey Zakhvatov
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= xdigger
|
|
PORTVERSION= 1.0.10
|
|
PORTREVISION= 4
|
|
CATEGORIES= games
|
|
MASTER_SITES= SUNSITE/games/arcade
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Boulderdash-like KC85 Digger for X Window System
|
|
|
|
LICENSE= GPLv2+
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
USES= imake tar:tgz xorg
|
|
USE_XORG= x11 xext
|
|
|
|
DESKTOP_ENTRIES="XDigger" "" "" "${PORTNAME}" "" ""
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e "s|%%PREFIX%%|${PREFIX}|g" ${WRKSRC}/configure.h
|
|
|
|
post-install:
|
|
${MV} ${STAGEDIR}/var/games/xdigger.hiscore \
|
|
${STAGEDIR}/var/games/xdigger.hiscore.sample
|
|
|
|
post-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
.for i in ChangeLog README
|
|
${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${DOCSDIR}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|