diff options
author | hubertf <hubertf@pkgsrc.org> | 2001-04-12 20:38:25 +0000 |
---|---|---|
committer | hubertf <hubertf@pkgsrc.org> | 2001-04-12 20:38:25 +0000 |
commit | 31f5ce665c0ccd045b02817a1bc55c6c5a524f2c (patch) | |
tree | 1277e4e3f20b813f525ebdfbf1464a53173625b8 /graphics/glu | |
parent | af0dd9c4d62f9a4f227f94a6b002bf43a4a634bc (diff) | |
download | pkgsrc-31f5ce665c0ccd045b02817a1bc55c6c5a524f2c.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')
-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/ \ |