2003-12-28 10:29:20 +01:00
|
|
|
# New ports collection makefile for: ssamtse
|
|
|
|
# Date created: 25 November 2003
|
|
|
|
# Whom: Sergey Akifyev
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
|
|
|
PORTNAME= ssamtse
|
2008-07-26 20:53:44 +02:00
|
|
|
PORTVERSION= 1.07b1
|
|
|
|
CATEGORIES= games linux
|
|
|
|
MASTER_SITES= http://liflg.0wnitsch.de/files/final/
|
|
|
|
PKGNAMEPREFIX= linux-
|
|
|
|
DISTFILES= ${PORTNAME:S|ssam|serious.sam.|}_${PORTVERSION:S|b|beta|}-english-2.run
|
2003-12-28 10:29:20 +01:00
|
|
|
|
2009-05-28 22:44:16 +02:00
|
|
|
MAINTAINER= avl@FreeBSD.org
|
2008-07-26 20:53:44 +02:00
|
|
|
COMMENT= Serious Sam: The Second Encounter for Linux
|
|
|
|
|
|
|
|
OPTIONS= VORBIS "Ogg playing support" on
|
2003-12-28 10:29:20 +01:00
|
|
|
|
Mega-patch to cleanup the ports infrastructure regarding our linux bits:
- USE_LINUX now implies NO_FILTER_SHLIBS=yes. It also doesn't use FreeBSD
tools to strip binaries anymore, so it's not neccesary anymore to override
STRIP and STRIP_CMD.
- USE_LINUX_PREFIX implies NO_MTREE now.
- In the USE_LINUX case, USE_XLIB now depends upon the linux X11 libraries
instead upon the native FreeBSD libraries.
- The variable LINUX_BASE_PORT contains a string which is suitable as an
item in *_DEPENDS, so if a port BATCH_DEPENDS or FETCH_DEPENDS upon the
default (or overriden) linux base, ${LINUX_BASE_PORT} should be used
instead of a hardcoded reference.
- Change all ports to comply to the "new world order".
- The Ports Collection now allows to override the default linux_base port.
Specify e.g. OVERRIDE_LINUX_BASE_PORT=rh-9 in /etc/make.conf to use
${PORTSDIR}/emulators/linux_base-rh-9 (the logic is to use
${PORTSDIR}/emulators/linux_base-${OVERRIDE_LINUX_BASE_PORT}).
- If USE_LINUX or OVERRIDE_LINUX_BASE doesn't point to an existing linux_base
port and if USE_LINUX isn't set to "yes" (case insensitive), the port will
be marked as IGNORE. [1]
- Readd USE_LINUX knobs into several ports and make several uses of a
conditional dependency ("USE_LINUX?=") into an unconditional one
("USE_LINUX=") which where removed/changed by Trevor to allow the use of
alternative linux_base ports. While this is a nice goal, the implementation
resulted in missing dependencies. The OVERRIDE_LINUX_BASE_PORT knob
in this commit is supposed to fix the problem while keeping the feature.
Basicaly this includes a backout of Trevor's commit, to prevent confusion
I mention it here explicitely.
- Use the correct prefix (X11- instead of LOCAL- or LINUX-) for some ports.
Chase dependencies for this.
- Changes to make linux_devtools installable on amd64, remove some stray
device nodes (they don't work on recent OS versions and aren't really
needed).
- Make linux_base-8 PREFIX clean and remove some stray device nodes.
Additionally tell a little bit more about how to setup NIS/YP [2].
- Update the PGSQL dependency in the linux-opengroupware port to a recent
version (the old one isn't available anymore), I don't know if this
works (at least it isn't more broken than before).
- Use PREFIX/usr/share/doc instead of PREFIX/usr/doc in the divx4linux
ports, the former path exists already and gets populated by other
packages too (PREFIX=LINUXPREFIX!).
- Fix some obvious (non-linuxolator) bugs in some linux ports while being
there.
- Bump PORTREVISION where neccesary.
Requested by: portmgr (linimon) [1]
Submittted by: Gerrit Kuehn <gerrit_huehn@gruft.fido.de [2]
Approved by: portmgr (kris, linimon), maintainers (or maintainer timeout)
Tested on: ports cluster (kris)
Reviewed by: silence on emulation@
Superseedes PR: 69997
Maintainer approval from:
chris@chrisburkert.de
cracauer@cons.org
des
girgen
jamie@bishopston.net
mezz
mi
nivit@users.sf.net
pat
simond@irrelevant.org
riggs@rrr.de
Udo.Schweigert@Siemens.com
2005-06-18 00:59:29 +02:00
|
|
|
USE_LINUX= yes
|
2009-04-11 14:03:37 +02:00
|
|
|
USE_LINUX_APPS= xorglibs
|
2008-07-26 20:53:44 +02:00
|
|
|
NO_BUILD= yes
|
|
|
|
NO_PACKAGE= Distribution is 352MB; set FORCE_PACKAGE if you really want to build this package
|
|
|
|
RESTRICTED= Redistribution is limited, see license
|
|
|
|
PORTDOCS= README.liflg ShellSymbols.txt changes.txt Notes_1_04.txt
|
|
|
|
SUB_FILES= pkg-message
|
2003-12-28 10:29:20 +01:00
|
|
|
|
2008-07-26 20:53:44 +02:00
|
|
|
.include <bsd.port.pre.mk>
|
2003-12-28 10:29:20 +01:00
|
|
|
|
2008-07-26 20:53:44 +02:00
|
|
|
.if defined(WITH_VORBIS)
|
2009-03-19 18:28:51 +01:00
|
|
|
USE_LINUX_APPS+=libvorbis
|
2008-07-26 20:53:44 +02:00
|
|
|
PLIST_SUB+= VORBIS=""
|
|
|
|
.else
|
|
|
|
PLIST_SUB+= VORBIS="@comment "
|
|
|
|
.endif
|
2003-12-28 10:29:20 +01:00
|
|
|
|
2008-07-26 20:53:44 +02:00
|
|
|
# Gold Edition
|
|
|
|
.if exists(${CDROM_MOUNT}/Install/SEGold_DM.gro)
|
|
|
|
PLIST_SUB+= GOLD=""
|
|
|
|
.else
|
|
|
|
PLIST_SUB+= GOLD="@comment "
|
2003-12-28 10:29:20 +01:00
|
|
|
.endif
|
2008-07-26 20:53:44 +02:00
|
|
|
|
|
|
|
do-extract:
|
|
|
|
@${MKDIR} ${WRKSRC}/Data
|
|
|
|
@cd ${WRKSRC} && ${SED} -e '1,/exit $$res/d' ${_DISTDIR}/${DISTFILES} |\
|
|
|
|
${GUNZIP_CMD} -q | ${TAR} xf -
|
|
|
|
@${TAR} jx -C ${WRKSRC}/Data -f ${WRKSRC}/bins.tar.bz2
|
2003-12-28 10:29:20 +01:00
|
|
|
|
|
|
|
post-patch:
|
2008-07-26 20:53:44 +02:00
|
|
|
@${REINPLACE_CMD} -e "s|^\(GAMEDIR=\).*|\1\"${DATADIR}\"|" \
|
|
|
|
-e "s|%%PREFIX%%|${PREFIX}|g" ${WRKSRC}/bin/${PORTNAME}
|
2003-12-28 10:29:20 +01:00
|
|
|
|
|
|
|
do-install:
|
2008-07-26 20:53:44 +02:00
|
|
|
.if !defined(CDROM_MOUNT)
|
|
|
|
@${ECHO_CMD} "${PKGNAME} requires CDROM_MOUNT set to mount point of CD"
|
|
|
|
@${FALSE}
|
|
|
|
.endif
|
|
|
|
.if !exists(${CDROM_MOUNT}/Install/Mods/SecondEncounterTbn.tex)
|
|
|
|
@${ECHO_CMD} "${PKGNAME} requires a retail Second Encounter disc"
|
|
|
|
@${FALSE}
|
|
|
|
.endif
|
|
|
|
@${MKDIR} ${DATADIR}/Mods
|
|
|
|
.for gro in "" _Extra _ExtraTools _Levels _Music
|
|
|
|
${INSTALL_DATA} "${CDROM_MOUNT}/Install/SE1_00${gro}.gro" ${DATADIR}/SE1_00${gro}.gro
|
|
|
|
.endfor
|
|
|
|
${INSTALL_DATA} "${CDROM_MOUNT}/Install/Mods/SecondEncounterTbn.tex" ${DATADIR}/Mods/SecondEncounterTbn.tex
|
|
|
|
.for dir in Controls Data Scripts VirtualTrees Worlds Demos
|
|
|
|
@cd ${CDROM_MOUNT}/Install && \
|
|
|
|
${FIND} ${dir} -type d -exec \
|
|
|
|
${MKDIR} "${DATADIR}/{}" \; && \
|
|
|
|
${FIND} ${dir} -type f -exec \
|
|
|
|
${INSTALL_DATA} "${CDROM_MOUNT}/Install/{}" "${DATADIR}/{}" \;
|
|
|
|
.endfor
|
|
|
|
@${MKDIR} ${DATADIR}/Help
|
|
|
|
.for i in ${PORTDOCS:NREADME.liflg}
|
|
|
|
${INSTALL_DATA} "${CDROM_MOUNT}/Install/Help/${i}" ${DATADIR}/Help/${i}
|
|
|
|
.endfor
|
|
|
|
.for dir in Data/Var Levels
|
|
|
|
@cd ${WRKSRC} && \
|
|
|
|
${FIND} ${dir} -type d -exec \
|
|
|
|
${MKDIR} "${DATADIR}/{}" \; && \
|
|
|
|
${FIND} ${dir} -type f -exec \
|
|
|
|
${INSTALL_DATA} "${WRKSRC}/{}" "${DATADIR}/{}" \;
|
|
|
|
.endfor
|
|
|
|
@${MKDIR} ${DATADIR}/Bin
|
|
|
|
@cd ${WRKSRC}/Data && \
|
|
|
|
${FIND} Bin -type f -exec \
|
|
|
|
${INSTALL_PROGRAM} "${WRKSRC}/Data/{}" "${DATADIR}/{}" \;
|
|
|
|
${BRANDELF} -t Linux ${DATADIR}/Bin/ssam_*
|
|
|
|
${INSTALL_DATA} ${WRKSRC}/ModExt.txt ${DATADIR}
|
|
|
|
${INSTALL_PROGRAM} ${WRKSRC}/bin/${PORTNAME} ${PREFIX}/bin
|
|
|
|
.if defined(WITH_VORBIS)
|
|
|
|
${LN} -fs ${LINUXBASE}/usr/lib/libvorbisfile.so.3 ${DATADIR}/Bin/libvorbisfile.so
|
|
|
|
.endif
|
|
|
|
@${FIND} -E ${DATADIR} -type f \
|
|
|
|
-iregex ".*\.(ctl|txt|lst|ini|cfg|des|reg)" \
|
|
|
|
! -iregex ".*ModExt.txt" \
|
|
|
|
-exec ${SH} -c "${SED} "s/`printf '\r'`//" '{}' \
|
|
|
|
>${WRKDIR}/tmp.txt; ${MV} ${WRKDIR}/tmp.txt '{}'" \;
|
|
|
|
@${ECHO} SERIOUS_MHZ=2000 > ${PREFIX}/etc/${PORTNAME}.conf.sample
|
|
|
|
.if !exists(${PREFIX}/etc/${PORTNAME}.conf)
|
|
|
|
${INSTALL_DATA} ${PREFIX}/etc/${PORTNAME}.conf.sample ${PREFIX}/etc/${PORTNAME}.conf
|
|
|
|
.endif
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
|
|
@${MKDIR} ${DOCSDIR}
|
|
|
|
${INSTALL_DATA} -p ${WRKSRC}/README.liflg ${DOCSDIR}
|
|
|
|
.for i in ${PORTDOCS:NREADME.liflg}
|
|
|
|
${LN} -sf ${DATADIR}/Help/${i} ${DOCSDIR}/${i}
|
|
|
|
.endfor
|
|
|
|
.endif
|
|
|
|
|
|
|
|
post-install:
|
2003-12-28 10:29:20 +01:00
|
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
|
2008-07-26 20:53:44 +02:00
|
|
|
.include <bsd.port.post.mk>
|