freebsd-ports/games/zaz/Makefile
Dmitry Marakasov 97b91f3fd1 - Support staging
- Use new LIB_DEPENDS syntax
2013-10-04 02:15:48 +00:00

48 lines
1.1 KiB
Makefile

# Created by: Dmitry Marakasov <amdmi3@FreeBSD.org>
# $FreeBSD$
PORTNAME= zaz
PORTVERSION= 1.0.0
PORTREVISION= 3
CATEGORIES= games
MASTER_SITES= SF/${PORTNAME}
MAINTAINER= amdmi3@FreeBSD.org
COMMENT= A puzzle game where the player has to arrange balls in triplets
LIB_DEPENDS= libfreetype.so:${PORTSDIR}/print/freetype2 \
libtheora.so:${PORTSDIR}/multimedia/libtheora \
libvorbis.so:${PORTSDIR}/audio/libvorbis \
libftgl.so:${PORTSDIR}/graphics/ftgl
USE_BZIP2= yes
GNU_CONFIGURE= yes
USES= pkgconfig
USE_SDL= sdl image
USE_GL= gl glu
CPPFLAGS+= -I${LOCALBASE}/include/freetype2 -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib ${PTHREAD_LIBS}
CONFIGURE_ARGS= --with-icondir="${PREFIX}/share/pixmaps"
PORTDOCS= *
PORTDATA= *
OPTIONS_DEFINE= DOCS
.include <bsd.port.options.mk>
# Unconditially disable NLS for now: the game segfaults with 8bit locales
#.if ${PORT_OPTIONS:MNLS}
#USES+= gettext
#PLIST_SUB+= NLS=""
#.else
CONFIGURE_ARGS+=--disable-nls
PLIST_SUB+= NLS="@comment "
#.endif
post-patch:
@${REINPLACE_CMD} -e '/^zazdocdir =/ s|$${prefix}/doc|$${prefix}/share/doc|' \
${WRKSRC}/Makefile.in
.include <bsd.port.mk>