6f6fbe4bdf
- Fix all ports that add {CPP,LD}FLAGS to *_ENV to modify flags instead PR: 157936 Submitted by: myself Exp-runs by: pav Approved by: pav
55 lines
1.8 KiB
Makefile
55 lines
1.8 KiB
Makefile
# New ports collection makefile for: flightgear-atlas
|
|
# Date created: 16 Sep 2005
|
|
# Whom: Jean-Yves Lefort <jylefort@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= flightgear-atlas
|
|
PORTVERSION= 0.3.1.20090529
|
|
PORTREVISION= 8
|
|
CATEGORIES= games
|
|
MASTER_SITES= http://contribs.martymac.org/FreeBSD-ports/distfiles/ \
|
|
http://freebsd.unixfreunde.de/sources/
|
|
DISTNAME= Atlas-${PORTVERSION}
|
|
|
|
MAINTAINER= martymac@FreeBSD.org
|
|
COMMENT= A map viewer for use with the FlightGear flight simulator
|
|
|
|
LICENSE= GPLv2
|
|
|
|
BUILD_DEPENDS= ${LOCALBASE}/lib/libplibsl.a:${PORTSDIR}/x11-toolkits/plib \
|
|
${LOCALBASE}/include/simgear/version.h:${PORTSDIR}/devel/simgear
|
|
LIB_DEPENDS= png.6:${PORTSDIR}/graphics/png \
|
|
jpeg.11:${PORTSDIR}/graphics/jpeg \
|
|
curl.6:${PORTSDIR}/ftp/curl
|
|
RUN_DEPENDS= ${LOCALBASE}/lib/libplibsl.a:${PORTSDIR}/x11-toolkits/plib \
|
|
${LOCALBASE}/include/simgear/version.h:${PORTSDIR}/devel/simgear \
|
|
${LOCALBASE}/share/flightgear/version:${PORTSDIR}/games/flightgear-data
|
|
|
|
BROKEN= does not build with SimGear 2.4.0
|
|
|
|
USE_AUTOTOOLS= aclocal autoheader automake autoconf
|
|
AUTOMAKE_ARGS= --add-missing
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_XORG= ice sm x11 xext xi xt xmu
|
|
USE_GL= gl glu glut
|
|
|
|
CPPFLAGS+= -I${LOCALBASE}/include ${PTHREAD_CFLAGS} \
|
|
-DSG_GLUT_H='<GL/glut.h>' \
|
|
-DSG_GL_H='<GL/gl.h>' \
|
|
-DSTL_STRING='<string>'
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
CONFIGURE_ARGS= --with-fgbase="${LOCALBASE}/share/flightgear"
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|^base_LIBS="$$LIBS"|base_LIBS="$$LIBS ${PTHREAD_LIBS}"|' ${WRKSRC}/configure.ac
|
|
@${REINPLACE_CMD} -e 's|^AC_CHECK_LIB(pthread, pthread_exit)||' ${WRKSRC}/configure.ac
|
|
@${REINPLACE_CMD} -e 's|-lpthread||' ${WRKSRC}/src/Makefile.am
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKSRC}/src/AtlasPalette ${LOCALBASE}/share/flightgear
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.mk>
|