39fc32e828
a zeising, kwm production, with help from dumbbell, bdrewery: NEW XORG ON FREEBSD 9-STABLE AND 10-STABLE This update switches over to use the new xorg stack by default on FreeBSD 9 and 10 stable, on osversions where vt(9) is available. It is still possible to use the old stack by specifying WITHOUT_NEW_XORG in /etc/make.conf . FreeBSD 8-STABLE and released versions of FreeBSD still use the old version. A package repository with binary packages for new xorg will be available soon. This patch also contains updates of libxcb and related ports, pixman, as well as some drivers and utilities. Bump portrevisions for xf86-* ports, as well as virtualbox-ose-additions due to xserver version change. Apart from these updates, the way shared libraries are handled has been changed for all xorg ports, as well as libxml2 and freetype, which means ltverhack is gone and as a consequence shared libraries have been bumped. The plan is that this change will make library bumps less likely in the future. All affected ports have had their portrevisions bumped as a consequence of this. Fix some issues where WITH_NEW_XORG weren't detected properly on CURRENT. Update instructions, hardware support, and more notes can be found on https://wiki.freebsd.org/Graphics Thanks to: all testers, bdrewery and the FreeBSD x11@ team exp-run by: bdrewery [1] PR: ports/187602 [1] Approved by: portmgr (bdrewery), core (jhb)
122 lines
4.2 KiB
Makefile
122 lines
4.2 KiB
Makefile
# Created by: Alexey Dokuchaev <danfe@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= openttd
|
|
PORTVERSION= 1.4.0
|
|
PORTREVISION= 1
|
|
CATEGORIES= games
|
|
MASTER_SITES= http://ftp.snt.utwente.nl/pub/games/openttd/binaries/releases/${PORTVERSION}/ \
|
|
http://us.binaries.openttd.org/binaries/releases/${PORTVERSION}/
|
|
DISTNAME= ${PORTNAME}-${PORTVERSION}-source
|
|
|
|
MAINTAINER= danfe@FreeBSD.org
|
|
COMMENT= Open source clone of Microprose Transport Tycoon Deluxe
|
|
|
|
LICENSE= GPLv2
|
|
|
|
LIB_DEPENDS= libpng15.so:${PORTSDIR}/graphics/png \
|
|
liblzo2.so:${PORTSDIR}/archivers/lzo2
|
|
|
|
USES= gmake pkgconfig tar:xz
|
|
HAS_CONFIGURE= yes
|
|
CONFIGURE_ENV= STRIP="${STRIP_CMD} ${STRIP}"
|
|
CONFIGURE_ARGS= --prefix-dir="${PREFIX}" --data-dir="${DATADIR_REL}"
|
|
|
|
.if defined(BATCH) || defined(PACKAGE_BUILDING)
|
|
MAKE_ARGS= VERBOSE=1
|
|
.endif
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
|
|
CXXFLAGS= # Set to empty as OpenTTD treats it as an addition to CFLAGS
|
|
|
|
SUB_FILES= pkg-message
|
|
|
|
PORTDOCS= HOWTO_compile_lang_files.txt admin_network.txt \
|
|
elrail.svg elrail_tile.png elrail_track.png landscape.html \
|
|
landscape_externals.html landscape_grid.html multiplayer.txt \
|
|
obg_format.txt obm_format.txt obs_format.txt \
|
|
ottd-colourtext-palette.png tileh.png
|
|
|
|
DESKTOP_ENTRIES="OpenTTD" "${COMMENT}" "${PORTNAME}" "${PORTNAME}" \
|
|
"Game;Simulation;StrategyGame;" false
|
|
|
|
.if defined(WITH_MIDI_PLAYER)
|
|
CONFIGURE_ARGS+= --with-midi="${WITH_MIDI_PLAYER}"
|
|
.endif
|
|
|
|
.if defined(WITH_MIDI_PLAYER_ARGS)
|
|
CONFIGURE_ARGS+= --with-midi-arg="${WITH_MIDI_PLAYER_ARGS}"
|
|
.endif
|
|
|
|
.if defined(WITH_DEDICATED_SERVER_ONLY)
|
|
CONFIGURE_ARGS+= --enable-dedicated
|
|
# Aid it to find lzo2 headers; client build gets it via sdl-config
|
|
CFLAGS+= -I${LOCALBASE}/include
|
|
USE_RC_SUBR= ${PORTNAME}
|
|
.else
|
|
LIB_DEPENDS+= libfreetype.so:${PORTSDIR}/print/freetype2 \
|
|
libfontconfig.so:${PORTSDIR}/x11-fonts/fontconfig
|
|
USE_SDL= sdl
|
|
INSTALLS_ICONS= yes
|
|
.endif
|
|
|
|
.if defined(WITH_OPEN_GAME_FILES)
|
|
RUN_DEPENDS+= ${LOCALBASE}/share/${PORTNAME}/baseset/opengfx/opengfx.obg:${PORTSDIR}/games/opengfx \
|
|
${LOCALBASE}/share/${PORTNAME}/baseset/openmsx/openmsx.obm:${PORTSDIR}/games/openmsx \
|
|
${LOCALBASE}/share/${PORTNAME}/baseset/opensfx/opensfx.obs:${PORTSDIR}/games/opensfx
|
|
.endif
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
pre-everything::
|
|
.if !defined(WITH_MIDI_PLAYER)
|
|
@${ECHO_MSG} "Define WITH_MIDI_PLAYER=/path/to/player to build with external MIDI player"
|
|
.endif
|
|
.if !defined(WITH_MIDI_PLAYER_ARGS)
|
|
@${ECHO_MSG} "Define WITH_MIDI_PLAYER_ARGS=arguments for external MIDI player"
|
|
.endif
|
|
.if !defined(WITH_DEDICATED_SERVER_ONLY)
|
|
@${ECHO_MSG} "Define WITH_DEDICATED_SERVER_ONLY to build CLI-based dedicated server"
|
|
.endif
|
|
.if !defined(WITH_OPEN_GAME_FILES)
|
|
@${ECHO_MSG} "Define WITH_OPEN_GAME_FILES to install with libre graphics, music, and sounds"
|
|
.endif
|
|
|
|
post-patch:
|
|
# Remove extra (vendor-provided) CFLAGS and LDFLAGS and make the port more
|
|
# LOCALBASE safe
|
|
@${REINPLACE_CMD} -e '/-O2 -fomit-frame-pointer/d ; \
|
|
s,/usr/local,${LOCALBASE},' ${WRKSRC}/config.lib
|
|
# Use custom liblzma.pc for when we use liblzma from base
|
|
@${REINPLACE_CMD} -e \
|
|
's,pkg-config liblzma,pkg-config ${FILESDIR}/liblzma.pc,' \
|
|
${WRKSRC}/config.lib
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/bin/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
|
|
@${MKDIR} ${STAGEDIR}${DATADIR}/ai ${STAGEDIR}${DATADIR}/baseset \
|
|
${STAGEDIR}${DATADIR}/lang ${STAGEDIR}${DATADIR}/scripts
|
|
${INSTALL_DATA} ${WRKSRC}/bin/ai/*.nut ${STAGEDIR}${DATADIR}/ai
|
|
${INSTALL_DATA} ${WRKSRC}/bin/baseset/* ${STAGEDIR}${DATADIR}/baseset
|
|
${INSTALL_DATA} ${WRKSRC}/bin/lang/* ${STAGEDIR}${DATADIR}/lang
|
|
${INSTALL_DATA} ${WRKSRC}/bin/scripts/* ${STAGEDIR}${DATADIR}/scripts
|
|
${INSTALL_MAN} ${WRKSRC}/docs/${PORTNAME}.6 \
|
|
${STAGEDIR}${MANPREFIX}/man/man6
|
|
${INSTALL_DATA} ${WRKSRC}/media/openttd.32.xpm \
|
|
${STAGEDIR}${PREFIX}/share/pixmaps
|
|
.if !defined(WITH_DEDICATED_SERVER_ONLY)
|
|
. for n in 16 32 48 64 128 256
|
|
@${MKDIR} ${STAGEDIR}${PREFIX}/share/icons/hicolor/${n}x${n}/apps
|
|
${INSTALL_DATA} ${WRKSRC}/media/openttd.${n}.png \
|
|
${STAGEDIR}${PREFIX}/share/icons/hicolor/${n}x${n}/apps/openttd.png
|
|
. endfor
|
|
.endif
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/docs/,} ${STAGEDIR}${DOCSDIR}
|
|
|
|
post-install:
|
|
.if defined(WITH_DEDICATED_SERVER_ONLY)
|
|
@${REINPLACE_CMD} -e '/icons/d' ${TMPPLIST}
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|