From owner-svn-ports-all@freebsd.org Mon Oct 17 14:53:22 2016 Return-Path: Delivered-To: svn-ports-all@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 0E504C15663; Mon, 17 Oct 2016 14:53:22 +0000 (UTC) (envelope-from olgeni@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 C5AC93A5; Mon, 17 Oct 2016 14:53:21 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u9HErK4l084422; Mon, 17 Oct 2016 14:53:20 GMT (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u9HErKlO084418; Mon, 17 Oct 2016 14:53:20 GMT (envelope-from olgeni@FreeBSD.org) Message-Id: <201610171453.u9HErKlO084418@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olgeni set sender to olgeni@FreeBSD.org using -f From: Jimmy Olgeni Date: Mon, 17 Oct 2016 14:53:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r424121 - head/x11-fonts/webfonts X-SVN-Group: ports-head 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.23 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: Mon, 17 Oct 2016 14:53:22 -0000 Author: olgeni Date: Mon Oct 17 14:53:20 2016 New Revision: 424121 URL: https://svnweb.freebsd.org/changeset/ports/424121 Log: Sync webfonts collection with mscorefonts2. - Update Arial, Times, Trebuchet and Verdana fonts to y2006 version. - Include ClearType fonts: Calibri, Cambria, Consolas, Constantia, Corbel. Add LICENSE information while I'm here. PR: 213512 Submitted by: Vladimir Kondratyev Modified: head/x11-fonts/webfonts/Makefile head/x11-fonts/webfonts/distinfo head/x11-fonts/webfonts/pkg-descr head/x11-fonts/webfonts/pkg-plist (contents, props changed) Modified: head/x11-fonts/webfonts/Makefile ============================================================================== --- head/x11-fonts/webfonts/Makefile Mon Oct 17 14:51:29 2016 (r424120) +++ head/x11-fonts/webfonts/Makefile Mon Oct 17 14:53:20 2016 (r424121) @@ -3,20 +3,25 @@ PORTNAME= webfonts PORTVERSION= 0.30 -PORTREVISION= 11 +PORTREVISION= 12 CATEGORIES= x11-fonts MASTER_SITES= SF/corefonts/the%20fonts/final:group1 \ ftp://ftp.botik.ru/rented/znamensk/distributions/ftp.vsu.ru/pub/tex/font-packs/mscore/:group1 \ - SF/corefonts/OldFiles/:group2 -DISTFILES= andale32.exe:group1 arial32.exe:group1 arialb32.exe:group1 \ - comic32.exe:group1 courie32.exe:group1 georgi32.exe:group1 \ - impact32.exe:group1 times32.exe:group1 trebuc32.exe:group1 \ - verdan32.exe:group1 webdin32.exe:group1 + SF/corefonts/OldFiles/:group2 \ + SF/mscorefonts2/cabs:group3 +DISTFILES= andale32.exe:group1 arialb32.exe:group1 comic32.exe:group1 \ + courie32.exe:group1 georgi32.exe:group1 impact32.exe:group1 \ + webdin32.exe:group1 EUupdate.EXE:group3 DIST_SUBDIR= ${PORTNAME} MAINTAINER= olgeni@FreeBSD.org COMMENT= TrueType core fonts for the Web +LICENSE= EULA +LICENSE_NAME= End User License Agreement +LICENSE_FILE= ${WRKSRC}/licen.txt +LICENSE_PERMS= dist-mirror pkg-mirror auto-accept + EXTRACT_DEPENDS=cabextract:archivers/cabextract USES= fonts @@ -27,12 +32,15 @@ EXTRACT_CMD= ${LOCALBASE}/bin/cabextrac EXTRACT_BEFORE_ARGS= -qLF '*.ttf' -d ${WRKSRC} EXTRACT_AFTER_ARGS= -OPTIONS_DEFINE= EXTRAFONTS +OPTIONS_DEFINE= EXTRAFONTS CLEARTYPE OPTIONS_SUB= yes EXTRAFONTS_DESC= Fonts licensed under MS Windows license EXTRAFONTS_DISTFILES= IELPKTH.CAB:group2 +CLEARTYPE_DESC= Install ClearType fonts +CLEARTYPE_DISTFILES= PowerPointViewer.exe:group3 + SUB_FILES= pkg-message .include @@ -40,10 +48,20 @@ SUB_FILES= pkg-message post-extract: ${EXTRACT_CMD} -qLF '*.txt' -d ${WRKSRC} ${_DISTDIR}/webdin32.exe +post-extract-CLEARTYPE-on: + ${EXTRACT_CMD} -qLF '*.cab' -d ${WRKSRC} \ + ${_DISTDIR}/PowerPointViewer.exe + ${EXTRACT_CMD} -qLF '*.txt' -d ${WRKSRC} \ + ${_DISTDIR}/PowerPointViewer.exe + ${EXTRACT_CMD} -qLF '*.ttf' -d ${WRKSRC} ${WRKSRC}/ppviewer.cab + do-install: @${MKDIR} ${STAGEDIR}${FONTSDIR} ${INSTALL_DATA} ${WRKSRC}/*.ttf ${STAGEDIR}${FONTSDIR} @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/licen.txt ${STAGEDIR}${DOCSDIR}/LICENSE +post-install-CLEARTYPE-on: + ${INSTALL_DATA} ${WRKSRC}/eula.txt ${STAGEDIR}${DOCSDIR} + .include Modified: head/x11-fonts/webfonts/distinfo ============================================================================== --- head/x11-fonts/webfonts/distinfo Mon Oct 17 14:51:29 2016 (r424120) +++ head/x11-fonts/webfonts/distinfo Mon Oct 17 14:53:20 2016 (r424121) @@ -1,8 +1,6 @@ -TIMESTAMP = 1468745172 +TIMESTAMP = 1475927079 SHA256 (webfonts/andale32.exe) = 0524fe42951adc3a7eb870e32f0920313c71f170c859b5f770d82b4ee111e970 SIZE (webfonts/andale32.exe) = 198384 -SHA256 (webfonts/arial32.exe) = 85297a4d146e9c87ac6f74822734bdee5f4b2a722d7eaa584b7f2cbf76f478f6 -SIZE (webfonts/arial32.exe) = 554208 SHA256 (webfonts/arialb32.exe) = a425f0ffb6a1a5ede5b979ed6177f4f4f4fdef6ae7c302a7b7720ef332fec0a8 SIZE (webfonts/arialb32.exe) = 168176 SHA256 (webfonts/comic32.exe) = 9c6df3feefde26d4e41d4a4fe5db2a89f9123a772594d7f59afd062625cd204e @@ -13,13 +11,11 @@ SHA256 (webfonts/georgi32.exe) = 2c2c7dc SIZE (webfonts/georgi32.exe) = 392440 SHA256 (webfonts/impact32.exe) = 6061ef3b7401d9642f5dfdb5f2b376aa14663f6275e60a51207ad4facf2fccfb SIZE (webfonts/impact32.exe) = 173288 -SHA256 (webfonts/times32.exe) = db56595ec6ef5d3de5c24994f001f03b2a13e37cee27bc25c58f6f43e8f807ab -SIZE (webfonts/times32.exe) = 661728 -SHA256 (webfonts/trebuc32.exe) = 5a690d9bb8510be1b8b4fe49f1f2319651fe51bbe54775ddddd8ef0bd07fdac9 -SIZE (webfonts/trebuc32.exe) = 357200 -SHA256 (webfonts/verdan32.exe) = c1cb61255e363166794e47664e2f21af8e3a26cb6346eb8d2ae2fa85dd5aad96 -SIZE (webfonts/verdan32.exe) = 351992 SHA256 (webfonts/webdin32.exe) = 64595b5abc1080fba8610c5c34fab5863408e806aafe84653ca8575bed17d75a SIZE (webfonts/webdin32.exe) = 185072 +SHA256 (webfonts/EUupdate.EXE) = 464dd2cd5f09f489f9ac86ea7790b7b8548fc4e46d9f889b68d2cdce47e09ea8 +SIZE (webfonts/EUupdate.EXE) = 1675184 +SHA256 (webfonts/PowerPointViewer.exe) = c4e753548d3092ffd7dd3849105e0a26d9b5a1afe46e6e667fe7c6887893701f +SIZE (webfonts/PowerPointViewer.exe) = 27024112 SHA256 (webfonts/IELPKTH.CAB) = c1be3fb8f0042570be76ec6daa03a99142c88367c1bc810240b85827c715961a SIZE (webfonts/IELPKTH.CAB) = 411248 Modified: head/x11-fonts/webfonts/pkg-descr ============================================================================== --- head/x11-fonts/webfonts/pkg-descr Mon Oct 17 14:51:29 2016 (r424120) +++ head/x11-fonts/webfonts/pkg-descr Mon Oct 17 14:53:20 2016 (r424121) @@ -1,8 +1,9 @@ This is a collection of high quality and free to use TrueType fonts created by Monotype and Microsoft Typography. It consists of the following families: - Times New Roman, Courier New, Georgia, Trebuchet MS, Comic Sans MS - Arial, Arial Black, Verdana, Andale Mono, Impact + Times New Roman, Courier New, Georgia, Trebuchet MS, Comic + Sans MS Arial, Arial Black, Verdana, Andale Mono, Impact, + Calibri, Cambria, Consolas, Constantia, Corbel They contain all 652 glyphs defined in WGL4 and are available in the following encodings: Modified: head/x11-fonts/webfonts/pkg-plist ============================================================================== --- head/x11-fonts/webfonts/pkg-plist Mon Oct 17 14:51:29 2016 (r424120) +++ head/x11-fonts/webfonts/pkg-plist Mon Oct 17 14:53:20 2016 (r424121) @@ -1,12 +1,36 @@ %%PORTDOCS%%%%DOCSDIR%%/LICENSE +%%CLEARTYPE%%%%PORTDOCS%%%%DOCSDIR%%/eula.txt %%FONTSDIR%%/andalemo.ttf %%FONTSDIR%%/arial.ttf %%FONTSDIR%%/arialbd.ttf %%FONTSDIR%%/arialbi.ttf %%FONTSDIR%%/ariali.ttf %%FONTSDIR%%/ariblk.ttf +%%CLEARTYPE%%%%FONTSDIR%%/calibri.ttf +%%CLEARTYPE%%%%FONTSDIR%%/calibrib.ttf +%%CLEARTYPE%%%%FONTSDIR%%/calibrii.ttf +%%CLEARTYPE%%%%FONTSDIR%%/calibriz.ttf +%%CLEARTYPE%%%%FONTSDIR%%/cambriab.ttf +%%CLEARTYPE%%%%FONTSDIR%%/cambriai.ttf +%%CLEARTYPE%%%%FONTSDIR%%/cambriaz.ttf +%%CLEARTYPE%%%%FONTSDIR%%/candara.ttf +%%CLEARTYPE%%%%FONTSDIR%%/candarab.ttf +%%CLEARTYPE%%%%FONTSDIR%%/candarai.ttf +%%CLEARTYPE%%%%FONTSDIR%%/candaraz.ttf %%FONTSDIR%%/comic.ttf %%FONTSDIR%%/comicbd.ttf +%%CLEARTYPE%%%%FONTSDIR%%/consola.ttf +%%CLEARTYPE%%%%FONTSDIR%%/consolab.ttf +%%CLEARTYPE%%%%FONTSDIR%%/consolai.ttf +%%CLEARTYPE%%%%FONTSDIR%%/consolaz.ttf +%%CLEARTYPE%%%%FONTSDIR%%/constan.ttf +%%CLEARTYPE%%%%FONTSDIR%%/constanb.ttf +%%CLEARTYPE%%%%FONTSDIR%%/constani.ttf +%%CLEARTYPE%%%%FONTSDIR%%/constanz.ttf +%%CLEARTYPE%%%%FONTSDIR%%/corbel.ttf +%%CLEARTYPE%%%%FONTSDIR%%/corbelb.ttf +%%CLEARTYPE%%%%FONTSDIR%%/corbeli.ttf +%%CLEARTYPE%%%%FONTSDIR%%/corbelz.ttf %%FONTSDIR%%/cour.ttf %%FONTSDIR%%/courbd.ttf %%FONTSDIR%%/courbi.ttf