mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-01 01:17:02 +00:00
3e4ed01146
- Remove USE_XLIB/USE_X_PREFIX/USE_XPM in favor of USE_XORG - Remove X11BASE support in favor of LOCALBASE or PREFIX - Use USE_LDCONFIG instead of INSTALLS_SHLIB - Remove unneeded USE_GCC 3.4+ Thanks to all Helpers: Dmitry Marakasov, Chess Griffin, beech@, dinoex, rafan, gahr, ehaupt, nox, itetcu, flz, pav PR: 116263 Tested on: pointyhat Approved by: portmgr (pav)
47 lines
1.2 KiB
Makefile
47 lines
1.2 KiB
Makefile
# New ports collection makefile for: Star Trek Voyager: Elite Forces Server
|
|
# Whom: nik@FreeBSD.org
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= stvef-server
|
|
PORTVERSION= 1.20
|
|
PORTREVISION= 3
|
|
CATEGORIES= games linux
|
|
MASTER_SITES= ftp://ftp.multiplay.co.uk/pub/games/fps/eliteforce/patches/linux/
|
|
DISTFILES= stvefLinuxDedicated120.zip
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Star Trek Voyager: Elite Forces dedicated server for Linux
|
|
|
|
ONLY_FOR_ARCHS= i386
|
|
USE_ZIP= yes
|
|
USE_LINUX= yes
|
|
USE_XLIB= yes
|
|
WRKSRC= ${WRKDIR}/Linux
|
|
|
|
INSTALL_DIR= ${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m 755
|
|
LDCONFIG_LINUX= ${LINUXBASE}/sbin/ldconfig
|
|
|
|
GAMEDIR= ${PREFIX}/games/stvef/
|
|
|
|
# files which should be installed with executables perms
|
|
EXECUTABLES= linuxstvefded_1.2-static linuxstvefded_1.2-glibc2.1.3
|
|
|
|
do-build:
|
|
${BRANDELF} -t Linux ${WRKSRC}/linuxstvefded_1.2-static
|
|
${BRANDELF} -t Linux ${WRKSRC}/linuxstvefded_1.2-glibc2.1.3
|
|
|
|
do-install:
|
|
${MKDIR} ${GAMEDIR}
|
|
${INSTALL_PROGRAM} ${WRKSRC}/linuxstvefded_1.2-static ${GAMEDIR}
|
|
${INSTALL_PROGRAM} ${WRKSRC}/linuxstvefded_1.2-glibc2.1.3 ${GAMEDIR}
|
|
${INSTALL_MAN} ${WRKSRC}/readme.txt ${GAMEDIR}
|
|
${MKDIR} ${GAMEDIR}/baseEF
|
|
${INSTALL_DATA} ${WRKSRC}/baseEF/server.cfg ${GAMEDIR}/baseEF
|
|
|
|
post-install:
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.mk>
|