mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-26 00:55:14 +00:00
dd6f9aecd2
upstream forgot to regenerate the build scripts. This makes the build use the correct version information and causes a library version bump. Use this opportunity to use USES=libtool instead of USES=libtool:oldver. Bump PORTREVISION on all dependent ports and convert them to USES=libtool where needed. Also use USES=(gmake, pathfix, tar) and new LIB_DEPENDS syntax here and there. games/freedink-engine: - Option helpers. - Staging. - Use dirrmtry for locale directories. games/oolite: - Staging. - Replace ECHO with ECHO_CMD. - Don't use GNUSTEP_PREFIX to install files because it expands to LOCALBASE rather than PREFIX. games/openssn: - Remove USES=desktop-file-utils. No MimeType field in desktop file. - Staging. - Install files in standard DATADIR. games/xblast: - Use proper options. - Staging. - Patch configure so normal make install can be used instead of do-install. - Replace TAR | TAR with COPYTREE_SHARE.
29 lines
829 B
Makefile
29 lines
829 B
Makefile
# Created by: Edwin Groothuis <edwin@mavetju.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= xpired
|
|
PORTVERSION= 1.22
|
|
PORTREVISION= 19
|
|
CATEGORIES= games
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-linux/${PORTVERSION}
|
|
DISTNAME= ${PORTNAME}-${PORTVERSION}-linux_source
|
|
|
|
MAINTAINER= edwin@mavetju.org
|
|
COMMENT= An action-puzzle maze escape game (SDL)
|
|
|
|
USE_SDL= gfx image mixer sdl
|
|
WRKSRC= ${WRKDIR}/src
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/xpired ${WRKSRC}/xpiredit \
|
|
${STAGEDIR}${PREFIX}/bin
|
|
@${MKDIR} ${STAGEDIR}${DATADIR}/img
|
|
@${MKDIR} ${STAGEDIR}${DATADIR}/snd
|
|
.for files in xpired.lvl xpired.cfg bgimages.txt readme.txt xpired.dmo
|
|
${INSTALL_DATA} ${WRKSRC}/${files} ${STAGEDIR}${DATADIR}
|
|
.endfor
|
|
${INSTALL_DATA} ${WRKSRC}/img/* ${STAGEDIR}${DATADIR}/img
|
|
${INSTALL_DATA} ${WRKSRC}/snd/* ${STAGEDIR}${DATADIR}/snd
|
|
|
|
.include <bsd.port.mk>
|