From owner-svn-ports-all@FreeBSD.ORG Mon Mar 3 17:36:55 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C49FCF5E; Mon, 3 Mar 2014 17:36:55 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A52602A4; Mon, 3 Mar 2014 17:36:55 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s23HatvH032999; Mon, 3 Mar 2014 17:36:55 GMT (envelope-from thierry@svn.freebsd.org) Received: (from thierry@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s23HatNj032996; Mon, 3 Mar 2014 17:36:55 GMT (envelope-from thierry@svn.freebsd.org) Message-Id: <201403031736.s23HatNj032996@svn.freebsd.org> From: Thierry Thomas Date: Mon, 3 Mar 2014 17:36:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r346939 - head/x11-fonts/stix-fonts 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.17 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, 03 Mar 2014 17:36:55 -0000 Author: thierry Date: Mon Mar 3 17:36:54 2014 New Revision: 346939 URL: http://svnweb.freebsd.org/changeset/ports/346939 QAT: https://qat.redports.org/buildarchive/r346939/ Log: - Upgrade to 1.1.1; - Stagify. Note: this installs fonts in Web Open Font Format (WOFF). Modified: head/x11-fonts/stix-fonts/Makefile head/x11-fonts/stix-fonts/distinfo head/x11-fonts/stix-fonts/pkg-plist Modified: head/x11-fonts/stix-fonts/Makefile ============================================================================== --- head/x11-fonts/stix-fonts/Makefile Mon Mar 3 17:26:10 2014 (r346938) +++ head/x11-fonts/stix-fonts/Makefile Mon Mar 3 17:36:54 2014 (r346939) @@ -2,13 +2,13 @@ # $FreeBSD$ PORTNAME= stixfonts -PORTVERSION= 1.1.0 +PORTVERSION= 1.1.1 CATEGORIES= x11-fonts -MASTER_SITES= SF/${PORTNAME}/ -DISTNAME= STIXv${PORTVERSION} +MASTER_SITES= SF/${PORTNAME}/Current%20Release/ +DISTNAME= STIXv${PORTVERSION}-webfonts MAINTAINER= thierry@FreeBSD.org -COMMENT= A comprehensive set of fonts for scientific and engineering purposes +COMMENT= OpenType Unicode fonts for Scientific, Technical, and Math texts LICENSE= OFL11 @@ -36,33 +36,24 @@ MKFONTDIR_CMD= ${LOCALBASE}/bin/mkfontdi FCCACHE= ${LOCALBASE}/bin/fc-cache -f -v .if !defined(NOPORTDOCS) -PORTDOCS= STIXv${PORTVERSION}.pdf +PORTDOCS= "STIX Font ${PORTVERSION}-webfonts Release Documentation.pdf" .endif -NO_STAGE= yes do-build: ${MKDIR} ${WRKDIR}/build -.for group in STIX-General STIX-Word - ${CP} ${WRKSRC}/Fonts/${group}/*.otf ${WRKDIR}/build +.for group in stix-web STIX-MathJax/woff + ${CP} ${WRKSRC}/${group}/*.woff ${WRKDIR}/build/ .endfor cd ${WRKDIR}/build && ${MKFONTSCL_CMD} ${REINPLACE_CMD} -e 's|-misc-|-stix-|' ${WRKDIR}/build/fonts.scale cd ${WRKDIR}/build && ${MKFONTDIR_CMD} do-install: - ${MKDIR} ${FONTDIR} - cd ${WRKDIR}/build && ${INSTALL_DATA} fonts.dir fonts.scale *.otf ${FONTDIR} - cd ${FONTDIR} && ${MKFONTDIR_CMD} + ${MKDIR} ${STAGEDIR}${FONTDIR} + cd ${WRKDIR}/build && ${INSTALL_DATA} fonts.dir fonts.scale *.woff ${STAGEDIR}${FONTDIR} .if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR} - cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR} + ${MKDIR} ${STAGEDIR}${DOCSDIR} + cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR} .endif -post-install: - @${ECHO_MSG} "===> Running fc-cache" - -${FCCACHE} ${FONTDIR} - @${ECHO_MSG} - @${CAT} ${PKGMESSAGE} - @${ECHO_MSG} - .include Modified: head/x11-fonts/stix-fonts/distinfo ============================================================================== --- head/x11-fonts/stix-fonts/distinfo Mon Mar 3 17:26:10 2014 (r346938) +++ head/x11-fonts/stix-fonts/distinfo Mon Mar 3 17:36:54 2014 (r346939) @@ -1,2 +1,2 @@ -SHA256 (STIXv1.1.0.zip) = f63d3523fb492dd09a3f30d40eb3a89bc3159f86c8b720014805b27f368270be -SIZE (STIXv1.1.0.zip) = 2722656 +SHA256 (STIXv1.1.1-webfonts.zip) = 21924384f2a5323e3b80cd2d7d811ca7e87c0b0e1272505824160a82b5715605 +SIZE (STIXv1.1.1-webfonts.zip) = 4277613 Modified: head/x11-fonts/stix-fonts/pkg-plist ============================================================================== --- head/x11-fonts/stix-fonts/pkg-plist Mon Mar 3 17:26:10 2014 (r346938) +++ head/x11-fonts/stix-fonts/pkg-plist Mon Mar 3 17:36:54 2014 (r346939) @@ -1,37 +1,87 @@ -%%FONTDIR%%/STIX-Bold.otf -%%FONTDIR%%/STIX-BoldItalic.otf -%%FONTDIR%%/STIX-Italic.otf -%%FONTDIR%%/STIX-Regular.otf -%%FONTDIR%%/STIXGeneral-Bold.otf -%%FONTDIR%%/STIXGeneral-BoldItalic.otf -%%FONTDIR%%/STIXGeneral-Italic.otf -%%FONTDIR%%/STIXGeneral-Regular.otf -%%FONTDIR%%/STIXIntegralsD-Bold.otf -%%FONTDIR%%/STIXIntegralsD-Regular.otf -%%FONTDIR%%/STIXIntegralsSm-Bold.otf -%%FONTDIR%%/STIXIntegralsSm-Regular.otf -%%FONTDIR%%/STIXIntegralsUp-Bold.otf -%%FONTDIR%%/STIXIntegralsUp-Regular.otf -%%FONTDIR%%/STIXIntegralsUpD-Bold.otf -%%FONTDIR%%/STIXIntegralsUpD-Regular.otf -%%FONTDIR%%/STIXIntegralsUpSm-Bold.otf -%%FONTDIR%%/STIXIntegralsUpSm-Regular.otf -%%FONTDIR%%/STIXMath-Regular.otf -%%FONTDIR%%/STIXNonUnicode-Bold.otf -%%FONTDIR%%/STIXNonUnicode-BoldItalic.otf -%%FONTDIR%%/STIXNonUnicode-Italic.otf -%%FONTDIR%%/STIXNonUnicode-Regular.otf -%%FONTDIR%%/STIXSizeFiveSym-Regular.otf -%%FONTDIR%%/STIXSizeFourSym-Bold.otf -%%FONTDIR%%/STIXSizeFourSym-Regular.otf -%%FONTDIR%%/STIXSizeOneSym-Bold.otf -%%FONTDIR%%/STIXSizeOneSym-Regular.otf -%%FONTDIR%%/STIXSizeThreeSym-Bold.otf -%%FONTDIR%%/STIXSizeThreeSym-Regular.otf -%%FONTDIR%%/STIXSizeTwoSym-Bold.otf -%%FONTDIR%%/STIXSizeTwoSym-Regular.otf -%%FONTDIR%%/STIXVariants-Bold.otf -%%FONTDIR%%/STIXVariants-Regular.otf +%%FONTDIR%%/STIXGeneral-Bold.woff +%%FONTDIR%%/STIXGeneral-BoldItalic.woff +%%FONTDIR%%/STIXGeneral-Italic.woff +%%FONTDIR%%/STIXGeneral-Regular.woff +%%FONTDIR%%/STIXIntegralsD-Bold.woff +%%FONTDIR%%/STIXIntegralsD-Regular.woff +%%FONTDIR%%/STIXIntegralsSm-Bold.woff +%%FONTDIR%%/STIXIntegralsSm-Regular.woff +%%FONTDIR%%/STIXIntegralsUp-Bold.woff +%%FONTDIR%%/STIXIntegralsUp-Regular.woff +%%FONTDIR%%/STIXIntegralsUpD-Bold.woff +%%FONTDIR%%/STIXIntegralsUpD-Regular.woff +%%FONTDIR%%/STIXIntegralsUpSm-Bold.woff +%%FONTDIR%%/STIXIntegralsUpSm-Regular.woff +%%FONTDIR%%/STIXMathJax_Alphabets-Bold.woff +%%FONTDIR%%/STIXMathJax_Alphabets-BoldItalic.woff +%%FONTDIR%%/STIXMathJax_Alphabets-Italic.woff +%%FONTDIR%%/STIXMathJax_Alphabets-Regular.woff +%%FONTDIR%%/STIXMathJax_Arrows-Bold.woff +%%FONTDIR%%/STIXMathJax_Arrows-Regular.woff +%%FONTDIR%%/STIXMathJax_DoubleStruck-Bold.woff +%%FONTDIR%%/STIXMathJax_DoubleStruck-BoldItalic.woff +%%FONTDIR%%/STIXMathJax_DoubleStruck-Italic.woff +%%FONTDIR%%/STIXMathJax_DoubleStruck-Regular.woff +%%FONTDIR%%/STIXMathJax_Fraktur-Bold.woff +%%FONTDIR%%/STIXMathJax_Fraktur-Regular.woff +%%FONTDIR%%/STIXMathJax_Latin-Bold.woff +%%FONTDIR%%/STIXMathJax_Latin-BoldItalic.woff +%%FONTDIR%%/STIXMathJax_Latin-Italic.woff +%%FONTDIR%%/STIXMathJax_Latin-Regular.woff +%%FONTDIR%%/STIXMathJax_Main-Bold.woff +%%FONTDIR%%/STIXMathJax_Main-BoldItalic.woff +%%FONTDIR%%/STIXMathJax_Main-Italic.woff +%%FONTDIR%%/STIXMathJax_Main-Regular.woff +%%FONTDIR%%/STIXMathJax_Marks-Bold.woff +%%FONTDIR%%/STIXMathJax_Marks-BoldItalic.woff +%%FONTDIR%%/STIXMathJax_Marks-Italic.woff +%%FONTDIR%%/STIXMathJax_Marks-Regular.woff +%%FONTDIR%%/STIXMathJax_Misc-Bold.woff +%%FONTDIR%%/STIXMathJax_Misc-BoldItalic.woff +%%FONTDIR%%/STIXMathJax_Misc-Italic.woff +%%FONTDIR%%/STIXMathJax_Misc-Regular.woff +%%FONTDIR%%/STIXMathJax_Monospace-Regular.woff +%%FONTDIR%%/STIXMathJax_Normal-Bold.woff +%%FONTDIR%%/STIXMathJax_Normal-BoldItalic.woff +%%FONTDIR%%/STIXMathJax_Normal-Italic.woff +%%FONTDIR%%/STIXMathJax_Operators-Bold.woff +%%FONTDIR%%/STIXMathJax_Operators-Regular.woff +%%FONTDIR%%/STIXMathJax_SansSerif-Bold.woff +%%FONTDIR%%/STIXMathJax_SansSerif-BoldItalic.woff +%%FONTDIR%%/STIXMathJax_SansSerif-Italic.woff +%%FONTDIR%%/STIXMathJax_SansSerif-Regular.woff +%%FONTDIR%%/STIXMathJax_Script-BoldItalic.woff +%%FONTDIR%%/STIXMathJax_Script-Italic.woff +%%FONTDIR%%/STIXMathJax_Script-Regular.woff +%%FONTDIR%%/STIXMathJax_Shapes-Bold.woff +%%FONTDIR%%/STIXMathJax_Shapes-BoldItalic.woff +%%FONTDIR%%/STIXMathJax_Shapes-Regular.woff +%%FONTDIR%%/STIXMathJax_Size1-Regular.woff +%%FONTDIR%%/STIXMathJax_Size2-Regular.woff +%%FONTDIR%%/STIXMathJax_Size3-Regular.woff +%%FONTDIR%%/STIXMathJax_Size4-Regular.woff +%%FONTDIR%%/STIXMathJax_Size5-Regular.woff +%%FONTDIR%%/STIXMathJax_Symbols-Bold.woff +%%FONTDIR%%/STIXMathJax_Symbols-Regular.woff +%%FONTDIR%%/STIXMathJax_Variants-Bold.woff +%%FONTDIR%%/STIXMathJax_Variants-BoldItalic.woff +%%FONTDIR%%/STIXMathJax_Variants-Italic.woff +%%FONTDIR%%/STIXMathJax_Variants-Regular.woff +%%FONTDIR%%/STIXNonUnicode-Bold.woff +%%FONTDIR%%/STIXNonUnicode-BoldItalic.woff +%%FONTDIR%%/STIXNonUnicode-Italic.woff +%%FONTDIR%%/STIXNonUnicode-Regular.woff +%%FONTDIR%%/STIXSizeFiveSym-Regular.woff +%%FONTDIR%%/STIXSizeFourSym-Bold.woff +%%FONTDIR%%/STIXSizeFourSym-Regular.woff +%%FONTDIR%%/STIXSizeOneSym-Bold.woff +%%FONTDIR%%/STIXSizeOneSym-Regular.woff +%%FONTDIR%%/STIXSizeThreeSym-Bold.woff +%%FONTDIR%%/STIXSizeThreeSym-Regular.woff +%%FONTDIR%%/STIXSizeTwoSym-Bold.woff +%%FONTDIR%%/STIXSizeTwoSym-Regular.woff +%%FONTDIR%%/STIXVariants-Bold.woff +%%FONTDIR%%/STIXVariants-Regular.woff %%FONTDIR%%/fonts.dir %%FONTDIR%%/fonts.scale @exec %%FCCACHE%% %D/%%FONTDIR%% 2>/dev/null || true