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/arphic-ttf | |
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/arphic-ttf')
-rw-r--r-- | fonts/arphic-ttf/Makefile | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/fonts/arphic-ttf/Makefile b/fonts/arphic-ttf/Makefile index 764aad05132..ce46aca508d 100644 --- a/fonts/arphic-ttf/Makefile +++ b/fonts/arphic-ttf/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.12 2005/07/15 18:27:49 jlam Exp $ +# $NetBSD: Makefile,v 1.13 2005/12/29 07:04:27 jlam Exp $ # DISTNAME= arphic-ttf-2.11 @@ -24,19 +24,18 @@ NO_BUILD= YES USE_TOOLS+= gunzip -FONTS_TTF_DIRS= ${PREFIX}/lib/X11/fonts/TTF +FONTS_DIRS.ttf= ${PREFIX}/lib/X11/fonts/TTF DOCDIR= ${PREFIX}/share/doc/arphic-ttf do-install: - ${INSTALL_DATA_DIR} ${FONTS_TTF_DIRS} + ${INSTALL_DATA_DIR} ${FONTS_DIRS.ttf} for f in ${FONT_FILES}; do \ - ${INSTALL_DATA} ${_DISTDIR}/$$f ${FONTS_TTF_DIRS}; \ - ${GUNZIP_CMD} ${FONTS_TTF_DIRS}/$$f; \ + ${INSTALL_DATA} ${_DISTDIR}/$$f ${FONTS_DIRS.ttf}; \ + ${GUNZIP_CMD} ${FONTS_DIRS.ttf}/$$f; \ done ${INSTALL_DATA_DIR} ${DOCDIR} for f in ${MISC_FILES}; do \ ${INSTALL_DATA} ${_DISTDIR}/$$f ${DOCDIR}; \ done -.include "../../mk/fonts.mk" .include "../../mk/bsd.pkg.mk" |