From owner-svn-ports-head@freebsd.org Sat Jan 23 12:59:53 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E8F79A8C58B; Sat, 23 Jan 2016 12:59:52 +0000 (UTC) (envelope-from rakuco@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 mx1.freebsd.org (Postfix) with ESMTPS id C42C81AD5; Sat, 23 Jan 2016 12:59:52 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u0NCxpId005554; Sat, 23 Jan 2016 12:59:51 GMT (envelope-from rakuco@FreeBSD.org) Received: (from rakuco@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u0NCxpL6005549; Sat, 23 Jan 2016 12:59:51 GMT (envelope-from rakuco@FreeBSD.org) Message-Id: <201601231259.u0NCxpL6005549@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rakuco set sender to rakuco@FreeBSD.org using -f From: Raphael Kubo da Costa Date: Sat, 23 Jan 2016 12:59:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r406972 - in head/x11-fonts: . fifteen X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 23 Jan 2016 12:59:53 -0000 Author: rakuco Date: Sat Jan 23 12:59:51 2016 New Revision: 406972 URL: https://svnweb.freebsd.org/changeset/ports/406972 Log: New port: x11-fonts/fifteen. Fifteen is a faux bitmap font. This font is designed to be used as a monotype font for use in a terminal, or at a larger size, to look like an over scaled bitmap. It works well in a 132 column terminal window. It is, of course, monospaced and has clearly distinct 1I and l, and the zero is slashed. Quinze is a narrow monospaced font, for programming and terminal emulators. It is designed to be narrow, and allow 132 columns to be comfortably fitted on a screen The 1, l and I are clearly distinguished, as are O and 0. The ascii circumflex is presented as an arrow, consistent with its use as exponentiation operator. WWW: https://fontlibrary.org/en/font/fifteen Added: head/x11-fonts/fifteen/ head/x11-fonts/fifteen/Makefile (contents, props changed) head/x11-fonts/fifteen/distinfo (contents, props changed) head/x11-fonts/fifteen/pkg-descr (contents, props changed) head/x11-fonts/fifteen/pkg-plist (contents, props changed) Modified: head/x11-fonts/Makefile Modified: head/x11-fonts/Makefile ============================================================================== --- head/x11-fonts/Makefile Sat Jan 23 12:50:33 2016 (r406971) +++ head/x11-fonts/Makefile Sat Jan 23 12:59:51 2016 (r406972) @@ -40,6 +40,7 @@ SUBDIR += encodings SUBDIR += fantasque-sans-mono SUBDIR += farsifonts + SUBDIR += fifteen SUBDIR += fira SUBDIR += fntsample SUBDIR += font-adobe-100dpi Added: head/x11-fonts/fifteen/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-fonts/fifteen/Makefile Sat Jan 23 12:59:51 2016 (r406972) @@ -0,0 +1,25 @@ +# $FreeBSD$ + +PORTNAME= fifteen +PORTVERSION= 20150410 +CATEGORIES= x11-fonts +MASTER_SITES= https://fontlibrary.org/assets/downloads/${PORTNAME}/c1556403ec283a1b5a23ad483af659f9/ +DISTNAME= ${PORTNAME} + +MAINTAINER= rakuco@FreeBSD.org +COMMENT= Narrow monospaced fonts + +LICENSE= OFL11 + +USES= fonts zip + +FONTNAME= ${PORTNAME} +NO_ARCH= yes +NO_BUILD= yes +NO_WRKSUBDIR= yes + +do-install: + ${MKDIR} ${STAGEDIR}${FONTSDIR}/ + cd ${WRKSRC}/ && ${INSTALL_DATA} *.bdf *.ttf ${STAGEDIR}${FONTSDIR}/ + +.include Added: head/x11-fonts/fifteen/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-fonts/fifteen/distinfo Sat Jan 23 12:59:51 2016 (r406972) @@ -0,0 +1,2 @@ +SHA256 (fifteen.zip) = 20f633d0201d33ec2bcf955593637dfaec2bc489704d1197030f1b2cb025e2e6 +SIZE (fifteen.zip) = 26839 Added: head/x11-fonts/fifteen/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-fonts/fifteen/pkg-descr Sat Jan 23 12:59:51 2016 (r406972) @@ -0,0 +1,12 @@ +Fifteen is a faux bitmap font. This font is designed to be used as a monotype +font for use in a terminal, or at a larger size, to look like an over scaled +bitmap. It works well in a 132 column terminal window. It is, of course, +monospaced and has clearly distinct 1I and l, and the zero is slashed. + +Quinze is a narrow monospaced font, for programming and terminal emulators. It +is designed to be narrow, and allow 132 columns to be comfortably fitted on a +screen The 1, l and I are clearly distinguished, as are O and 0. The ascii +circumflex is presented as an arrow, consistent with its use as exponentiation +operator. + +WWW: https://fontlibrary.org/en/font/fifteen Added: head/x11-fonts/fifteen/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-fonts/fifteen/pkg-plist Sat Jan 23 12:59:51 2016 (r406972) @@ -0,0 +1,3 @@ +%%FONTSDIR%%/FifteenNarrow-15.bdf +%%FONTSDIR%%/FifteenNarrow.ttf +%%FONTSDIR%%/QuinzeNarrow.ttf