b7f05445c0
It has been common practice to have one or more URLs at the end of the ports' pkg-descr files, one per line and prefixed with "WWW:". These URLs should point at a project website or other relevant resources. Access to these URLs required processing of the pkg-descr files, and they have often become stale over time. If more than one such URL was present in a pkg-descr file, only the first one was tarnsfered into the port INDEX, but for many ports only the last line did contain the port specific URL to further information. There have been several proposals to make a project URL available as a macro in the ports' Makefiles, over time. This commit implements such a proposal and moves one of the WWW: entries of each pkg-descr file into the respective port's Makefile. A heuristic attempts to identify the most relevant URL in case there is more than one WWW: entry in some pkg-descr file. URLs that are not moved into the Makefile are prefixed with "See also:" instead of "WWW:" in the pkg-descr files in order to preserve them. There are 1256 ports that had no WWW: entries in pkg-descr files. These ports will not be touched in this commit. The portlint port has been adjusted to expect a WWW entry in each port Makefile, and to flag any remaining "WWW:" lines in pkg-descr files as deprecated. Approved by: portmgr (tcberner)
83 lines
2.1 KiB
Makefile
83 lines
2.1 KiB
Makefile
PORTNAME= tamsyn-font
|
|
DISTVERSION= 1.11
|
|
PORTREVISION= 1
|
|
CATEGORIES= x11-fonts
|
|
MASTER_SITES= http://www.fial.com/~scott/tamsyn-font/download/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Monospaced bitmap font for programming
|
|
WWW= http://www.fial.com/~scott/tamsyn-font/
|
|
|
|
LICENSE= TAMSYN
|
|
LICENSE_NAME= Tamsyn License
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept
|
|
|
|
NO_ARCH= yes
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
OPTIONS_DEFAULT= VT X11
|
|
OPTIONS_MULTI= TYPE
|
|
OPTIONS_MULTI_TYPE= VT X11
|
|
.if !exists(/usr/bin/vtfontcvt)
|
|
OPTIONS_EXCLUDE= VT
|
|
.endif
|
|
OPTIONS_SUB= yes
|
|
|
|
TYPE_DESC= Font type
|
|
VT_DESC= Install vt(4) fonts
|
|
X11_DESC= Install Xorg bitmap fonts
|
|
|
|
VT_BUILD_DEPENDS= pcf2bdf:x11-fonts/pcf2bdf
|
|
VT_CHARFIX_7x14= 168 # U+00A8 (DIAERESIS)
|
|
VT_CHARFIX_8x15= 180 # U+00B4 (ACUTE ACCENT)
|
|
VT_CHARFIX_8x16= 180
|
|
|
|
X11_USES= fonts
|
|
X11_USES_OFF= fonts:none
|
|
|
|
do-build:
|
|
@${DO_NADA}
|
|
|
|
do-build-VT-on:
|
|
.for sz in 5x9 6x12 7x13 7x14 8x15 8x16 10x20
|
|
pcf2bdf -o ${WRKSRC}/Tamsyn${sz}r.bdf ${WRKSRC}/Tamsyn${sz}r.pcf
|
|
pcf2bdf -o ${WRKSRC}/Tamsyn${sz}b.bdf ${WRKSRC}/Tamsyn${sz}b.pcf
|
|
.endfor
|
|
.for sz in 5x9 6x12 7x13 7x14 8x15 8x16 10x20
|
|
.if !empty(VT_CHARFIX_${sz})
|
|
# Fix fonts that are missing some characters in the regular fonts
|
|
# that are available in the bold fonts, which vtfontcvt does not
|
|
# like.
|
|
${MV} ${WRKSRC}/Tamsyn${sz}r.bdf \
|
|
${WRKSRC}/Tamsyn${sz}r.bdf.orig
|
|
${AWK} -f ${FILESDIR}/paste-char.awk \
|
|
-v copy=${VT_CHARFIX_${sz}} \
|
|
${WRKSRC}/Tamsyn${sz}b.bdf \
|
|
${WRKSRC}/Tamsyn${sz}r.bdf.orig \
|
|
> ${WRKSRC}/Tamsyn${sz}r.bdf
|
|
.endif
|
|
vtfontcvt ${sz:S/^/-w /:S/x/ -h /} \
|
|
${WRKSRC}/Tamsyn${sz}r.bdf \
|
|
${WRKSRC}/Tamsyn${sz}b.bdf \
|
|
${WRKSRC}/Tamsyn${sz}.fnt
|
|
.endfor
|
|
|
|
do-build-X11-on:
|
|
${GZIP_CMD} ${WRKSRC}/*.pcf
|
|
|
|
do-install:
|
|
@${MKDIR} ${STAGEDIR}${FONTSDIR}
|
|
|
|
do-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR}
|
|
|
|
do-install-VT-on:
|
|
${INSTALL_DATA} ${WRKSRC}/*.fnt ${STAGEDIR}${FONTSDIR}
|
|
|
|
do-install-X11-on:
|
|
${INSTALL_DATA} ${FILESDIR}/fonts.alias ${WRKSRC}/*.pcf.gz \
|
|
${STAGEDIR}${FONTSDIR}
|
|
|
|
.include <bsd.port.mk>
|