diff options
author | jlam <jlam@pkgsrc.org> | 2004-01-23 19:37:18 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2004-01-23 19:37:18 +0000 |
commit | efbc8c61065cccced95fcb13dbdee02bbf96ceeb (patch) | |
tree | 1ce65ece9edc8fe8107c2410050baff6a8a6857a /graphics/Mesa/Makefile.common | |
parent | 5f0b87f8ac94024677f795bda697f4c772f32c9f (diff) | |
download | pkgsrc-efbc8c61065cccced95fcb13dbdee02bbf96ceeb.tar.gz |
Move the MESA_VERSION definition from version.mk into Makefile.common, and
don't include version.mk from Makefile.common. version.mk's sole purpose
now is to figure out which version of the OpenGL specification is
implemented by the XFree86-provided Mesa and to deduce a likely version of
Mesa from the OpenGL specification implemented.
Diffstat (limited to 'graphics/Mesa/Makefile.common')
-rw-r--r-- | graphics/Mesa/Makefile.common | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/graphics/Mesa/Makefile.common b/graphics/Mesa/Makefile.common index a734b858a44..6a33736bf84 100644 --- a/graphics/Mesa/Makefile.common +++ b/graphics/Mesa/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.22 2004/01/22 12:58:07 adam Exp $ +# $NetBSD: Makefile.common,v 1.23 2004/01/23 19:37:18 jlam Exp $ # DISTNAME= MesaLib-${MESA_VERSION} @@ -9,6 +9,8 @@ CATEGORIES= graphics MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=mesa3d/} EXTRACT_SUFX= .tar.bz2 +MESA_VERSION= 6.0 + MAINTAINER= tech-pkg@NetBSD.org HOMEPAGE= http://www.mesa3d.org/ @@ -26,5 +28,4 @@ pre-install: ${LIBTOOL} --mode=install ${INSTALL_DATA} $${lib} ${PREFIX}/lib ; \ done; -.include "../../graphics/Mesa/version.mk" .include "../../mk/bsd.prefs.mk" |