1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-19 19:59:43 +00:00
freebsd-ports/games/ltris/Makefile
Antoine Brodin 56b1cab26d - Allow staging as a regular user
- Bump portrevision as some files were not package with intended group
2014-09-13 11:20:21 +00:00

41 lines
928 B
Makefile

# Created by: Maxim Sobolev <sobomax@FreeBSD.org>
# $FreeBSD$
PORTNAME= ltris
PORTVERSION= 1.0.19
PORTREVISION= 2
PORTEPOCH= 1
CATEGORIES= games
MASTER_SITES= SF/lgames/${PORTNAME}
MAINTAINER= johans@FreeBSD.org
COMMENT= Tetris clone but a good one with bunch of cool features
USE_SDL= mixer sdl
GNU_CONFIGURE= yes
USES= gmake
CPPFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib
CONFIGURE_ARGS= --localstatedir=${DATADIR}
OPTIONS_DEFINE= NLS
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MNLS}
USES+= gettext
PLIST_SUB+= NLS=""
.else
CONFIGURE_ARGS+= --disable-nls
PLIST_SUB+= NLS="@comment "
.endif
post-patch:
@${REINPLACE_CMD} -e 's/\/icons/\/pixmaps/g' ${WRKSRC}/Makefile.in
@${REINPLACE_CMD} -e 's/= @mixer_flag@/= @INTLLIBS@ @mixer_flag@/g ; \
s/--mode=666//g' ${WRKSRC}/src/Makefile.in
@${REINPLACE_CMD} -e 's/^inline //' \
${WRKSRC}/src/sdl.h ${WRKSRC}/src/tools.h
.include <bsd.port.mk>