diff options
author | nsayer <nsayer@FreeBSD.org> | 2001-04-01 03:38:41 +0000 |
---|---|---|
committer | nsayer <nsayer@FreeBSD.org> | 2001-04-01 03:38:41 +0000 |
commit | 27f020fa9bb85193893422d152223934824aea4f (patch) | |
tree | 35fb870fd6a9be1a170bb5d56248cb4043047860 /graphics/glide3/Makefile | |
parent | c0221e6fc49571760e73fbb5b614468d9ce3bf0a (diff) | |
download | FreeBSD-ports-27f020fa9bb85193893422d152223934824aea4f.zip FreeBSD-ports-27f020fa9bb85193893422d152223934824aea4f.tar.gz |
glide3 port. Most of the credit goes to Eric Anholt.
This makes a library good enough to be able to make the XFree86-4 port's
lib/modules/dri/tdfx_dri.so, which is enough to enable DRI on 3dfx cards.
Diffstat (limited to 'graphics/glide3/Makefile')
-rw-r--r-- | graphics/glide3/Makefile | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/graphics/glide3/Makefile b/graphics/glide3/Makefile new file mode 100644 index 0000000..f563a9f --- /dev/null +++ b/graphics/glide3/Makefile @@ -0,0 +1,44 @@ +# New ports collection makefile for: Glide +# Date created: 31 Mar 2001 +# Whom: Nick Sayer <nsayer@freebsd.org> +# +# $FreeBSD$ +# + +PORTNAME= Glide3-64Bit +PORTVERSION= 20010331 +CATEGORIES= graphics +MASTER_SITES= http://www.teleport.com/~anholt/devel/dri/ \ + ${MASTER_SITE_LOCAL} +MASTER_SITE_SUBDIR= nsayer +DISTFILES= ${PORTNAME}-20010331.tgz \ + ${PORTNAME:S/G/g/}-2001-01-06.tar.gz +EXTRACT_ONLY= ${PORTNAME}-20010331.tgz + +PATCH_SITES= http://www.teleport.com/~anholt/devel/dri/ +PATCHFILES= ${PORTNAME:S/G/g/}-2001-01-06.diff + +MAINTAINER= nsayer@FreeBSD.org + +WRKSRC= ${WRKDIR}/Glide3 +USE_X_PREFIX= yes +INSTALLS_SHLIB= yes +USE_LIBTOOL= yes +USE_AUTOMAKE= yes +MAKEFILE= makefile.autoconf +USE_GMAKE= yes + +.ifdef WITH_VOODOO3 +CONFIGURE_ARGS+= --enable-fx-glide-hw=h3 +.elifdef WITH_VOODOO2 +CONFIGURE_ARGS+= --enable-fx-glide-hw=cvg +.endif + +post-extract: + ( cd ${WRKSRC}; ${TAR} xfpz \ + ${DISTDIR}/${PORTNAME:S/G/g/}-2001-01-06.tar.gz ) + +post-patch: + ( cd ${WRKSRC} ; aclocal ) + +.include <bsd.port.mk> |