3581e67b44
Appealing ideas are often simple: how much of a letter can be removed while maintaining readability? After extensive testing with all kinds of shapes, the best results were achieved using small circles. After lots of late hours (and coffee) this resulted in a font that uses up to 20% less ink. looks good to ajacoutot@
35 lines
856 B
Makefile
35 lines
856 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2009/09/10 22:29:42 jasper Exp $
|
|
|
|
COMMENT= ink-saving font based on Vera Sans
|
|
|
|
# Make sure we're well below upstreams initial versioned release
|
|
V= 0.001
|
|
DISTNAME= spranq_eco_sans_regular-$V
|
|
PKGNAME= spranq-ecofont-ttf-$V
|
|
CATEGORIES= x11
|
|
|
|
HOMEPAGE= http://www.ecofont.eu/ecofont_en.html
|
|
|
|
# Vera Sans license
|
|
# http://www.bitstream.com/font_rendering/products/dev_fonts/vera.html
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
|
|
# Untill upstream starts to version the font
|
|
MASTER_SITES= http://www.phil.uu.nl/~lievisse/distfiles/
|
|
EXTRACT_SUFX= .zip
|
|
|
|
NO_BUILD= Yes
|
|
NO_REGRSS= Yes
|
|
|
|
WRKDIST= ${WRKDIR}/
|
|
FONTSDIR= ${PREFIX}/lib/X11/fonts/ecofont
|
|
|
|
do-install:
|
|
${INSTALL_DATA_DIR} ${FONTSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/*.ttf ${FONTSDIR}
|
|
|
|
.include <bsd.port.mk>
|