mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-18 03:46:03 +00:00
d4f0d0048a
- Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}. - Bump PORTREVISION for ports intalling files in ${X11BASE}.
56 lines
1.5 KiB
Makefile
56 lines
1.5 KiB
Makefile
# New ports collection makefile for: rocksndiamonds
|
|
# Date created: 27 May 1999
|
|
# Whom: Thomas Gellekum <tg@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= rocksndiamonds
|
|
PORTVERSION= 3.2.3
|
|
PORTREVISION= 1
|
|
CATEGORIES= games
|
|
MASTER_SITES= http://www.artsoft.org/RELEASES/unix/rocksndiamonds/ \
|
|
http://homepages.compuserve.de/rocksndiamonds/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Colorful Boulderdash'n'Emerald Mine'n'Sokoban'n'Stuff
|
|
|
|
USE_GMAKE= yes
|
|
MAKE_ARGS= CC="${CC}" MAKE="${GMAKE}" OPTIONS="${CFLAGS}" \
|
|
RO_GAME_DIR="${DATADIR}" RW_GAME_DIR="${DATADIR}/scores" \
|
|
X11_PATH="${X11BASE}"
|
|
|
|
MAN1= rocksndiamonds.1
|
|
|
|
.if defined(WITH_SDL)
|
|
LIB_DEPENDS+= smpeg:${PORTSDIR}/multimedia/smpeg
|
|
USE_SDL= image mixer net sdl
|
|
ALL_TARGET= sdl
|
|
.else
|
|
USE_XLIB= yes
|
|
ALL_TARGET= x11
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e \
|
|
's:sdl-config:$${SDL_CONFIG}:g' ${WRKSRC}/src/Makefile
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/rocksndiamonds ${TARGETDIR}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/rocksndiamonds.1 ${MANPREFIX}/man/man1
|
|
@${MKDIR} ${DATADIR}
|
|
${TAR} -C ${WRKSRC} -cf - graphics levels music scores sounds | \
|
|
${TAR} -C ${DATADIR} -xf -
|
|
@${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${DATADIR}
|
|
@${CHMOD} 777 ${DATADIR}/scores
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
.for docfile in CHANGES CREDITS HARDWARE README TODO
|
|
${INSTALL_DATA} ${WRKSRC}/${docfile} ${DOCSDIR}
|
|
.endfor
|
|
@${MKDIR} ${DOCSDIR}/elements
|
|
${INSTALL_DATA} ${WRKSRC}/docs/elements/*.txt ${DOCSDIR}/elements
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|