diff options
author | jylefort <jylefort@FreeBSD.org> | 2005-12-07 22:52:31 +0800 |
---|---|---|
committer | jylefort <jylefort@FreeBSD.org> | 2005-12-07 22:52:31 +0800 |
commit | 929d75de6f394284a323247343a97740427732fb (patch) | |
tree | e71e1983ce74f1f721d59880b329d231be902683 /games | |
parent | 429cbaa10ab96e876b7ae3b6d4216762cffa89ef (diff) | |
download | freebsd-ports-gnome-929d75de6f394284a323247343a97740427732fb.tar.gz freebsd-ports-gnome-929d75de6f394284a323247343a97740427732fb.tar.zst freebsd-ports-gnome-929d75de6f394284a323247343a97740427732fb.zip |
Add linux-x-plane-net-installer.
The X-Plane network installer is a graphical application which fetches the
latest X-Plane distribution and installs it in the directory you specify.
WWW: http://www.x-plane.com/
Diffstat (limited to 'games')
-rw-r--r-- | games/Makefile | 1 | ||||
-rw-r--r-- | games/linux-x-plane-net-installer/Makefile | 48 | ||||
-rw-r--r-- | games/linux-x-plane-net-installer/distinfo | 3 | ||||
-rw-r--r-- | games/linux-x-plane-net-installer/pkg-descr | 4 |
4 files changed, 56 insertions, 0 deletions
diff --git a/games/Makefile b/games/Makefile index 2075898e07e3..d81258cdab24 100644 --- a/games/Makefile +++ b/games/Makefile @@ -346,6 +346,7 @@ SUBDIR += linux-virtual-jay-peak SUBDIR += linux-warsow SUBDIR += linux-x-plane + SUBDIR += linux-x-plane-net-installer SUBDIR += liquidwar SUBDIR += lm-solve SUBDIR += lmarbles diff --git a/games/linux-x-plane-net-installer/Makefile b/games/linux-x-plane-net-installer/Makefile new file mode 100644 index 000000000000..ddf72eec8fc6 --- /dev/null +++ b/games/linux-x-plane-net-installer/Makefile @@ -0,0 +1,48 @@ +# New ports collection makefile for: linux-x-plane-net-installer +# Date created: 07 Dec 2005 +# Whom: Jean-Yves Lefort <jylefort@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= linux-x-plane-net-installer +PORTVERSION= 1.03 +CATEGORIES= games linux +MASTER_SITES= http://dev.x-plane.com/installer/${PORTVERSION}-lin1/ +DISTFILES= X-Plane-Net-Install.gz + +MAINTAINER= jylefort@FreeBSD.org +COMMENT= The X-Plane network installer + +RUN_DEPENDS= ${LINUXBASE}/lib/libgcc/libgcc_s.so.1:${PORTSDIR}/lang/linux-libgcc \ + ${LINUXBASE}/usr/lib/libopenal.so.0:${PORTSDIR}/audio/linux-openal \ + ${LINUXBASE}/usr/X11R6/lib/libGLU.so.1.3:${PORTSDIR}/graphics/linux_dri + +USE_X_PREFIX= yes +USE_LINUX= yes +NO_BUILD= yes +RESTRICTED= "Redistribution prohibited" +ONLY_FOR_ARCHS= i386 amd64 + +PLIST_FILES= bin/X-Plane-Net-Install + +.include <bsd.port.pre.mk> + +.if ${X_WINDOW_SYSTEM:L} != xfree86-3 +.if defined(WITH_NVIDIA_GL) +RUN_DEPENDS+= ${LINUXBASE}/usr/lib/libGL.so.1:${PORTSDIR}/x11/nvidia-driver +.else +RUN_DEPENDS+= ${LINUXBASE}/usr/X11R6/lib/libGL.so.1:${PORTSDIR}/graphics/linux_dri +.endif +.else +RUN_DEPENDS+= ${LINUXBASE}/lib/libGL.so.1:${PORTSDIR}/graphics/linux_glx +.endif + +do-extract: + @${MKDIR} ${WRKSRC} + @${GUNZIP_CMD} -c ${DISTDIR}/${DISTFILES} > ${WRKSRC}/X-Plane-Net-Install + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/X-Plane-Net-Install ${PREFIX}/bin + +.include <bsd.port.post.mk> diff --git a/games/linux-x-plane-net-installer/distinfo b/games/linux-x-plane-net-installer/distinfo new file mode 100644 index 000000000000..6d133d4281c0 --- /dev/null +++ b/games/linux-x-plane-net-installer/distinfo @@ -0,0 +1,3 @@ +MD5 (X-Plane-Net-Install.gz) = db7a3dc12cd9dea2d6ccced9d175a5bb +SHA256 (X-Plane-Net-Install.gz) = cb90449f8f80bde06c4b798802ac0533aeeb605c3428b21fd176e668f9a73a0e +SIZE (X-Plane-Net-Install.gz) = 1869256 diff --git a/games/linux-x-plane-net-installer/pkg-descr b/games/linux-x-plane-net-installer/pkg-descr new file mode 100644 index 000000000000..e4a6ceabc734 --- /dev/null +++ b/games/linux-x-plane-net-installer/pkg-descr @@ -0,0 +1,4 @@ +The X-Plane network installer is a graphical application which fetches the +latest X-Plane distribution and installs it in the directory you specify. + +WWW: http://www.x-plane.com/ |