Use ${INSTALL_DATA} instead of pax. upstream changelog: == Changes from 2.28 to 2.29 == * modified U+10FB in Sans to be a mirror image of U+2056, since U+10FB is not Georgian-specific (by Roozbeh Pournader) * added U+2B1F, U+2B24, U+2B53, U+2B54 in Sans (by Roozbeh Pournader) * fixed TUR opentype language tag to TRK in Serif (bug 19825) (by Ben Laenen) * early implementation of Abkhaz letter U+0524-U+0525 in Sans (by Michael Everson and abysta) * flipped U+1D538 in Sans (by Gee Fung Sit 薛至峰) * added U+26B3-U+26B8, U+1D7D8-U+1D7E1 in Sans (by Gee Fung Sit 薛至峰) * corrected U+1D7A9 in Sans Bold Oblique (by Gee Fung Sit 薛至峰) * Fixed U+0649 to be dual-joining in Sans Mono (by Roozbeh Pournader) * Remove unnecessary 'isol' feature from Sans Mono (by Roozbeh Pournader) * Remove 'cmap' mappings for U+066E, U+066F, U+067C, U+067D, U+0681, U+0682, U+0685, U+0692, U+06A1, U+06B5, U+06BA, U+06C6, U+06CE, and U+06D5 in Sans Mono (bug 20323) (by Roozbeh Pournader) * add half brackets (U+2E22 - U+2E25, by Steve Tinney)
55 lines
1.6 KiB
Makefile
55 lines
1.6 KiB
Makefile
# $NetBSD: Makefile,v 1.13 2009/04/17 16:31:13 jakllsch Exp $
|
|
#
|
|
|
|
DISTNAME= dejavu-fonts-ttf-2.29
|
|
PKGNAME= ${DISTNAME:S/fonts-//}
|
|
CATEGORIES= fonts
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=dejavu/}
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= jakllsch@NetBSD.org
|
|
HOMEPAGE= http://dejavu.sourceforge.net/
|
|
COMMENT= DejaVu family of TrueType fonts
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
USE_X11BASE= yes
|
|
NO_CONFIGURE= yes
|
|
NO_BUILD= yes
|
|
|
|
FONTS_DIRS.ttf= ${PREFIX}/lib/X11/fonts/TTF
|
|
|
|
EGDIR= ${PREFIX}/share/examples/${PKGBASE}
|
|
FCEGDIR= ${EGDIR}/fontconfig-conf.d
|
|
FCCFDIR= ${PKG_SYSCONFDIR}/fontconfig/conf.d
|
|
DOCSDIR= ${PREFIX}/share/doc/${PKGBASE}
|
|
|
|
MAKE_DIRS+= ${FCCFDIR}
|
|
|
|
CONF_FILES= ${FCEGDIR}/20-unhint-small-dejavu-sans-mono.conf \
|
|
${FCCFDIR}/20-unhint-small-dejavu-sans-mono.conf
|
|
CONF_FILES+= ${FCEGDIR}/20-unhint-small-dejavu-sans.conf \
|
|
${FCCFDIR}/20-unhint-small-dejavu-sans.conf
|
|
CONF_FILES+= ${FCEGDIR}/20-unhint-small-dejavu-serif.conf \
|
|
${FCCFDIR}/20-unhint-small-dejavu-serif.conf
|
|
|
|
CONF_FILES+= ${FCEGDIR}/57-dejavu-sans-mono.conf \
|
|
${FCCFDIR}/57-dejavu-sans-mono.conf
|
|
CONF_FILES+= ${FCEGDIR}/57-dejavu-sans.conf \
|
|
${FCCFDIR}/57-dejavu-sans.conf
|
|
CONF_FILES+= ${FCEGDIR}/57-dejavu-serif.conf \
|
|
${FCCFDIR}/57-dejavu-serif.conf
|
|
|
|
REQD_DIRS= ${EGDIR}
|
|
REQD_DIRS+= ${FCEGDIR}
|
|
|
|
INSTALLATION_DIRS= lib/X11/fonts/TTF ${DOCSDIR} ${FCEGDIR}
|
|
|
|
do-install:
|
|
${INSTALL_DATA} ${WRKSRC}/ttf/*.ttf ${DESTDIR}${FONTS_DIRS.ttf}
|
|
${INSTALL_DATA} ${WRKSRC}/fontconfig/*.conf ${DESTDIR}${FCEGDIR}
|
|
.for docfile in AUTHORS BUGS LICENSE NEWS README
|
|
${INSTALL_DATA} ${WRKSRC}/${docfile} ${DESTDIR}${DOCSDIR}
|
|
.endfor
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|