mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-04 01:48:54 +00:00
fbd0197639
- Update audio/sdl_mixer to 1.2.15 - Update graphics/sdl_image to 1.2.12 - Update graphics/sdl_ttf to 2.0.11 - Update graphics/sdl_gfx to 2.0.23 - Update net/sdl_net to 1.2.8 - Bump PORTREVISIONs on ports that depend on one or more packages due to ABI and shared library version changes - Update Mk/bsd.sdl.mk accordingly for the new shared library versions Tested by: exp-run by pav
40 lines
903 B
Makefile
40 lines
903 B
Makefile
# New ports collection makefile for: pipewalker
|
|
# Date created: 11 Aug 2009
|
|
# Whom: Dmitry Marakasov <amdmi3@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= pipewalker
|
|
PORTVERSION= 0.8.3
|
|
PORTREVISION= 1
|
|
CATEGORIES= games
|
|
MASTER_SITES= SF
|
|
EXTRACT_SUFX= -src.tar.gz
|
|
|
|
MAINTAINER= amdmi3@FreeBSD.org
|
|
COMMENT= A clone of the NetWalk game
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_SDL= sdl
|
|
USE_GL= gl glu
|
|
MAKE_JOBS_SAFE= yes
|
|
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib ${PTHREAD_LIBS}
|
|
|
|
PORTDOCS= *
|
|
|
|
post-patch:
|
|
@${CHMOD} a+x ${WRKSRC}/install-sh
|
|
@${REINPLACE_CMD} -e 's|(datadir)/games|(datadir)|' \
|
|
${WRKSRC}/data/Makefile.in ${WRKSRC}/src/Makefile.in
|
|
@${REINPLACE_CMD} -e '/^install-data-am/ s|install-pkgmenudataDATA||' \
|
|
${WRKSRC}/extra/Makefile.in
|
|
.if defined(NOPORTDOCS)
|
|
@${REINPLACE_CMD} -e '/^install-data-am/ s|install-pkgdocdataDATA||' \
|
|
${WRKSRC}/Makefile.in
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|