forked from Lainports/freebsd-ports
Mk/Uses/linux.mk.
- Replace USE_LINUX=yes with USES+=linux and USE_LINUX=(.*) with
USES+=linux:\1 in all ports.
- Replace USE_LINUX_APPS with USE_LINUX in all ports.
- Use INSTALL_SCRIPT instead of INSTALL_PROGRAM to install scripts in some
ports.
- When USE_LINUX_RPM is defined, simplify the way DISTFILES and EXTRACT_ONLY
are defined.
- Remove BRANDELF_DIRS and BRANDELF_FILES handling. In the very rare cases
that it is still necessary ports can run ${BRANDELF} from post-patch.
- Remove AUTOMATIC_PLIST handling. Only one port used it.
- Fix Linux MASTER_SITES.
- Replace OVERRIDE_LINUX_BASE_PORT and OVERRIDE_LINUX_NONBASE_PORTS with
default versions framework.
- bsd.port.mk:
- Move Linux related bits to Uses/linux.mk, except USE_LINUX_PREFIX.
- Put USE_LINUX_PREFIX handling after USES processing.
- Define DOCSDIR, DATADIR, etc. after handling USE_LINUX_PREFIX so it can
give these variables a different default value.
- When a package needs to run Linux ldconfig check before installation if
Linux support is enabled.
- emulators/linux_base-*:
- Use USES=linux and remove duplication.
- Remove files/lp. FreeBSD or CUPS lp(1) should work.
- Remove files/yp.conf. No longer seems to be used.
- Remove pkg-deinstall and move pkg-install into pkg-plist.
- Update pkg-descr and pkg-message.
- Fix handling of ldconfig cache in pkg-plist.
- devel/fb-adb: Use a Linux shell to run a Linux script but patch the script
to use FreeBSD mkdir so mkdir -p $path creates $path and not
/compat/linux/$path.
PR: 211645
Exp-run by: antoine
Approved by: portmgr (antoine)
66 lines
1.7 KiB
Makefile
66 lines
1.7 KiB
Makefile
# Created by: alepulver
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= doom3
|
|
PORTVERSION= 1.3.1.1304
|
|
PORTEPOCH= 1
|
|
CATEGORIES= games linux
|
|
MASTER_SITES= IDSOFTWARE/doom3/linux
|
|
PKGNAMEPREFIX= linux-
|
|
DISTNAME= ${PORTNAME}-linux-${PORTVERSION}.x86
|
|
EXTRACT_SUFX= .run
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Doom III for Linux
|
|
|
|
USES= linux
|
|
USE_LINUX= xorglibs
|
|
NO_CDROM= Redistribution is limited, see license; Requested by id Software
|
|
NO_BUILD= yes
|
|
NO_WRKSUBDIR= yes
|
|
|
|
OPTIONS_DEFINE= NO_CDKEY
|
|
NO_CDKEY_DESC= Use older version which doesn't require cd key
|
|
|
|
DATADIR= ${PREFIX}/lib/${PKGNAMEPREFIX}${PORTNAME}
|
|
SUB_FILES= doom3 doom3-ded pkg-message pkg-deinstall
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MNO_CDKEY}
|
|
MASTER_SITES= IDSOFTWARE/doom3/linux/old
|
|
PORTVERSION= 1.1.1286
|
|
PORTEPOCH= 0
|
|
PLIST_SUB+= NEW="@comment "
|
|
.else
|
|
PLIST_SUB+= NEW=""
|
|
.endif
|
|
|
|
do-extract:
|
|
@${MKDIR} ${WRKSRC}
|
|
@cd ${WRKSRC} && ${TAIL} +374 ${DISTDIR}/${DISTNAME}${EXTRACT_SUFX} | \
|
|
${TAR} zxf -
|
|
|
|
.if empty(PORT_OPTIONS:MNO_CDKEY)
|
|
post-extract:
|
|
@${RM} ${WRKSRC}/pb/PB_EULA.txt
|
|
.endif
|
|
|
|
do-install:
|
|
@${MKDIR} ${STAGEDIR}${DATADIR}/base
|
|
cd ${WRKSRC}/base && \
|
|
${INSTALL_DATA} game01.pk4 pak*.pk4 ${STAGEDIR}${DATADIR}/base
|
|
cd ${WRKSRC}/bin/Linux/x86 && \
|
|
${INSTALL_PROGRAM} doom.x86 doomded.x86 ${STAGEDIR}${DATADIR}
|
|
.if empty(PORT_OPTIONS:MNO_CDKEY)
|
|
@${MKDIR} ${STAGEDIR}${DATADIR}/d3xp
|
|
cd ${WRKSRC}/d3xp && \
|
|
${INSTALL_DATA} game01.pk4 pak*.pk4 ${STAGEDIR}${DATADIR}/d3xp
|
|
${CP} -r ${WRKSRC}/pb ${STAGEDIR}${DATADIR}
|
|
.endif
|
|
${INSTALL_DATA} ${WRKSRC}/doom3.png ${STAGEDIR}${PREFIX}/share/pixmaps
|
|
.for f in doom3 doom3-ded
|
|
${INSTALL_SCRIPT} ${WRKDIR}/${f} ${STAGEDIR}${PREFIX}/bin/${PKGNAMEPREFIX}${f}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|