mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-25 00:51:21 +00:00
14feac0fba
- Pass maintainership to submitter PR: ports/159526 Submitted by: Niclas Zeising <niclas.zeising@gmail.com> Approved by: multiple maintainer timeouts (>6 months)
88 lines
2.4 KiB
Makefile
88 lines
2.4 KiB
Makefile
# New ports collection makefile for: terminus-font
|
|
# Date Created: 04 Nov 2002
|
|
# Whom: Michael Hsin <mhsin@mhsin.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= terminus-font
|
|
PORTVERSION= 4.36
|
|
CATEGORIES= x11-fonts
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:S|%SUBDIR%|${PORTNAME:L}/${PORTNAME}-${PORTVERSION}|}
|
|
|
|
MAINTAINER= niclas.zeising@gmail.com
|
|
COMMENT= Terminus Font - a clean fixed width font
|
|
|
|
BUILD_DEPENDS= mkitalic:${PORTSDIR}/x11-fonts/mkbold-mkitalic \
|
|
bdftopcf:${PORTSDIR}/x11-fonts/bdftopcf \
|
|
mkfontscale:${PORTSDIR}/x11-fonts/mkfontscale
|
|
RUN_DEPENDS= mkfontdir:${PORTSDIR}/x11-fonts/mkfontdir
|
|
|
|
USE_PERL5_BUILD=yes
|
|
USE_GMAKE= yes
|
|
|
|
OPTIONS= AO2 "Variant of letter 'a'" off \
|
|
DV1 "Variant of cyrillic letters 'de' and 've'" off \
|
|
GE2 "Variant of cyrillic letter 'ge'" off \
|
|
GQ2 "Variant of grave accent and apostrophe" off \
|
|
IJ1 "Variant of cyrillic letters 'i' and 'short i'" off \
|
|
KA2 "Variant of cyrillic letter 'ka'" off \
|
|
HI2 "Higher uppercase letters, for size 18" off \
|
|
LL2 "Variant with more distinctive l (ell)" off
|
|
|
|
SUB_LIST= FONTDIR="${PREFIX}/${FONTDIR}"
|
|
SUB_FILES= pkg-message
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
ALL_TARGET= pcf
|
|
FONTDIR= lib/X11/fonts/${PORTNAME}
|
|
PLIST_SUB+= FONTDIR=${FONTDIR}
|
|
|
|
post-extract:
|
|
.if defined(WITH_AO2)
|
|
cd ${WRKSRC} && ${PATCH} -p1 -i alt/ao2.diff
|
|
.endif
|
|
.if defined(WITH_DV1) && !defined(WITH_HI2)
|
|
cd ${WRKSRC} && ${PATCH} -p1 -i alt/dv1.diff
|
|
.endif
|
|
.if defined(WITH_GE2)
|
|
cd ${WRKSRC} && ${PATCH} -p1 -i alt/ge2.diff
|
|
.endif
|
|
.if defined(WITH_GQ2)
|
|
cd ${WRKSRC} && ${PATCH} -p1 -i alt/gq2.diff
|
|
.endif
|
|
.if defined(WITH_IJ1)
|
|
cd ${WRKSRC} && ${PATCH} -p1 -i alt/ij1.diff
|
|
.endif
|
|
.if defined(WITH_KA2) && !defined(WITH_HI2)
|
|
cd ${WRKSRC} && ${PATCH} -p1 -i alt/ka2.diff
|
|
.endif
|
|
.if defined(WITH_HI2)
|
|
cd ${WRKSRC} && ${PATCH} -p1 -i alt/hi2.diff
|
|
.if defined(WITH_DV1)
|
|
cd ${WRKSRC} && ${PATCH} -p1 -i alt/hi2-dv1.diff
|
|
.endif
|
|
.if defined(WITH_KA2)
|
|
cd ${WRKSRC} && ${PATCH} -p1 -i alt/hi2-ka2.diff
|
|
.endif
|
|
.endif
|
|
.if defined(WITH_LL2)
|
|
cd ${WRKSRC} && ${PATCH} -p1 -i alt/ll2.diff
|
|
.endif
|
|
|
|
post-build:
|
|
@${GZIP_CMD} ${WRKSRC}/*.pcf
|
|
|
|
do-install:
|
|
@${MKDIR} ${PREFIX}/${FONTDIR}
|
|
@${INSTALL_DATA} ${WRKSRC}/*.pcf.gz ${PREFIX}/${FONTDIR}
|
|
|
|
post-install:
|
|
@cd ${PREFIX}/${FONTDIR}; mkfontdir
|
|
@${CP} ${PREFIX}/${FONTDIR}/fonts.dir ${PREFIX}/${FONTDIR}/fonts.scale || true
|
|
@command fc-cache -f -v ${PREFIX}/${FONTDIR} || true
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.post.mk>
|