diff options
author | rillig <rillig@pkgsrc.org> | 2005-12-05 20:49:47 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2005-12-05 20:49:47 +0000 |
commit | 5ec134d67dbba7a354689af359fb4dd92bc8cbec (patch) | |
tree | dac5b1dd14794d86b061d26b9503adb2552ed3f8 /graphics/py-gdchart | |
parent | 9d13f62cc158ce4d29412c1798882c83849d448b (diff) | |
download | pkgsrc-5ec134d67dbba7a354689af359fb4dd92bc8cbec.tar.gz |
Fixed pkglint warnings. The warnings are mostly quoting issues, for
example MAKE_ENV+=FOO=${BAR} is changed to MAKE_ENV+=FOO=${BAR:Q}. Some
other changes are outlined in
http://mail-index.netbsd.org/tech-pkg/2005/12/02/0034.html
Diffstat (limited to 'graphics/py-gdchart')
-rw-r--r-- | graphics/py-gdchart/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/graphics/py-gdchart/Makefile b/graphics/py-gdchart/Makefile index 1b4634e315d..6517d443cbc 100644 --- a/graphics/py-gdchart/Makefile +++ b/graphics/py-gdchart/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.18 2005/06/16 06:57:58 jlam Exp $ +# $NetBSD: Makefile,v 1.19 2005/12/05 20:50:22 rillig Exp $ # DISTNAME= gdchart-py-0.6 @@ -12,12 +12,12 @@ HOMEPAGE= http://athani.pair.com/msteed/software/gdchart/ COMMENT= Python interface to GDChart USE_TOOLS+= gmake -MAKE_ENV= GD_INCLUDE=${LOCALBASE}/include \ +MAKE_ENV+= GD_INCLUDE=${LOCALBASE}/include \ GDCHART_INCLUDE=${LOCALBASE}/include \ PYTHON_INCLUDE=${LOCALBASE}/${PYINC} \ HAVE_LIBFREETYPE=1 \ - LOCALBASE=${LOCALBASE} -PLIST_SUBST+= PYPKGPREFIX=${PYPKGPREFIX} + LOCALBASE=${LOCALBASE:Q} +PLIST_SUBST+= PYPKGPREFIX=${PYPKGPREFIX:Q} MODULE_FILES= chart.py gdchart.so EXAMPLE_FILES= test.html test.py CHANGES EXAMPLE_DIR= ${PREFIX}/share/examples/${PYPKGPREFIX}-gdchart |