2826cac8bb
Changes from 2.32 to 2.33: * added Old Italic block to Sans * added U+051E, U+051F to Sans * added U+01BA, U+0372-U+0373, U+0376-U+0377, U+03CF, U+1D00-U+1D01, U+1D03-U+1D07, U+1D0A-U+1D13, U+1D15, U+1D18-U+1D1C, U+1D20-U+1D2B, U+1D2F, U+1D3D, U+1D5C-U+1D61, U+1D66-U+1D6B, U+1DB8, U+1E9C-U+1E9D, U+1EFA-U+1EFB, U+2C60-U+2C61, U+2C63, U+A726-U+A73C, U+A73E-U+A73F, U+A746-U+A747, U+A74A-U+A74B, U+A74E+U+A74F, U+A768-U+A769, U+A77B-U+A77C, U+A780-U+A787, U+A790-U+A791, U+A7FA-U+A7FF to Serif * added alternate forms to U+014A and U+01B7 in Serif * typographical improvements to U+0166-U+0167, U+0197, U+01B5-U+01B6, U+01BB, U+0222-U+0223, U+023D, U+0250-U+0252, U+026E, U+0274, U+028F, U+029F, U+02A3-U+02A5, U+02AB, U+03FE-U+03FF, U+1D02, U+1D14, U+1D1D-U+1D1F, U+1D3B, U+1D43-U+1D46, U+1D59, U+1D9B, U+2C71, U+2C73 in Serif * fixed bugs #31762 and #34700 plus other small fixes (wrong direction, duplicate points, etc.) for Sans and Serif * added U+204B to Mono * added U+26E2 to Sans * added Playing Cards block (U+1F0A0-U+1F0DF) to Sans * emoticons in Sans: replace U+2639-U+263B with better versions, add U+1F601-U+1F610, U+1F612-U+1F614, U+1F616, U+1F618, U+1F61A, U+1F61C-U+1F61E, U+1F620-U+1F624, U+1F625, U+1F628-U+1F62B, U+1F62D, U+1F630-U+1F633, U+1F635-U+1F640 * added U+A78E, U+A790-U+A791 to Sans and Mono * added U+A7FA to Sans * subscripts: added U+2095-U+209C to Sans, Serif and Mono, adjusted U+1D49-U+1D4A in Sans and Mono * added U+0243 to Mono * adjusted U+0307 to match dot of i, replaced dotaccent U+02D9 with U+0307 in most dependencies in Sans * adjusted anchors of f and added them to long s in Sans * added anchors to precomposed dependencies of D and d * added debug glyphs U+F002 and U+F003 which will show current point size * use correct version for Serbian italic be * added pictograms U+1F42D-U+1F42E, U+1F431, U+1F435 * improved Hebrew in Sans * improved Armenian in Sans, and added Armenian in Serif and Mono * remove "locl" feature for Romanian for S/T/s/t with cedilla/comma accent * replace wrong "dflt" script tag in Mono with "DFLT"
55 lines
1.6 KiB
Makefile
55 lines
1.6 KiB
Makefile
# $NetBSD: Makefile,v 1.17 2011/03/15 19:43:19 jakllsch Exp $
|
|
#
|
|
|
|
DISTNAME= dejavu-fonts-ttf-2.33
|
|
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"
|