pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/mk



Module Name:    pkgsrc
Committed By:   maya
Date:           Thu Apr  4 10:27:35 UTC 2019

Modified Files:
        pkgsrc/mk: fonts.mk

Log Message:
Tolerate uppercase .TTF (for uralic-ttf) and do a case-insensitive compare
use find -print | xargs to avoid hitting find limits.

Thanks leot for lots of help figuring out why some packages were failing.


To generate a diff of this commit:
cvs rdiff -u -r1.12 -r1.13 pkgsrc/mk/fonts.mk

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/mk/fonts.mk
diff -u pkgsrc/mk/fonts.mk:1.12 pkgsrc/mk/fonts.mk:1.13
--- pkgsrc/mk/fonts.mk:1.12     Thu Apr  4 07:34:11 2019
+++ pkgsrc/mk/fonts.mk  Thu Apr  4 10:27:35 2019
@@ -1,4 +1,4 @@
-# $NetBSD: fonts.mk,v 1.12 2019/04/04 07:34:11 maya Exp $
+# $NetBSD: fonts.mk,v 1.13 2019/04/04 10:27:35 maya Exp $
 #
 # Install .otf and .ttf font files.
 #
@@ -20,8 +20,8 @@ do-install: install-fonts
 
 install-fonts:
        ${STEP_MSG} "Installing all .otf and .ttf files from " ${WRKSRC}
-       find ${WRKSRC} -name '*.ttf' \
-           -exec ${INSTALL_DATA} "{}" ${DESTDIR}${TTF_FONTS_DIR} ";"
-       find ${WRKSRC} -name '*.otf' \
-           -exec ${INSTALL_DATA} "{}" ${DESTDIR}${OTF_FONTS_DIR} ";"
+       ${FIND} ${WRKSRC} -iname '*.ttf' -print | \
+           ${XARGS} -I % ${INSTALL_DATA} % ${DESTDIR}${TTF_FONTS_DIR}
+       ${FIND} ${WRKSRC} -iname '*.otf' -print | \
+           ${XARGS} -I % ${INSTALL_DATA} % ${DESTDIR}${OTF_FONTS_DIR}
 



Home | Main Index | Thread Index | Old Index