3e4a131b3b
to blame: in v1.53 they had the following change in their headers: - explicit shared_array(T * p = 0): px(p), pn(p, deleter()) + shared_array() BOOST_NOEXCEPT : px( 0 ), pn() { } + template<class Y> + explicit shared_array( Y * p ): px( p ), pn( p, checked_array_deleter<Y>() ) + { + boost::detail::sp_assert_convertible< Y[], T[] >(); + } The solution is pretty simple: use default constructor instead of NULL when initializing a shared_array; it was the default anyway [1] - Add missing `pkgconfig' to USES, otherwise it won't find GTK+2 - Cleanup Makefile, sort the knobs, trim USE_GL (glut implies gl and glu) - Transfer maintainership to games@ team - Reword COMMENT and port description; add LICENSE (GPLv2) while here [1] http://www.luxrender.net/mantis/view.php?id=1368
62 lines
1.7 KiB
Makefile
62 lines
1.7 KiB
Makefile
# Created by: Dmitry Marakasov <amdmi3@amdmi3.ru>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= vegastrike
|
|
PORTVERSION= 0.5.1.r1
|
|
PORTREVISION= 2
|
|
CATEGORIES= games
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTVERSION:R}/
|
|
DISTNAME= ${PORTNAME}-src-${PORTVERSION}
|
|
|
|
MAINTAINER= games@FreeBSD.org
|
|
COMMENT= Open source 3D space simulator
|
|
|
|
LICENSE= GPLv2
|
|
|
|
RUN_DEPENDS= ${DATADIR}/vegastrike.ico:${PORTSDIR}/games/vegastrike-data
|
|
LIB_DEPENDS= libboost_python.so:${PORTSDIR}/devel/boost-python-libs \
|
|
libexpat.so:${PORTSDIR}/textproc/expat2 \
|
|
libvorbis.so:${PORTSDIR}/audio/libvorbis \
|
|
libogg.so:${PORTSDIR}/audio/libogg
|
|
|
|
USES= dos2unix gmake openal:al pkgconfig tar:bzip2
|
|
GNU_CONFIGURE= yes
|
|
USE_PYTHON= yes
|
|
USE_SDL= sdl
|
|
USE_GL= glut
|
|
USE_XORG= sm ice xi x11 xext xrender xinerama xi xrandr xcursor \
|
|
xcomposite xdamage xfixes
|
|
USE_GNOME= gtk20
|
|
DOS2UNIX_GLOB= *.cpp *.h
|
|
EXTRACT_AFTER_ARGS= --exclude boost
|
|
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
|
|
# cegui and ffmpeg are not used yet
|
|
CONFIGURE_ARGS= --disable-cegui --disable-ffmpeg \
|
|
--with-data-dir="${LOCALBASE}/share/${PORTNAME}" \
|
|
--with-boost=system \
|
|
--enable-flags="${CXXFLAGS}"
|
|
|
|
PLIST_FILES= bin/vegastrike bin/vssetup bin/vegaserver
|
|
PORTDOCS= README
|
|
|
|
OPTIONS_DEFINE= MESHER
|
|
MESHER_DESC= Enable mesher modelling tool
|
|
|
|
MESHER_PLIST_FILES= bin/mesher
|
|
MESHER_LIB_DEPENDS= libOgreMain.so:${PORTSDIR}/graphics/ogre3d
|
|
MESHER_CONFIGURE_ENABLE= ogre
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -E 's,/usr/(local|X11R6),${LOCALBASE},' \
|
|
${WRKSRC}/configure
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${PLIST_FILES:S|bin|${WRKSRC}|} \
|
|
${STAGEDIR}${PREFIX}/bin
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|