mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-08 06:48:28 +00:00
701aa3bcf8
Changes: http://www.boost.org/users/history/version_1_72_0.html PR: 241449 Exp-run by: antoine Differential Revision: https://reviews.freebsd.org/D22136
51 lines
1.1 KiB
Makefile
51 lines
1.1 KiB
Makefile
# Created by: Dmitry Marakasov <amdmi3@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= lander
|
|
PORTVERSION= 0.6.6
|
|
PORTREVISION= 20
|
|
CATEGORIES= games
|
|
MASTER_SITES= http://www.nickg.me.uk/files/ \
|
|
http://mirror.amdmi3.ru/distfiles/
|
|
|
|
MAINTAINER= amdmi3@FreeBSD.org
|
|
COMMENT= Lunar Lander clone
|
|
|
|
LICENSE= GPLv3+
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
BROKEN_powerpc64= fails to configure: error: Could not link against boost_filesystem-boost_filesystem
|
|
|
|
LIB_DEPENDS= libfreetype.so:print/freetype2 \
|
|
libboost_filesystem.so:devel/boost-libs \
|
|
libpng.so:graphics/png
|
|
|
|
GNU_CONFIGURE= yes
|
|
USES= compiler:c++11-lib gettext gl localbase pkgconfig sdl
|
|
USE_SDL= sdl image mixer
|
|
USE_GL= gl glu
|
|
|
|
CONFIGURE_ARGS= --with-boost="${LOCALBASE}" \
|
|
--with-boost-filesystem=boost_filesystem
|
|
|
|
PORTDOCS= *
|
|
PORTDATA= *
|
|
|
|
DESKTOP_ENTRIES="Lunar Lander" \
|
|
"Lunar Lander clone" \
|
|
"${DATADIR}/images/ship.png" \
|
|
"lander" \
|
|
"Game;ArcadeGame;" \
|
|
false
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|-R$$found_dir||g' ${WRKSRC}/configure
|
|
|
|
post-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR}/
|
|
|
|
.include <bsd.port.mk>
|