diff options
author | Hiroki Sato <hrs@FreeBSD.org> | 2013-09-04 21:15:21 +0000 |
---|---|---|
committer | Hiroki Sato <hrs@FreeBSD.org> | 2013-09-04 21:15:21 +0000 |
commit | 9edc5c1eb237b00e56a50e5ca865cfa4ae290688 (patch) | |
tree | 50783d2a432030563550cbc1eb312bc5333bf86b /japanese/font-mplus | |
parent | d8b0e5a7d7d78b28b099311555abbf220adff5d7 (diff) | |
download | ports-9edc5c1eb237b00e56a50e5ca865cfa4ae290688.tar.gz ports-9edc5c1eb237b00e56a50e5ca865cfa4ae290688.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 [*]
Notes
Notes:
svn path=/head/; revision=326328
Diffstat (limited to 'japanese/font-mplus')
-rw-r--r-- | japanese/font-mplus/Makefile | 2 | ||||
-rw-r--r-- | japanese/font-mplus/files/20-unhint-mplus.conf | 32 |
2 files changed, 24 insertions, 10 deletions
diff --git a/japanese/font-mplus/Makefile b/japanese/font-mplus/Makefile index cc5d1ad479a7..376e38c23598 100644 --- a/japanese/font-mplus/Makefile +++ b/japanese/font-mplus/Makefile @@ -3,7 +3,7 @@ PORTNAME= mplus PORTVERSION= 2.2.4.055 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= japanese x11-fonts MASTER_SITES= SFJP/${PORTNAME}-fonts/5030:bitmap \ SFJP/${PORTNAME}-fonts/6650:outline diff --git a/japanese/font-mplus/files/20-unhint-mplus.conf b/japanese/font-mplus/files/20-unhint-mplus.conf index 790a4e756b5f..1e0bcaafdb63 100644 --- a/japanese/font-mplus/files/20-unhint-mplus.conf +++ b/japanese/font-mplus/files/20-unhint-mplus.conf @@ -3,15 +3,29 @@ <!-- $FreeBSD$ --> <fontconfig> <match target="font"> - <test name="family"> - <string>M+ 1c</string> - <string>M+ 1m</string> - <string>M+ 1mn</string> - <string>M+ 1p</string> - <string>M+ 2c</string> - <string>M+ 2m</string> - <string>M+ 2p</string> - </test> + <or> + <test name="family"> + <string>M+ 1c</string> + </test> + <test name="family"> + <string>M+ 1m</string> + </test> + <test name="family"> + <string>M+ 1mn</string> + </test> + <test name="family"> + <string>M+ 1p</string> + </test> + <test name="family"> + <string>M+ 2c</string> + </test> + <test name="family"> + <string>M+ 2m</string> + </test> + <test name="family"> + <string>M+ 2p</string> + </test> + </or> <edit name="autohint"> <bool>false</bool> </edit> |