1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-20 20:09:11 +00:00
freebsd-ports/games/lbreakout2/Makefile
Mathieu Arnold 4e1b79a0a6 Remove ${PORTSDIR}/ from dependencies, categories d, e, f, and g.
With hat:	portmgr
Sponsored by:	Absolight
2016-04-01 14:00:51 +00:00

56 lines
1.3 KiB
Makefile

# Created by: verm@drunkmonk.net
# $FreeBSD$
PORTNAME= lbreakout2
PORTVERSION= 2.6.5
CATEGORIES= games
MASTER_SITES= SF/lgames/${PORTNAME}/${PORTVERSION:R}
MAINTAINER= ports@FreeBSD.org
COMMENT= Breakout-style arcade game
LICENSE= GPLv2+
LICENSE_FILE= ${WRKSRC}/COPYING
BUILD_DEPENDS= gif2png:graphics/gif2png
LIB_DEPENDS= libpng.so:graphics/png
USES= gmake
USE_SDL= mixer net sdl
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --enable-sdl-net \
--localstatedir=/var/games \
--with-docdir=${PREFIX}/share/doc
CPPFLAGS+= $$(libpng-config --I_opts)
LDFLAGS+= $$(libpng-config --L_opts)
OPTIONS_DEFINE= DOCS NLS
OPTIONS_SUB= yes
NLS_USES= gettext
NLS_CONFIGURE_ENABLE= nls
post-patch:
@${REINPLACE_CMD} -e \
'/if test/s|==|=|' ${WRKSRC}/configure
@${REINPLACE_CMD} -e \
'/^icondir/s|icons|pixmaps| ; \
/^icon_DATA/s|48.gif|2.png| ; \
/Icon=/s|$$(datadir).*.gif|lbreakout2|' ${WRKSRC}/Makefile.in
@${REINPLACE_CMD} -e \
'/LDADD =/s|$$| @INTLLIBS@| ; \
s|: install-data-local|:|' ${WRKSRC}/client/Makefile.in
@${REINPLACE_CMD} -e \
'/LDADD =/s|$$| @INTLLIBS@|' ${WRKSRC}/server/Makefile.in
pre-build:
(cd ${WRKSRC} && ${CAT} lbreakout48.gif | gif2png -O -f \
> lbreakout2.png)
post-install:
(cd ${WRKSRC}/client && ${INSTALL_DATA} empty.hscr \
${STAGEDIR}${DATADIR})
.include <bsd.port.mk>