0c320fdf24
PR: ports/69102 Submitted by: Jean-Yves Lefort <jylefort@brutele.be>
43 lines
1.1 KiB
Makefile
43 lines
1.1 KiB
Makefile
# New ports collection makefile for: Dodgin' Diamond 2
|
|
# Date created: 15 Jul 2004
|
|
# Whom: Jean-Yves Lefort <jylefort@brutele.be>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= dodgindiamond2
|
|
PORTVERSION= 0.2.1
|
|
CATEGORIES= games
|
|
MASTER_SITES= http://www.usebox.net/jjm/dd2/releases/
|
|
DISTNAME= dd2-${PORTVERSION}
|
|
|
|
MAINTAINER= jylefort@brutele.be
|
|
COMMENT= An old school shoot'em up game
|
|
|
|
USE_X_PREFIX= yes
|
|
USE_SDL= sdl image mixer
|
|
GNU_CONFIGURE= yes
|
|
USE_REINPLACE= yes
|
|
CONFIGURE_ARGS= --localstatedir=/var/games
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|COPYING||g' ${WRKSRC}/Makefile.in
|
|
.if defined(NOPORTDOCS)
|
|
@${REINPLACE_CMD} -e 's|^docs_DATA = .*|docs_DATA =|' ${WRKSRC}/Makefile.in
|
|
.endif
|
|
|
|
post-install:
|
|
${MKDIR} ${PREFIX}/etc
|
|
${INSTALL_DATA} ${WRKSRC}/src/data/dd2.cfg ${PREFIX}/etc/dd2.cfg.sample
|
|
.if !exists(${PREFIX}/etc/dd2.cfg)
|
|
${INSTALL_DATA} ${WRKSRC}/src/data/dd2.cfg ${PREFIX}/etc
|
|
.endif
|
|
.if !exists(/var/games/dd2-hiscore)
|
|
${MKDIR} /var/games
|
|
${INSTALL} -g games -m 664 ${WRKSRC}/src/data/dd2-hiscore /var/games
|
|
.endif
|
|
${CHGRP} games ${PREFIX}/bin/dd2
|
|
${CHMOD} g+s ${PREFIX}/bin/dd2
|
|
|
|
.include <bsd.port.mk>
|