diff options
author | jlam <jlam@pkgsrc.org> | 2005-12-29 07:04:27 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2005-12-29 07:04:27 +0000 |
commit | 1859f144b4a7b5c0d93c8ba07a0247edfc142ebd (patch) | |
tree | cffd6a2e4540ea0e64b9f7e93b54d783b678ed10 /fonts/artwiz-fonts | |
parent | dc9594e09db96635641a7e05b49d34b554b9bb21 (diff) | |
download | pkgsrc-1859f144b4a7b5c0d93c8ba07a0247edfc142ebd.tar.gz |
Convert to use the new pkginstall framework fonts-handling by renaming
FONTS_<TYPE>_DIRS variables to FONTS_DIRS.<type>, and by removing the
unnecessary inclusion of mk/fonts.mk.
Diffstat (limited to 'fonts/artwiz-fonts')
-rw-r--r-- | fonts/artwiz-fonts/Makefile | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/fonts/artwiz-fonts/Makefile b/fonts/artwiz-fonts/Makefile index ab0f385bc11..11fedabbed7 100644 --- a/fonts/artwiz-fonts/Makefile +++ b/fonts/artwiz-fonts/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.8 2005/12/29 06:21:40 jlam Exp $ +# $NetBSD: Makefile,v 1.9 2005/12/29 07:04:27 jlam Exp $ # DISTNAME= artwiz-aleczapka-1.3 @@ -18,11 +18,10 @@ USE_X11BASE= yes NO_BUILD= yes NO_CONFIGURE= yes -FONTS_X11_DIRS= ${PREFIX}/lib/X11/fonts/artwiz +FONTS_DIRS.x11= ${PREFIX}/lib/X11/fonts/artwiz OWN_DIRS= ${PREFIX}/lib/X11/fonts/artwiz do-install: - for i in ${WRKSRC}/*.pcf; do ${INSTALL_DATA} $$i ${FONTS_X11_DIRS}; done + for i in ${WRKSRC}/*.pcf; do ${INSTALL_DATA} $$i ${FONTS_DIRS.x11}; done -.include "../../mk/fonts.mk" .include "../../mk/bsd.pkg.mk" |