mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-24 04:33:24 +00:00
97ace078fa
- Stop calling fontconfig on installation and deinstallation: fontconfig should be smart enough to manage its cache automatically. - Stop depending on and using mkfont{dir,scale}. Even though this is not a TTF font, most programs already use freetype and fontconfig.
26 lines
658 B
Makefile
26 lines
658 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= gohufont
|
|
PORTVERSION= 2.0
|
|
PORTREVISION= 1
|
|
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
|
|
|
|
FONTDIR= lib/X11/fonts/${PORTNAME}
|
|
NO_BUILD= yes
|
|
PLIST_SUB= FONTDIR=${FONTDIR}
|
|
|
|
do-install:
|
|
${MKDIR} ${STAGEDIR}${LOCALBASE}/${FONTDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/*.pcf.gz ${STAGEDIR}${LOCALBASE}/${FONTDIR}
|
|
|
|
.include <bsd.port.mk>
|