diff options
author | hubertf <hubertf> | 2001-04-12 20:38:25 +0000 |
---|---|---|
committer | hubertf <hubertf> | 2001-04-12 20:38:25 +0000 |
commit | 8c3d98a309bdb3c0f106d81769e13e10a85990a6 (patch) | |
tree | 1277e4e3f20b813f525ebdfbf1464a53173625b8 /graphics/glu/Makefile | |
parent | c53b24b0396d5dae542764324403ab4a991f0cdc (diff) | |
download | pkgsrc-8c3d98a309bdb3c0f106d81769e13e10a85990a6.tar.gz |
Trivia - What's wrong in this picture:
smaug% grep 'MesaLib.*3.4' */*/Makefile*
graphics/Mesa/Makefile:DEPENDS+= MesaLib-3.4:../../graphics/MesaLib
graphics/MesaLib/Makefile:DISTNAME= MesaLib-3.4.1
Invent a variable MESA_VERSION in Mesa/Makefile.common and use it.
Diffstat (limited to 'graphics/glu/Makefile')
-rw-r--r-- | graphics/glu/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/graphics/glu/Makefile b/graphics/glu/Makefile index e585bfb6e35..0a7bee54be9 100644 --- a/graphics/glu/Makefile +++ b/graphics/glu/Makefile @@ -1,7 +1,9 @@ -# $NetBSD: Makefile,v 1.6 2001/03/23 12:36:54 drochner Exp $ +# $NetBSD: Makefile,v 1.7 2001/04/12 20:38:26 hubertf Exp $ # -DISTNAME= MesaLib-3.4.1 +.include "../Mesa/Makefile.common" + +DISTNAME= MesaLib-${MESA_VERSION} PKGNAME= ${DISTNAME:C/MesaLib/glu/} CATEGORIES= graphics MASTER_SITES= ftp://ftp.mesa3d.org/mesa/ \ |