2020-03-22 10:46:10 +01:00
|
|
|
# $NetBSD: fonts.mk,v 1.16 2020/03/22 09:46:10 nia Exp $
|
2019-04-04 09:34:11 +02:00
|
|
|
#
|
|
|
|
# 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
|
2020-03-22 10:46:10 +01:00
|
|
|
USE_LANGUAGES?= # none
|
2019-04-04 09:34:11 +02:00
|
|
|
|
|
|
|
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:
|
2019-04-06 10:43:41 +02:00
|
|
|
@${STEP_MSG} "Installing all .otf and .ttf files from ${WRKSRC}"
|
2019-04-06 08:55:18 +02:00
|
|
|
${FIND} ${WRKSRC} -name ${DESTDIR:T} -prune -o -iname '*.ttf' -exec \
|
|
|
|
${INSTALL_DATA} "{}" ${DESTDIR}${TTF_FONTS_DIR} ";"
|
|
|
|
${FIND} ${WRKSRC} -name ${DESTDIR:T} -prune -o -iname '*.otf' -exec \
|
|
|
|
${INSTALL_DATA} "{}" ${DESTDIR}${OTF_FONTS_DIR} ";"
|
2019-04-04 09:34:11 +02:00
|
|
|
|