From owner-svn-ports-all@freebsd.org Fri Jan 25 07:30:33 2019 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 8F0EE14AAFCE; Fri, 25 Jan 2019 07:30:33 +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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 2DEA96D77F; Fri, 25 Jan 2019 07:30:33 +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 0025B4DED; Fri, 25 Jan 2019 07:30:32 +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 x0P7UW1b090104; Fri, 25 Jan 2019 07:30:32 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x0P7UW7a090100; Fri, 25 Jan 2019 07:30:32 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201901250730.x0P7UW7a090100@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Fri, 25 Jan 2019 07:30:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r491130 - in head/x11-fonts: . linden-hill X-SVN-Group: ports-head X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: in head/x11-fonts: . linden-hill X-SVN-Commit-Revision: 491130 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 2DEA96D77F X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_SHORT(-0.97)[-0.974,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 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: Fri, 25 Jan 2019 07:30:33 -0000 Author: tobik Date: Fri Jan 25 07:30:31 2019 New Revision: 491130 URL: https://svnweb.freebsd.org/changeset/ports/491130 Log: New port: x11-fonts/linden-hill Linden Hill is a digital version of Frederic Goudy's Deepdene. The package includes roman and italic. WWW: https://www.theleagueofmoveabletype.com/linden-hill PR: 231305 Submitted by: Florian Limberger Added: head/x11-fonts/linden-hill/ head/x11-fonts/linden-hill/Makefile (contents, props changed) head/x11-fonts/linden-hill/distinfo (contents, props changed) head/x11-fonts/linden-hill/pkg-descr (contents, props changed) Modified: head/x11-fonts/Makefile Modified: head/x11-fonts/Makefile ============================================================================== --- head/x11-fonts/Makefile Fri Jan 25 07:25:10 2019 (r491129) +++ head/x11-fonts/Makefile Fri Jan 25 07:30:31 2019 (r491130) @@ -130,6 +130,7 @@ SUBDIR += libXft SUBDIR += liberation-fonts-ttf SUBDIR += libfontenc + SUBDIR += linden-hill SUBDIR += linux-c6-fontconfig SUBDIR += linux-c7-fontconfig SUBDIR += linuxlibertine Added: head/x11-fonts/linden-hill/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-fonts/linden-hill/Makefile Fri Jan 25 07:30:31 2019 (r491130) @@ -0,0 +1,30 @@ +# Created by: Florian Limberger +# $FreeBSD$ + +PORTNAME= linden-hill +DISTVERSION= g20110526 +CATEGORIES= x11-fonts + +MAINTAINER= flo@snakeoilproductions.net +COMMENT= Digital version of Frederic Goudy’s Deepdene + +LICENSE= OFL11 +LICENSE_FILE= ${WRKSRC}/Open\ Font\ License.markdown + +USES= fonts +USE_GITHUB= yes +GH_ACCOUNT= theleagueof +GH_TAGNAME= a3f7ae6 + +NO_ARCH= yes +NO_BUILD= yes + +PLIST_FILES= "${FONTSDIR}/Linden Hill Italic.otf" \ + "${FONTSDIR}/Linden Hill.otf" + +do-install: + ${MKDIR} ${STAGEDIR}${FONTSDIR} + cd ${WRKSRC} && ${INSTALL_DATA} "Linden Hill Italic.otf" \ + "Linden Hill.otf" ${STAGEDIR}${FONTSDIR} + +.include Added: head/x11-fonts/linden-hill/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-fonts/linden-hill/distinfo Fri Jan 25 07:30:31 2019 (r491130) @@ -0,0 +1,3 @@ +TIMESTAMP = 1535659680 +SHA256 (theleagueof-linden-hill-g20110526-a3f7ae6_GH0.tar.gz) = c650611b0b9a7e9ed0026fc045d9830c44beb5522973343a988cb90c2c61b30c +SIZE (theleagueof-linden-hill-g20110526-a3f7ae6_GH0.tar.gz) = 813411 Added: head/x11-fonts/linden-hill/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-fonts/linden-hill/pkg-descr Fri Jan 25 07:30:31 2019 (r491130) @@ -0,0 +1,4 @@ +Linden Hill is a digital version of Frederic Goudy's Deepdene. The +package includes roman and italic. + +WWW: https://www.theleagueofmoveabletype.com/linden-hill