bac95a8c2c
MAINTAINER, previous maintainer agrees). Small tweaks from me. Terminus has now changed from GPL to the SIL Open Font License 1.1.
47 lines
1.1 KiB
Makefile
47 lines
1.1 KiB
Makefile
# $OpenBSD: Makefile,v 1.25 2011/05/16 11:25:13 sthen Exp $
|
|
|
|
COMMENT = fixed width fonts especially for long hacking sessions
|
|
|
|
DISTNAME = terminus-font-4.35
|
|
CATEGORIES = x11
|
|
|
|
HOMEPAGE = http://terminus-font.sourceforge.net/
|
|
|
|
MAINTAINER = LEVAI Daniel <leva@ecentrum.hu>
|
|
|
|
# OFL http://scripts.sil.org/OFL
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
PERMIT_PACKAGE_FTP = Yes
|
|
PERMIT_DISTFILES_CDROM = Yes
|
|
PERMIT_DISTFILES_FTP = Yes
|
|
|
|
MASTER_SITES = ${MASTER_SITE_SOURCEFORGE:=terminus-font/}
|
|
|
|
CONFIGURE_STYLE = simple
|
|
NO_REGRESS = Yes
|
|
|
|
ALL_TARGET = pcf
|
|
|
|
FONTDIR = ${PREFIX}/lib/X11/fonts/terminus
|
|
|
|
USE_GMAKE = Yes
|
|
|
|
FLAVORS = symquotes
|
|
FLAVOR ?=
|
|
|
|
.if ${FLAVOR:L:Msymquotes}
|
|
post-patch:
|
|
${PATCH} -d ${WRKSRC} < ${WRKSRC}/alt/gq2.diff
|
|
.endif
|
|
|
|
do-install:
|
|
${GZIP_CMD} ${WRKSRC}/*.pcf
|
|
${X11BASE}/bin/mkfontdir ${WRKSRC}
|
|
egrep '\.pcf\.gz' ${WRKSRC}/fonts.dir | \
|
|
sed 's/\.pcf\.gz//g' > ${WRKSRC}/fonts.alias
|
|
${INSTALL_DATA_DIR} ${FONTDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/*.pcf.gz ${FONTDIR}
|
|
${INSTALL_DATA} ${WRKBUILD}/fonts.alias ${FONTDIR}/fonts.alias-terminus
|
|
|
|
.include <bsd.port.mk>
|