41 lines
1.1 KiB
Makefile
41 lines
1.1 KiB
Makefile
# $OpenBSD: Makefile,v 1.17 2010/11/16 11:23:27 espie Exp $
|
|
|
|
COMMENT= jezzball-style, penguin puzzle game
|
|
|
|
DISTNAME= icebreaker-1.2.1
|
|
REVISION = 0
|
|
CATEGORIES= games
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
HOMEPAGE= http://www.mattdm.org/icebreaker/
|
|
|
|
MASTER_SITES= ${HOMEPAGE}1.2.x/
|
|
|
|
MAINTAINER= Peter Valchev <pvalchev@openbsd.org>
|
|
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
WANTLIB= SDL X11 Xext c m pthread pthread-stubs usbhid xcb \
|
|
SDL_mixer smpeg>=1.3
|
|
|
|
LIB_DEPENDS= devel/sdl-mixer \
|
|
devel/smpeg
|
|
|
|
USE_GMAKE= Yes
|
|
USE_GROFF = Yes
|
|
NO_REGRESS= Yes
|
|
MAKE_ENV= prefix="${PREFIX}" \
|
|
highscoredir="/var/games/icebreaker"
|
|
|
|
do-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/icebreaker
|
|
${INSTALL_DATA} ${WRKSRC}/*.{wav,bmp} ${PREFIX}/share/icebreaker
|
|
${INSTALL_PROGRAM} -g games -m 2755 ${WRKSRC}/icebreaker ${PREFIX}/bin
|
|
${INSTALL_DATA} ${WRKSRC}/icebreaker.6 ${PREFIX}/man/man6
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/icebreaker
|
|
${INSTALL_DATA} /dev/null ${PREFIX}/share/examples/icebreaker/icebreaker.scores
|
|
|
|
.include <bsd.port.mk>
|