From owner-svn-ports-head@FreeBSD.ORG Wed Sep 26 00:18:06 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E9574106566C; Wed, 26 Sep 2012 00:18:06 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id C9B5F8FC15; Wed, 26 Sep 2012 00:18:06 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q8Q0I6TN020228; Wed, 26 Sep 2012 00:18:06 GMT (envelope-from swills@svn.freebsd.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q8Q0I6ZM020221; Wed, 26 Sep 2012 00:18:06 GMT (envelope-from swills@svn.freebsd.org) Message-Id: <201209260018.q8Q0I6ZM020221@svn.freebsd.org> From: Steve Wills Date: Wed, 26 Sep 2012 00:18:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r304866 - in head/x11-fonts: . sourcecodepro-ttf sourcecodepro-ttf/files X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 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: Wed, 26 Sep 2012 00:18:07 -0000 Author: swills Date: Wed Sep 26 00:18:06 2012 New Revision: 304866 URL: http://svn.freebsd.org/changeset/ports/304866 Log: Source Code Pro was designed by Paul D. Hunt as a companion to Source Sans. This complementary family was adapted from the Source design due to a request to create a monospaced version for coding applications. Source Code Pro currently supports a wide range of languages using Latin script, and includes all the characters in the Adobe Latin 4 glyph set. As an open source project, it is expected that incremental updates will be made over time to extend glyph set coverage and functionality. WWW: http://sourceforge.net/projects/sourcecodepro.adobe/ PR: ports/171935 Submitted by: Masaki TAGAWA Added: head/x11-fonts/sourcecodepro-ttf/ head/x11-fonts/sourcecodepro-ttf/Makefile (contents, props changed) head/x11-fonts/sourcecodepro-ttf/distinfo (contents, props changed) head/x11-fonts/sourcecodepro-ttf/files/ head/x11-fonts/sourcecodepro-ttf/files/pkg-message.in (contents, props changed) head/x11-fonts/sourcecodepro-ttf/pkg-descr (contents, props changed) head/x11-fonts/sourcecodepro-ttf/pkg-plist (contents, props changed) Modified: head/x11-fonts/Makefile Modified: head/x11-fonts/Makefile ============================================================================== --- head/x11-fonts/Makefile Wed Sep 26 00:12:16 2012 (r304865) +++ head/x11-fonts/Makefile Wed Sep 26 00:18:06 2012 (r304866) @@ -137,6 +137,7 @@ SUBDIR += sgifonts SUBDIR += sharefonts SUBDIR += showfont + SUBDIR += sourcecodepro-ttf SUBDIR += sourcesanspro-ttf SUBDIR += stix-fonts SUBDIR += suxus Added: head/x11-fonts/sourcecodepro-ttf/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-fonts/sourcecodepro-ttf/Makefile Wed Sep 26 00:18:06 2012 (r304866) @@ -0,0 +1,51 @@ +# Created by: Masaki TAGAWA +# $FreeBSD$ + +PORTNAME= sourcecodepro-ttf +PORTVERSION= 1.009 +CATEGORIES= x11-fonts +MASTER_SITES= SF/sourcecodepro.adobe +DISTNAME= SourceCodePro_FontsOnly-${PORTVERSION} + +MAINTAINER= masaki@club.kyutech.ac.jp +COMMENT= A set of fonts by Adobe designed for coders + +LICENSE= OFL +LICENSE_NAME= SIL OPEN FONT LICENSE Version 1.1 +LICENSE_FILE= ${WRKSRC}/LICENSE.txt +LICENSE_PERMS= auto-accept + +BUILD_DEPENDS= mkfontscale:${PORTSDIR}/x11-fonts/mkfontscale \ + mkfontdir:${PORTSDIR}/x11-fonts/mkfontdir + +USE_ZIP= yes +USE_XORG= x11 + +PLIST_SUB= FONTDIR="${FONTDIR:S|${PREFIX}/||}" + +SUB_FILES= pkg-message +PKGMESSAGE= ${WRKDIR}/pkg-message +SUB_LIST= FONTDIR=${FONTDIR} + +FONTNAME= SourceCodePro +FONTDIR= ${PREFIX}/lib/X11/fonts/${FONTNAME} +INSTDAT= fonts.dir fonts.scale + +MKFONTSCL_CMD= ${LOCALBASE}/bin/mkfontscale +MKFONTDIR_CMD= ${LOCALBASE}/bin/mkfontdir + +do-build: + cd ${WRKSRC}/ && ${MKFONTSCL_CMD} + cd ${WRKSRC}/ && ${MKFONTDIR_CMD} + +do-install: + ${MKDIR} ${FONTDIR} + cd ${WRKSRC}/ && \ + ${INSTALL_DATA} ${INSTDAT} *.ttf ${FONTDIR} + +post-install: + @${ECHO_MSG} + @${CAT} ${PKGMESSAGE} + @${ECHO_MSG} + +.include Added: head/x11-fonts/sourcecodepro-ttf/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-fonts/sourcecodepro-ttf/distinfo Wed Sep 26 00:18:06 2012 (r304866) @@ -0,0 +1,2 @@ +SHA256 (SourceCodePro_FontsOnly-1.009.zip) = 8681e3a1b0c32e7c32b03d883a429cd460f4bded8953d67d6e32f499ba3c135c +SIZE (SourceCodePro_FontsOnly-1.009.zip) = 613755 Added: head/x11-fonts/sourcecodepro-ttf/files/pkg-message.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-fonts/sourcecodepro-ttf/files/pkg-message.in Wed Sep 26 00:18:06 2012 (r304866) @@ -0,0 +1,5 @@ +You can start using the fonts by following these instructions: + +Add the following line to the "Files" section of your x.org configuration file: + + FontPath "%%FONTDIR%%/" Added: head/x11-fonts/sourcecodepro-ttf/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-fonts/sourcecodepro-ttf/pkg-descr Wed Sep 26 00:18:06 2012 (r304866) @@ -0,0 +1,10 @@ +Source Code Pro was designed by Paul D. Hunt as a companion to Source Sans. +This complementary family was adapted from the Source design due to a +request to create a monospaced version for coding applications. + +Source Code Pro currently supports a wide range of languages using Latin +script, and includes all the characters in the Adobe Latin 4 glyph set. As +an open source project, it is expected that incremental updates will be +made over time to extend glyph set coverage and functionality. + +WWW: http://sourceforge.net/projects/sourcecodepro.adobe/ Added: head/x11-fonts/sourcecodepro-ttf/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-fonts/sourcecodepro-ttf/pkg-plist Wed Sep 26 00:18:06 2012 (r304866) @@ -0,0 +1,10 @@ +%%FONTDIR%%/SourceCodePro-Black.ttf +%%FONTDIR%%/SourceCodePro-Bold.ttf +%%FONTDIR%%/SourceCodePro-ExtraLight.ttf +%%FONTDIR%%/SourceCodePro-Light.ttf +%%FONTDIR%%/SourceCodePro-Regular.ttf +%%FONTDIR%%/SourceCodePro-Semibold.ttf +%%FONTDIR%%/fonts.dir +%%FONTDIR%%/fonts.scale +@unexec rm %D/%%FONTDIR%%/fonts.cache-1 2>/dev/null || /usr/bin/true +@dirrm %%FONTDIR%%