From owner-svn-ports-all@freebsd.org Mon Nov 7 06:18:49 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 1DFECC33163; Mon, 7 Nov 2016 06:18:49 +0000 (UTC) (envelope-from delphij@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 C19BCEF7; Mon, 7 Nov 2016 06:18:48 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uA76Il1Q077072; Mon, 7 Nov 2016 06:18:47 GMT (envelope-from delphij@FreeBSD.org) Received: (from delphij@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uA76Iljo077066; Mon, 7 Nov 2016 06:18:47 GMT (envelope-from delphij@FreeBSD.org) Message-Id: <201611070618.uA76Iljo077066@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: delphij set sender to delphij@FreeBSD.org using -f From: Xin LI Date: Mon, 7 Nov 2016 06:18:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r425594 - in head/chinese: . fandol fandol/files 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, 07 Nov 2016 06:18:49 -0000 Author: delphij Date: Mon Nov 7 06:18:47 2016 New Revision: 425594 URL: https://svnweb.freebsd.org/changeset/ports/425594 Log: fandol - Four basic fonts for Chinese typesetting Fandol fonts designed for Chinese typesetting. The current version contains four styles: Song, Hei, Kai, Fang. All fonts are in OpenType format. Website: http://www.ctan.org/pkg/fandol Submitted by: intron Added: head/chinese/fandol/ head/chinese/fandol/Makefile (contents, props changed) head/chinese/fandol/distinfo (contents, props changed) head/chinese/fandol/files/ head/chinese/fandol/files/pkg-message.in (contents, props changed) head/chinese/fandol/pkg-descr (contents, props changed) head/chinese/fandol/pkg-plist (contents, props changed) Modified: head/chinese/Makefile Modified: head/chinese/Makefile ============================================================================== --- head/chinese/Makefile Mon Nov 7 04:28:14 2016 (r425593) +++ head/chinese/Makefile Mon Nov 7 06:18:47 2016 (r425594) @@ -31,6 +31,7 @@ SUBDIR += enscript SUBDIR += eric6 SUBDIR += eterm + SUBDIR += fandol SUBDIR += fcitx SUBDIR += fcitx-chewing SUBDIR += fcitx-cloudpinyin Added: head/chinese/fandol/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/chinese/fandol/Makefile Mon Nov 7 06:18:47 2016 (r425594) @@ -0,0 +1,52 @@ +# Created by: +# $FreeBSD$ + +PORTNAME= fandol +PORTVERSION= 0.3 +CATEGORIES= chinese +MASTER_SITES= http://mirrors.ctan.org/fonts/ +DISTNAME= ${PORTNAME} + +MAINTAINER= ports@FreeBSD.org +COMMENT= CTAN Fandol: Four GNU GPLv3-licensed Chinese OpenType fonts + +LICENSE= GPLv3 + +USE_XORG= x11 +USES= zip fonts +NO_WRKSUBDIR= yes +NO_BUILD= yes + +FONTNAME= fandol + +SUB_FILES= pkg-message + +PORTDOCS= README COPYING + +do-install: + ${MKDIR} ${STAGEDIR}${FONTSDIR} + + ${INSTALL_DATA} ${WRKSRC}/fandol/FandolSong-Bold.otf \ + ${STAGEDIR}${FONTSDIR} + ${INSTALL_DATA} ${WRKSRC}/fandol/FandolSong-Regular.otf \ + ${STAGEDIR}${FONTSDIR} + ${INSTALL_DATA} ${WRKSRC}/fandol/FandolHei-Regular.otf \ + ${STAGEDIR}${FONTSDIR} + ${INSTALL_DATA} ${WRKSRC}/fandol/FandolHei-Bold.otf \ + ${STAGEDIR}${FONTSDIR} + ${INSTALL_DATA} ${WRKSRC}/fandol/FandolFang-Regular.otf \ + ${STAGEDIR}${FONTSDIR} + ${INSTALL_DATA} ${WRKSRC}/fandol/FandolKai-Regular.otf \ + ${STAGEDIR}${FONTSDIR} + ${INSTALL_DATA} ${WRKSRC}/fandol/FandolBraille-Display.otf \ + ${STAGEDIR}${FONTSDIR} + ${INSTALL_DATA} ${WRKSRC}/fandol/FandolBraille-Regular.otf \ + ${STAGEDIR}${FONTSDIR} + + ${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} \ + ${WRKSRC}/fandol/README \ + ${WRKSRC}/fandol/COPYING \ + ${STAGEDIR}${DOCSDIR} + +.include Added: head/chinese/fandol/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/chinese/fandol/distinfo Mon Nov 7 06:18:47 2016 (r425594) @@ -0,0 +1,3 @@ +TIMESTAMP = 1478478970 +SHA256 (fandol.zip) = 9278f01b417ded5766d98c3937192a1a6a2c73a5e94a3493fdfc932b2a55005a +SIZE (fandol.zip) = 26688406 Added: head/chinese/fandol/files/pkg-message.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/chinese/fandol/files/pkg-message.in Mon Nov 7 06:18:47 2016 (r425594) @@ -0,0 +1,18 @@ +************************************************************************** +For old programs that use XLFD, please add %%FONTSDIR%% +to your X server either by: + +# xset fp+ %%FONTSDIR%% +# xset fp rehash + +or by adding the following line to the section "Files" of +your X-server configuration file (usually /etc/X11/xorg.conf) +and restarting the X-server: + +Section "Files" +... + FontPath "%%FONTSDIR%%" +... +EndSection + +************************************************************************** Added: head/chinese/fandol/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/chinese/fandol/pkg-descr Mon Nov 7 06:18:47 2016 (r425594) @@ -0,0 +1,6 @@ +fandol - Four basic fonts for Chinese typesetting + +Fandol fonts designed for Chinese typesetting. The current version contains +four styles: Song, Hei, Kai, Fang. All fonts are in OpenType format. + +WWW: http://www.ctan.org/pkg/fandol Added: head/chinese/fandol/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/chinese/fandol/pkg-plist Mon Nov 7 06:18:47 2016 (r425594) @@ -0,0 +1,9 @@ +%%FONTSDIR%%/FandolBraille-Display.otf +%%FONTSDIR%%/FandolBraille-Regular.otf +%%FONTSDIR%%/FandolFang-Regular.otf +%%FONTSDIR%%/FandolHei-Bold.otf +%%FONTSDIR%%/FandolHei-Regular.otf +%%FONTSDIR%%/FandolKai-Regular.otf +%%FONTSDIR%%/FandolSong-Bold.otf +%%FONTSDIR%%/FandolSong-Regular.otf +