12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- # $OpenBSD: Makefile,v 1.34 2017/05/31 08:08:16 espie Exp $
- ONLY_FOR_ARCHS= amd64 i386
- COMMENT= 3D realtime strategy on a future earth
- DISTNAME= warzone2100-3.2.3
- CATEGORIES= games
- MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=warzone2100/}
- EXTRACT_SUFX= .tar.xz
- HOMEPAGE= http://wz2100.net/
- # GPLv2+
- PERMIT_PACKAGE_CDROM= Yes
- WANTLIB += GL GLEW GLU Qt5Core Qt5Gui Qt5Script Qt5Widgets SDL2 X11
- WANTLIB += Xrandr c crypto fontconfig freetype fribidi harfbuzz iconv
- WANTLIB += intl m ogg openal physfs png pthread theora vorbis
- WANTLIB += vorbisfile z ${LIBECXX}
- MODULES= x11/qt5
- COMPILER = gcc
- LIB_DEPENDS= audio/libogg \
- audio/libvorbis \
- audio/openal>=20110627 \
- devel/fribidi \
- devel/physfs \
- devel/sdl2 \
- graphics/glew \
- graphics/png \
- multimedia/libtheora \
- x11/qt5/qtscript
- BUILD_DEPENDS= archivers/unzip \
- archivers/zip \
- textproc/asciidoc
- RUN_DEPENDS= devel/desktop-file-utils
- SEPARATE_BUILD= Yes
- USE_GMAKE= Yes
- CONFIGURE_STYLE= autoconf
- AUTOCONF_VERSION= 2.69
- CONFIGURE_ARGS+= --with-distributor="OpenBSD"
- CONFIGURE_ENV+= CPPFLAGS="-I${X11BASE}/include -I${LOCALBASE}/include" \
- LDFLAGS="-L${X11BASE}/lib -L${LOCALBASE}/lib" \
- ac_cv_path_MOC4="${LOCALBASE}/bin/moc4" \
- ac_cv_path_UIC4="${LOCALBASE}/bin/uic4"
- # XXX this is a horrible hack to make sure we get to our glm
- # which is 100% incompatible with ports glm
- MAKE_FLAGS += "DEFS=-DHAVE_CONFIG_H -I${WRKSRC}/includefirst"
- pre-configure:
- mkdir -p ${WRKSRC}/includefirst
- ln -sf ${WRKSRC}/3rdparty/glm ${WRKSRC}/includefirst/glm
- .for _prog in git svn svnversion
- @cd ${WRKDIR}/bin && ln -sf /usr/bin/true ${_prog}
- .endfor
- @cd ${WRKDIR}/bin && ln -sf ${LOCALBASE}/bin/gflex flex
- .include <bsd.port.mk>
|