freebsd-ports/x11/nvidia-driver/Makefile
Kris Kennaway 1576539fd5 For some reason ${PKG_INFO} doesn't work here, so hard-code
/usr/sbin/pkg_info just to get it working again.  Add a note that they
should be fixed to use the bsd.port.mk variables.
2003-01-25 00:46:18 +00:00

63 lines
1.6 KiB
Makefile

# New ports collection makefile for: nvidia-driver
# Date created: 4 December 2002
# Whom: Stijn Hoop <stijn@win.tue.nl>
#
# $FreeBSD$
#
PORTNAME= nvidia-driver
PORTVERSION= 1.0.3203
CATEGORIES= x11
MASTER_SITES= http://download.nvidia.com/freebsd/1.0-3203/
DISTNAME= NVIDIA_FreeBSD-${PORTVERSION:S/0./0-/}
MAINTAINER= ports@freebsd.org
USE_X_PREFIX= yes
NO_PACKAGE= should be recompiled for a particular FreeBSD kernel
# XXX Should use ${PKG_INFO} and ${GREP}
XSERVVERSION!= /usr/sbin/pkg_info -O x11-servers/XFree86-4-Server 2>/dev/null | grep Server- || true
XLIBVERSION!= /usr/sbin/pkg_info -O x11/XFree86-4-libraries 2>/dev/null | grep libraries- || true
PLIST_SUB= XSERVVERSION=${XSERVVERSION} XLIBVERSION=${XLIBVERSION} \
LINUXBASE=${LINUXBASE}
.if !defined(WITHOUT_LINUX)
USE_LINUX= yes
.endif
.include <bsd.port.pre.mk>
.if ${OSVERSION} > 500000
IGNORE= "Drivers are not supported on 5.x"
.endif
.if defined(WITH_FREEBSD_AGP) || defined(FORCE_AGP_RATE)
USE_REINPLACE= yes
post-patch:
.if defined(WITH_FREEBSD_AGP)
@${REINPLACE_CMD} "s/undef USE_OS_AGP_GART/define USE_OS_AGP_GART/" \
${WRKSRC}/src/nv-freebsd.h
.endif
.if defined(FORCE_AGP_RATE)
@${REINPLACE_CMD} "s/4, 0/4, 1/" ${WRKSRC}/src/nvidia_os_registry.c
.endif
.endif
.if defined(WITHOUT_LINUX)
pre-install:
@${MKDIR} ${LINUXBASE}/usr/lib
.endif
post-install:
.for dev in 0 1 2 3
@mknod /dev/nvidia${dev} c 180 ${dev}
@${CHMOD} 0666 /dev/nvidia${dev}
.endfor
@mknod /dev/nvidiactl c 180 255
@${CHMOD} 0666 /dev/nvidiactl
@${CAT} ${PKGMESSAGE}
.include <bsd.port.post.mk>