mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-21 08:42:23 +00:00
9d00cb13d0
Gohufont is a monospace bitmap font well suited for programming and terminal use. It is intended to be very legible and offers very discernable glyphs for all characters, including signs and symbols. The small 11 px version is perfect for laptops and netbooks as it enables to fit more text into their small screens. The 14 px is ideal for desktop screens where you sit farther away from it and the 11 px would be too small.
33 lines
911 B
Makefile
33 lines
911 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= gohufont
|
|
PORTVERSION= 2.0
|
|
CATEGORIES= x11-fonts
|
|
MASTER_SITES= http://font.gohu.org/
|
|
|
|
MAINTAINER= rakuco@FreeBSD.org
|
|
COMMENT= Monospace bitmap font well suited for programming and terminal use
|
|
|
|
LICENSE= WTFPL
|
|
LICENSE_NAME= Do What The Fuck You Want To Public License, Version 2
|
|
LICENSE_FILE= ${WRKSRC}/COPYING-LICENSE
|
|
LICENSE_PERMS= auto-accept dist-mirror dist-sell pkg-mirror pkg-sell
|
|
|
|
BUILD_DEPENDS= fc-cache:${PORTSDIR}/x11-fonts/fontconfig \
|
|
mkfontdir:${PORTSDIR}/x11-fonts/mkfontdir
|
|
|
|
FONTDIR= lib/X11/fonts/${PORTNAME}
|
|
NO_BUILD= yes
|
|
PLIST_SUB+= FONTDIR=${FONTDIR}
|
|
|
|
do-install:
|
|
@${MKDIR} ${LOCALBASE}/${FONTDIR}
|
|
@${INSTALL_DATA} ${WRKSRC}/*.pcf.gz ${LOCALBASE}/${FONTDIR}
|
|
|
|
post-install:
|
|
@cd ${LOCALBASE}/${FONTDIR} && mkfontdir
|
|
@${CP} ${LOCALBASE}/${FONTDIR}/fonts.dir ${LOCALBASE}/${FONTDIR}/fonts.scale
|
|
@command fc-cache -f -v ${LOCALBASE}/${FONTDIR}
|
|
|
|
.include <bsd.port.mk>
|