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 07:34:11 UTC 2019

Added Files:
        pkgsrc/mk: fonts.mk

Log Message:
Add a generic fonts.mk makefile fragment.

Reviewed by rillig in
http://mail-index.netbsd.org/tech-pkg/2019/03/05/msg020895.html

I am only adding TTF and OTF handling because I don't know enough about
the other font formats. :)


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

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

Added files:

Index: pkgsrc/mk/fonts.mk
diff -u /dev/null pkgsrc/mk/fonts.mk:1.12
--- /dev/null   Thu Apr  4 07:34:11 2019
+++ pkgsrc/mk/fonts.mk  Thu Apr  4 07:34:11 2019
@@ -0,0 +1,27 @@
+# $NetBSD: fonts.mk,v 1.12 2019/04/04 07:34:11 maya Exp $
+#
+# Install .otf and .ttf font files.
+#
+# The following variables may be used to tweak the installation path:
+#
+# TTF_FONTS_DIR is the install directory for .ttf files
+#
+# OTF_FONTS_DIR is the install directory for .otf files
+
+NO_CONFIGURE?= yes
+NO_BUILD?=     yes
+
+TTF_FONTS_DIR?=                ${PREFIX}/share/fonts/X11/TTF
+OTF_FONTS_DIR?=                ${PREFIX}/share/fonts/X11/OTF
+
+INSTALLATION_DIRS+=    ${TTF_FONTS_DIR} ${OTF_FONTS_DIR}
+
+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} ";"
+



Home | Main Index | Thread Index | Old Index