mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-01 01:17:02 +00:00
46 lines
949 B
Makefile
46 lines
949 B
Makefile
# Created by: Dmitry Marakasov <amdmi3@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= lander
|
|
PORTVERSION= 0.6.5
|
|
PORTREVISION= 2
|
|
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
|
|
|
|
LIB_DEPENDS= libfreetype.so:${PORTSDIR}/print/freetype2 \
|
|
libboost_filesystem.so:${PORTSDIR}/devel/boost-libs
|
|
|
|
GNU_CONFIGURE= yes
|
|
USES= gettext pkgconfig
|
|
USE_SDL= sdl image mixer
|
|
USE_GL= gl glu
|
|
|
|
CONFIGURE_ARGS= --with-boost="${LOCALBASE}" \
|
|
--with-boost-filesystem=boost_filesystem \
|
|
--disable-silent-rules
|
|
LDFLAGS= -L${LOCALBASE}/lib
|
|
|
|
PORTDOCS= *
|
|
PORTDATA= *
|
|
|
|
DESKTOP_ENTRIES="Lunar Lander" \
|
|
"Lunar Lander clone" \
|
|
"${DATADIR}/images/ship.png" \
|
|
"lander" \
|
|
"Game;ArcadeGame;" \
|
|
false
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-install:
|
|
${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR}/
|
|
|
|
.include <bsd.port.mk>
|