From owner-svn-ports-all@freebsd.org Thu Oct 4 07:09:29 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 24CD310C25D6; Thu, 4 Oct 2018 07:09:29 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id CED8C86C97; Thu, 4 Oct 2018 07:09:28 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id C973B22D15; Thu, 4 Oct 2018 07:09:28 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w9479S3A038341; Thu, 4 Oct 2018 07:09:28 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w9479R27038334; Thu, 4 Oct 2018 07:09:27 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201810040709.w9479R27038334@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Thu, 4 Oct 2018 07:09:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r481206 - in head/x11-fonts: . psftools X-SVN-Group: ports-head X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: in head/x11-fonts: . psftools X-SVN-Commit-Revision: 481206 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Oct 2018 07:09:29 -0000 Author: tobik Date: Thu Oct 4 07:09:27 2018 New Revision: 481206 URL: https://svnweb.freebsd.org/changeset/ports/481206 Log: New port: x11-fonts/psftools The PSF Tools are an attempt to do something similar to NetPBM, for simple fixed-width bitmap fonts. The current release can convert the following formats to PSF: - Raw (DOS-style) font - Windows font (FNT, FON) - Sinclair Spectrum +3 - MDA character ROM dump - DOS/Linux codepages (CP, CPI) - Hercules WriteOn (WOF) - Wyse-60 soft font - BBC Micro soft font - Plain text and PSF to the following formats: - Raw font - Windows font (FNT, FON) - Hercules WriteOn (WOF) - DOS codepages (CPI) - Sinclair Spectrum +3 - BDF - C include file - BSD 'wsfont' kernel header - XBM image containing all characters - Single PBM image for each character - Plain text - Wyse-60 soft font - BBC Micro soft font WWW: http://www.seasip.info/Unix/PSF/ Added: head/x11-fonts/psftools/ head/x11-fonts/psftools/Makefile (contents, props changed) head/x11-fonts/psftools/distinfo (contents, props changed) head/x11-fonts/psftools/pkg-descr (contents, props changed) head/x11-fonts/psftools/pkg-plist (contents, props changed) Modified: head/x11-fonts/Makefile Modified: head/x11-fonts/Makefile ============================================================================== --- head/x11-fonts/Makefile Thu Oct 4 07:07:55 2018 (r481205) +++ head/x11-fonts/Makefile Thu Oct 4 07:09:27 2018 (r481206) @@ -168,6 +168,7 @@ SUBDIR += profont SUBDIR += proggy_fonts SUBDIR += proggy_fonts-ttf + SUBDIR += psftools SUBDIR += py-QtAwesome SUBDIR += py-bdflib SUBDIR += roboto-fonts-ttf Added: head/x11-fonts/psftools/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-fonts/psftools/Makefile Thu Oct 4 07:09:27 2018 (r481206) @@ -0,0 +1,19 @@ +# $FreeBSD$ + +PORTNAME= psftools +PORTVERSION= 1.0.10 +CATEGORIES= x11-fonts +MASTER_SITES= http://www.seasip.info/Unix/PSF/ + +MAINTAINER= tobik@FreeBSD.org +COMMENT= Converters for simple fixed-width bitmap fonts + +LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/COPYING + +USES= libtool +GNU_CONFIGURE= yes +CONFIGURE_ARGS= --disable-static +INSTALL_TARGET= install-strip + +.include Added: head/x11-fonts/psftools/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-fonts/psftools/distinfo Thu Oct 4 07:09:27 2018 (r481206) @@ -0,0 +1,3 @@ +TIMESTAMP = 1538634601 +SHA256 (psftools-1.0.10.tar.gz) = 1bc03214a29c4fc461a7aa11b9a3debde419b1271fa5110273ded961774e2b6f +SIZE (psftools-1.0.10.tar.gz) = 764867 Added: head/x11-fonts/psftools/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-fonts/psftools/pkg-descr Thu Oct 4 07:09:27 2018 (r481206) @@ -0,0 +1,32 @@ +The PSF Tools are an attempt to do something similar to NetPBM, for +simple fixed-width bitmap fonts. + +The current release can convert the following formats to PSF: + +- Raw (DOS-style) font +- Windows font (FNT, FON) +- Sinclair Spectrum +3 +- MDA character ROM dump +- DOS/Linux codepages (CP, CPI) +- Hercules WriteOn (WOF) +- Wyse-60 soft font +- BBC Micro soft font +- Plain text + +and PSF to the following formats: + +- Raw font +- Windows font (FNT, FON) +- Hercules WriteOn (WOF) +- DOS codepages (CPI) +- Sinclair Spectrum +3 +- BDF +- C include file +- BSD 'wsfont' kernel header +- XBM image containing all characters +- Single PBM image for each character +- Plain text +- Wyse-60 soft font +- BBC Micro soft font + +WWW: http://www.seasip.info/Unix/PSF/ Added: head/x11-fonts/psftools/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-fonts/psftools/pkg-plist Thu Oct 4 07:09:27 2018 (r481206) @@ -0,0 +1,66 @@ +bin/bbc2psf +bin/cpi2psf +bin/cpicomp +bin/cpidcomp +bin/fnt2psf +bin/fnts2fon +bin/fon2fnts +bin/mda2psf +bin/page2cp2 +bin/psf2bbc +bin/psf2bdf +bin/psf2bsd +bin/psf2fnt +bin/psf2inc +bin/psf2pbms +bin/psf2raw +bin/psf2txt +bin/psf2wof +bin/psf2wyse +bin/psf2xbm +bin/psf2zx +bin/psfjoin +bin/psfmerge +bin/psfpages +bin/psfs2cpi +bin/psfs2mda +bin/psfxform +bin/raw2psf +bin/txt2psf +bin/wof2psf +bin/wyse2psf +bin/zx2psf +include/psflib.h +include/psfutils.h +lib/libpsf.so +lib/libpsf.so.0 +lib/libpsf.so.0.1.1 +man/man1/cpi2psf.1.gz +man/man1/cpicomp.1.gz +man/man1/cpidcomp.1.gz +man/man1/fnt2psf.1.gz +man/man1/fnts2fon.1.gz +man/man1/fon2fnts.1.gz +man/man1/mda2psf.1.gz +man/man1/psf2bdf.1.gz +man/man1/psf2bsd.1.gz +man/man1/psf2fnt.1.gz +man/man1/psf2inc.1.gz +man/man1/psf2pbms.1.gz +man/man1/psf2raw.1.gz +man/man1/psf2txt.1.gz +man/man1/psf2wof.1.gz +man/man1/psf2wyse.1.gz +man/man1/psf2xbm.1.gz +man/man1/psf2zx.1.gz +man/man1/psfjoin.1.gz +man/man1/psfmerge.1.gz +man/man1/psfpages.1.gz +man/man1/psfs2cpi.1.gz +man/man1/psfs2mda.1.gz +man/man1/psfxform.1.gz +man/man1/raw2psf.1.gz +man/man1/txt2psf.1.gz +man/man1/wof2psf.1.gz +man/man1/wyse2psf.1.gz +man/man1/zx2psf.1.gz