Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 4374984D46 for ; Tue, 29 Aug 2023 05:58:09 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id SHIbWZ60q_eT for ; Tue, 29 Aug 2023 05:58:08 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 6621384CD8 for ; Tue, 29 Aug 2023 05:58:08 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 5E4E5FBDB; Tue, 29 Aug 2023 05:58:08 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1693288688232980" MIME-Version: 1.0 Date: Tue, 29 Aug 2023 05:58:08 +0000 From: "Paolo Vincenzo Olivo" Subject: CVS commit: pkgsrc/fonts/suxus To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: vins@netbsd.org X-Mailer: log_accum Message-Id: <20230829055808.5E4E5FBDB@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1693288688232980 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: vins Date: Tue Aug 29 05:58:08 UTC 2023 Added Files: pkgsrc/fonts/suxus: DESCR MESSAGE Makefile PLIST distinfo Log Message: fonts/suxus: import suxus-1.5 from wip. Marc Lehman's bitmap font designed for low resolution displays. Suxus is a mod of nexus and tixus fonts with the addition of the missing VT-100 graphical characters, Latin-9 enconding support and improved readibility. To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 pkgsrc/fonts/suxus/DESCR pkgsrc/fonts/suxus/MESSAGE \ pkgsrc/fonts/suxus/Makefile pkgsrc/fonts/suxus/PLIST \ pkgsrc/fonts/suxus/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1693288688232980 Content-Disposition: inline Content-Length: 4459 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Added files: Index: pkgsrc/fonts/suxus/DESCR diff -u /dev/null pkgsrc/fonts/suxus/DESCR:1.1 --- /dev/null Tue Aug 29 05:58:08 2023 +++ pkgsrc/fonts/suxus/DESCR Tue Aug 29 05:58:08 2023 @@ -0,0 +1,4 @@ +Marc Lehman's bitmap font designed for low resolution displays. +Suxus is a mod of nexus and tixus fonts with the addition of the +missing VT-100 graphical characters, Latin-9 enconding support and +improved readibility. Index: pkgsrc/fonts/suxus/MESSAGE diff -u /dev/null pkgsrc/fonts/suxus/MESSAGE:1.1 --- /dev/null Tue Aug 29 05:58:08 2023 +++ pkgsrc/fonts/suxus/MESSAGE Tue Aug 29 05:58:08 2023 @@ -0,0 +1,18 @@ +=========================================================================== +$NetBSD: MESSAGE,v 1.1 2023/08/29 05:58:08 vins Exp $ + +To make new fonts available on an existing X session, you will have to +update the X fonts path, by executing: + + $ xset +fp ${PREFIX}/${FONTDIR} + $ xset fp rehash + +To make the effect permanent for future X sessions, you can add the above +command to your ~/.xinitrc script. + +In alternative, you may wish to add the suxus fonts directory path to your +Xorg configuration: + + FontPath "${PREFIX}/${FONTDIR}/" + +=========================================================================== Index: pkgsrc/fonts/suxus/Makefile diff -u /dev/null pkgsrc/fonts/suxus/Makefile:1.1 --- /dev/null Tue Aug 29 05:58:08 2023 +++ pkgsrc/fonts/suxus/Makefile Tue Aug 29 05:58:08 2023 @@ -0,0 +1,54 @@ +# $NetBSD: Makefile,v 1.1 2023/08/29 05:58:08 vins Exp $ + +DISTNAME= suxus-1.5 +CATEGORIES= fonts +MASTER_SITES= http://oldhome.schmorp.de/marc/data/ +DIST_SUBDIR= ${PKGNAME_NOREV} +EXTRACT_SUFX= .gz +DISTFILES= suxus-iso-8859-1.bdf.gz \ + suxus-iso-8859-15.bdf.gz \ + fonts.alias + +MAINTAINER= vins@NetBSD.org +HOMEPAGE= http://oldhome.schmorp.de/marc/suxus.html +COMMENT= Readable bitmap font for low-res displays +LICENSE= public-domain + +USE_LANGUAGES= # none +USE_TOOLS+= bdftopcf gzip + +NO_CONFIGURE= yes + +FONTS= suxus-iso-8859-1 suxus-iso-8859-15 +FONTDIR= share/fonts/X11/${PKGBASE} +REQD_DIRS= ${FONTDIR} +FONTS_DIRS.x11= ${FONTDIR} + +INSTALLATION_DIRS= ${FONTDIR} +MESSAGE_SUBST+= FONTDIR=${FONTDIR:Q} + +WRKSRC= ${WRKDIR} + +do-build: + ${RUN}cd ${WRKSRC} && \ + for FONT in ${FONTS}; do \ + ${ECHO_N} "Compiling font $${FONT} ... "; \ + bdftopcf $${FONT}.bdf | \ + ${GZIP_CMD} -c >$${FONT}.pcf.gz; \ + ${ECHO} "done"; \ + done + +do-install: + ${RUN}for FONT in ${FONTS}; do \ + ${ECHO_N} "Installing font $${FONT} ... "; \ + ${INSTALL_DATA} ${WRKSRC}/$${FONT}.pcf.gz \ + ${DESTDIR}${PREFIX}/${FONTDIR}; \ + ${ECHO} "done"; \ + done + +post-install: + ${RUN}${ECHO_N} "Installing font aliases ... "; \ + ${INSTALL_DATA} ${WRKDIR}/fonts.alias \ + ${DESTDIR}${PREFIX}/${FONTDIR}; + +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/fonts/suxus/PLIST diff -u /dev/null pkgsrc/fonts/suxus/PLIST:1.1 --- /dev/null Tue Aug 29 05:58:08 2023 +++ pkgsrc/fonts/suxus/PLIST Tue Aug 29 05:58:08 2023 @@ -0,0 +1,4 @@ +@comment $NetBSD: PLIST,v 1.1 2023/08/29 05:58:08 vins Exp $ +share/fonts/X11/suxus/fonts.alias +share/fonts/X11/suxus/suxus-iso-8859-1.pcf.gz +share/fonts/X11/suxus/suxus-iso-8859-15.pcf.gz Index: pkgsrc/fonts/suxus/distinfo diff -u /dev/null pkgsrc/fonts/suxus/distinfo:1.1 --- /dev/null Tue Aug 29 05:58:08 2023 +++ pkgsrc/fonts/suxus/distinfo Tue Aug 29 05:58:08 2023 @@ -0,0 +1,11 @@ +$NetBSD: distinfo,v 1.1 2023/08/29 05:58:08 vins Exp $ + +BLAKE2s (suxus-1.5/fonts.alias) = 27fff95ac969a2c90fdc864a75f9f8435513f1f32acf5c40729c9e5dcc7ef45a +SHA512 (suxus-1.5/fonts.alias) = e7a45df0d0613177c74fc068329b675f2952e1c6b822a86cb01f2f2fefa6420f19a8af35a380bdb5d018d175971b1b9599d480e9e0806a9eae77dab6239a33ae +Size (suxus-1.5/fonts.alias) = 141 bytes +BLAKE2s (suxus-1.5/suxus-iso-8859-1.bdf.gz) = 117d597f8e80647f0b310c2e8ec4d225c20d4873b2553047f07414f3b58143f2 +SHA512 (suxus-1.5/suxus-iso-8859-1.bdf.gz) = 5719be36155480913e1f76f3200a5c15786fb3c2f1869263a480aac9194f37637fcee09ae9276918d5a9902e73e145ed4e8824bd40c0198a89c58e06841e8b35 +Size (suxus-1.5/suxus-iso-8859-1.bdf.gz) = 3182 bytes +BLAKE2s (suxus-1.5/suxus-iso-8859-15.bdf.gz) = 32c0f6662436a5689277427928e9ee4b121e6bf73ce44002d6abbae590a47642 +SHA512 (suxus-1.5/suxus-iso-8859-15.bdf.gz) = 0583b96d63342a342c03584906b61a94f843f95de36a552a855f902ad847f2613175c6c2183b195bb89cc20f75355973e4f42b0749abc1b91d581cd78ae0472f +Size (suxus-1.5/suxus-iso-8859-15.bdf.gz) = 3185 bytes --_----------=_1693288688232980--