ProFont is a small bitmap font which is absolutely great for programming. It was made for Macintosh computers, but now it's also available for Windows and Linux/UNIX X Windows. from afresh1@ (maintainer) with some tweaks by me ok sthen@
32 lines
865 B
Makefile
32 lines
865 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2016/03/01 10:14:21 jasper Exp $
|
|
|
|
COMMENT = fixed width fonts especially for long hacking sessions
|
|
|
|
DISTNAME = ProFont-2.2
|
|
CATEGORIES = fonts x11
|
|
|
|
HOMEPAGE = http://www.fontsquirrel.com/fonts/ProFontWindows
|
|
|
|
MAINTAINER = Andrew Fresh <afresh1@openbsd.org>
|
|
|
|
# redistribute unmodified copies with included license
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
|
|
# Upstream keeps re-rolling the distfile without bumping the version
|
|
MASTER_SITES = https://distfiles.nl/ \
|
|
http://www.fontsquirrel.com/fonts/download/ProFontWindows/
|
|
EXTRACT_SUFX = .zip
|
|
|
|
NO_BUILD= Yes
|
|
NO_TEST = Yes
|
|
|
|
FONTDIR = ${PREFIX}/share/fonts/profont
|
|
|
|
do-install:
|
|
${INSTALL_DATA_DIR} ${FONTDIR}
|
|
${INSTALL_DATA} ${WRKDIR}/*.ttf ${FONTDIR}
|
|
${INSTALL_DATA} ${WRKDIR}/ProFont\ Redistribution\ Terms.txt \
|
|
${FONTDIR}/ProFont_Redistribution_Terms.txt
|
|
|
|
.include <bsd.port.mk>
|