4d19ad8b23
8 September 2010 (Mark Simonson) Anonymous Pro Version 1.002 - Fixed (stupid) incorrect design of quotesinglbase and quotedblbase - Lengthened hyphen - Shortened underscore so that it is distinct from adjacent underscores - Increased the weight of the ampersand to make it visually the same weight as other glyphs - Adjusted vertical position of "<", ">" and math characters to align with hyphen - Modified design of Cyrillic "ze" to better distinguish it from "3" - Modified 12ppm and 13ppm "m" bitmap so it does not touch adjacent glyphs - Corrected asymmetrical parentheses in 13ppm bitmaps - Corrected missing encoding of .null and CR - Added installation instructions for Linux to README.txt
46 lines
1.1 KiB
Makefile
46 lines
1.1 KiB
Makefile
# $NetBSD: Makefile,v 1.6 2015/08/06 07:01:53 wiz Exp $
|
|
#
|
|
|
|
DISTNAME= AnonymousPro-1.002
|
|
CATEGORIES= fonts
|
|
MASTER_SITES= http://www.marksimonson.com/assets/content/fonts/
|
|
EXTRACT_SUFX= .zip
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://www.marksimonson.com/fonts/view/anonymous-pro
|
|
COMMENT= Fixed width Sans designed especially for Coders
|
|
LICENSE= ofl-v1.1
|
|
|
|
WRKSRC= ${WRKDIR}/AnonymousPro-1.002.001
|
|
USE_LANGUAGES= # none
|
|
|
|
NO_CONFIGURE= YES
|
|
NO_BUILD= YES
|
|
|
|
DOCSDIR= ${PREFIX}/share/doc/${PKGBASE}
|
|
|
|
INSTALLATION_DIRS= share/fonts/X11/TTF ${DOCSDIR}
|
|
|
|
FONTDIR= ${PREFIX}/share/fonts/X11/TTF
|
|
FONTS_DIRS.ttf= ${FONTDIR}
|
|
|
|
INSTALL_FONTS= AnonymousProB.ttf \
|
|
AnonymousProBI.ttf \
|
|
AnonymousProI.ttf \
|
|
AnonymousPro.ttf
|
|
INSTALL_DOCS= FONTLOG.txt OFL-FAQ.txt OFL.txt README.txt
|
|
|
|
post-extract:
|
|
cd ${WRKSRC} && for i in *.ttf; do \
|
|
j=`${ECHO} $$i | sed "s/ //g"`; \
|
|
mv "$$i" "$$j"; done
|
|
|
|
do-install:
|
|
.for fontfile in ${INSTALL_FONTS}
|
|
${INSTALL_DATA} ${WRKSRC}/${fontfile:Q} ${DESTDIR}${FONTDIR}
|
|
.endfor
|
|
.for docfile in ${INSTALL_DOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${docfile} ${DESTDIR}${DOCSDIR}
|
|
.endfor
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|