diff options
author | hrs <hrs@FreeBSD.org> | 2013-09-05 05:15:21 +0800 |
---|---|---|
committer | hrs <hrs@FreeBSD.org> | 2013-09-05 05:15:21 +0800 |
commit | 63ba9febfa002cd557c020ccedab7396ac671e84 (patch) | |
tree | 50783d2a432030563550cbc1eb312bc5333bf86b /japanese/font-ipa | |
parent | 09148ad2edbc12f68de084005ba1c102f41bbede (diff) | |
download | freebsd-ports-graphics-63ba9febfa002cd557c020ccedab7396ac671e84.tar.gz freebsd-ports-graphics-63ba9febfa002cd557c020ccedab7396ac671e84.tar.zst freebsd-ports-graphics-63ba9febfa002cd557c020ccedab7396ac671e84.zip |
- Fix a warning "Having multiple values in <test> isn't supported and may
not work as expected" when using the latest x11-fonts/fontconfig [*].
- Update to the latest version (font-migu, font-ume, font-vlgothic).
- Style clean-ups.
PR: ports/181701 [*]
Diffstat (limited to 'japanese/font-ipa')
-rw-r--r-- | japanese/font-ipa/Makefile | 1 | ||||
-rw-r--r-- | japanese/font-ipa/files/20-unhint-ipa.conf | 20 |
2 files changed, 15 insertions, 6 deletions
diff --git a/japanese/font-ipa/Makefile b/japanese/font-ipa/Makefile index c2075d82e8b..4c589035b70 100644 --- a/japanese/font-ipa/Makefile +++ b/japanese/font-ipa/Makefile @@ -2,6 +2,7 @@ PORTNAME= ipa PORTVERSION= 00303 +PORTREVISION= 1 CATEGORIES= japanese x11-fonts MASTER_SITES= http://info.openlab.ipa.go.jp/ipafont/fontdata/ PKGNAMEPREFIX= ja-font- diff --git a/japanese/font-ipa/files/20-unhint-ipa.conf b/japanese/font-ipa/files/20-unhint-ipa.conf index e6496540077..4b978ada661 100644 --- a/japanese/font-ipa/files/20-unhint-ipa.conf +++ b/japanese/font-ipa/files/20-unhint-ipa.conf @@ -3,12 +3,20 @@ <!-- $FreeBSD$ --> <fontconfig> <match target="font"> - <test name="family"> - <string>IPAMincho</string> - <string>IPAGothic</string> - <string>IPAPMincho</string> - <string>IPAPGothic</string> - </test> + <or> + <test name="family"> + <string>IPAMincho</string> + </test> + <test name="family"> + <string>IPAGothic</string> + </test> + <test name="family"> + <string>IPAPMincho</string> + </test> + <test name="family"> + <string>IPAPGothic</string> + </test> + </or> <edit name="autohint"> <bool>false</bool> </edit> |