freebsd-ports/games/moon-buggy/Makefile
Simon Barner a1556bb714 - Add WITH_ESOUND option (enables game sound)
- The PR implemented the sound option as a new moon-buggy-esound port,
  which I converted to the WITH_ESOUND option (that sets PKGNAMESUFFIX) [1]

Submitted by:		Ralf Becker <ralf@akk.org> (maintainer)
Approved by:		maintainer timeout (12 days) [1]
PR:			ports/81667
2005-06-13 11:32:32 +00:00

49 lines
1.1 KiB
Makefile

# New ports collection Makefile for: moon-buggy
# Date created: 10 January 2002
# Whom: Ralf Becker <ralf@akk.org>
#
# $FreeBSD$
#
PORTNAME= moon-buggy
PORTVERSION= 1.0
CATEGORIES= games
MASTER_SITES= http://www.seehuhn.de/data/
.if defined (WITH_ESOUND)
PKGNAMESUFFIX= "-esound"
DISTFILES= ${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX} \
${PORTNAME}-sound-${PORTVERSION}${EXTRACT_SUFX}
EXTRA_PATCHES= ${FILESDIR}/extra-patch-configure.ac
.endif
MAINTAINER= ralf@akk.org
COMMENT= Drive a buggy across the moons surface
.if defined (WITH_ESOUND)
LIB_DEPENDS= esd:${PORTSDIR}/audio/esound:install
.endif
USE_AUTOCONF_VER= 259
CONFIGURE_ARGS= --prefix=${PREFIX} \
--sharedstatedir=/var/games\
--with-setgid=games
MAN6= moon-buggy.6
INFO= moon-buggy
PLIST_FILES= bin/moon-buggy
.if defined (WITH_ESOUND)
PLIST_FILES+= share/moon-buggy/jump.wav \
share/moon-buggy/laser.wav \
share/moon-buggy/crash.wav
PLIST_DIRS+= share/moon-buggy
pre-patch:
cd ${WRKSRC} && ${PATCH} -p1 < sound.patch
.endif
# make package will fail without doing this
post-install:
${CHMOD} 0555 ${PREFIX}/bin/moon-buggy
.include <bsd.port.mk>