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 | 2eef65e076a64eee5899c114c96588ff5f96671d (patch) | |
tree | cffd6a2e4540ea0e64b9f7e93b54d783b678ed10 /fonts/profont | |
parent | 67eaa64b538f1cc9ee2559e7b9b0001914e6dd58 (diff) | |
download | pkgsrc-2eef65e076a64eee5899c114c96588ff5f96671d.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/profont')
-rw-r--r-- | fonts/profont/Makefile | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/fonts/profont/Makefile b/fonts/profont/Makefile index 7c504e1f010..31a27d17ebd 100644 --- a/fonts/profont/Makefile +++ b/fonts/profont/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.4 2005/12/29 06:21:40 jlam Exp $ +# $NetBSD: Makefile,v 1.5 2005/12/29 07:04:28 jlam Exp $ # DISTNAME= profontlinux @@ -15,11 +15,10 @@ NO_BUILD= yes NO_CONFIGURE= yes USE_X11BASE= yes -FONTS_X11_DIRS= ${PREFIX}/lib/X11/fonts/misc +FONTS_DIRS.x11= ${PREFIX}/lib/X11/fonts/misc INSTALLATION_DIRS= lib/X11/fonts/misc do-install: - for i in ${WRKDIR}/*.pcf; do ${INSTALL_DATA} $$i ${FONTS_X11_DIRS}; done + for i in ${WRKDIR}/*.pcf; do ${INSTALL_DATA} $$i ${FONTS_DIRS.x11}; done -.include "../../mk/fonts.mk" .include "../../mk/bsd.pkg.mk" |