FreeBSD Bugzilla – Attachment 175884 Details for
Bug 213514
x11-fonts/roboto-fonts-ttf: Fix well-known fontconfig incompatibilities, change MAINTAINER'ship
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
x11-fonts.roboto-fonts-ttf.patch
x11-fonts.roboto-fonts-ttf.patch (text/plain), 4.93 KB, created by
Vladimir Kondratyev
on 2016-10-17 21:48:16 UTC
(
hide
)
Description:
x11-fonts.roboto-fonts-ttf.patch
Filename:
MIME Type:
Creator:
Vladimir Kondratyev
Created:
2016-10-17 21:48:16 UTC
Size:
4.93 KB
patch
obsolete
>Index: x11-fonts/roboto-fonts-ttf/Makefile >=================================================================== >--- x11-fonts/roboto-fonts-ttf/Makefile (revision 424134) >+++ x11-fonts/roboto-fonts-ttf/Makefile (working copy) >@@ -2,12 +2,12 @@ > # $FreeBSD$ > > PORTNAME= roboto-fonts-ttf >-PORTVERSION= 2.131 >+PORTVERSION= 2.134 > DISTVERSIONPREFIX=v > PORTEPOCH= 1 > CATEGORIES= x11-fonts > >-MAINTAINER= winston@ml1.net >+MAINTAINER= wulf@cicgroup.ru > COMMENT= Roboto typeface family > > LICENSE= APACHE20 >@@ -23,8 +23,15 @@ > > SUB_FILES= pkg-message > >+PLIST_SUB= FCDIR=${FCDIR} FCDIR_LINKS=${FCDIR_LINKS} >+FCDIR?= etc/fonts/conf.avail >+FCDIR_LINKS= ${FCDIR:S|conf.avail|conf.d|} >+ > do-install: > ${MKDIR} ${STAGEDIR}${FONTSDIR} > ${INSTALL_DATA} ${WRKSRC}/hinted/*.ttf ${STAGEDIR}${FONTSDIR} >+ ${MKDIR} ${STAGEDIR}${PREFIX}/${FCDIR}/ ${STAGEDIR}${PREFIX}/${FCDIR_LINKS}/ >+ ${INSTALL_DATA} ${FILESDIR}/*.conf ${STAGEDIR}${PREFIX}/${FCDIR}/ >+ cd ${STAGEDIR}${PREFIX}/${FCDIR_LINKS}/ && ${LN} -fs ../conf.avail/*.conf . > > .include <bsd.port.mk> >Index: x11-fonts/roboto-fonts-ttf/distinfo >=================================================================== >--- x11-fonts/roboto-fonts-ttf/distinfo (revision 424134) >+++ x11-fonts/roboto-fonts-ttf/distinfo (working copy) >@@ -1,2 +1,3 @@ >-SHA256 (google-roboto-v2.131_GH0.tar.gz) = 34b32fdc37d935ec3e723b9d5895c0a2e1d1070e8f8d8821eac1c8a7c84aff7b >-SIZE (google-roboto-v2.131_GH0.tar.gz) = 6264167 >+TIMESTAMP = 1476726519 >+SHA256 (google-roboto-v2.134_GH0.tar.gz) = 01f998e9e904d3c57ad363b6337f078fdac647fa5971b6159ad0d100a4e1edb1 >+SIZE (google-roboto-v2.134_GH0.tar.gz) = 6288240 >Index: x11-fonts/roboto-fonts-ttf/files/64-google-roboto-condensed.conf >=================================================================== >--- x11-fonts/roboto-fonts-ttf/files/64-google-roboto-condensed.conf (nonexistent) >+++ x11-fonts/roboto-fonts-ttf/files/64-google-roboto-condensed.conf (working copy) >@@ -0,0 +1,25 @@ >+<?xml version="1.0" encoding="UTF-8"?> >+<!DOCTYPE fontconfig SYSTEM "../fonts.dtd"> >+<fontconfig> >+ <alias> >+ <family>sans-serif</family> >+ <prefer> >+ <family>Roboto Condensed</family> >+ </prefer> >+ </alias> >+ <alias> >+ <family>Roboto Condensed</family> >+ <default> >+ <family>sans-serif</family> >+ </default> >+ </alias> >+ <match target="scan"> >+ <test name="family"> >+ <string>Roboto Condensed</string> >+ </test> >+ <edit name="width"> >+ <const>condensed</const> >+ </edit> >+ </match> >+</fontconfig> >+ > >Property changes on: x11-fonts/roboto-fonts-ttf/files/64-google-roboto-condensed.conf >___________________________________________________________________ >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: x11-fonts/roboto-fonts-ttf/files/64-google-roboto.conf >=================================================================== >--- x11-fonts/roboto-fonts-ttf/files/64-google-roboto.conf (nonexistent) >+++ x11-fonts/roboto-fonts-ttf/files/64-google-roboto.conf (working copy) >@@ -0,0 +1,49 @@ >+<?xml version="1.0" encoding="UTF-8"?> >+<!DOCTYPE fontconfig SYSTEM "../fonts.dtd"> >+<fontconfig> >+ <alias> >+ <family>sans-serif</family> >+ <prefer> >+ <family>Roboto</family> >+ </prefer> >+ </alias> >+ <alias> >+ <family>Roboto</family> >+ <default> >+ <family>sans-serif</family> >+ </default> >+ </alias> >+ <match target="scan"> >+ <test name="style"> >+ <string>Thin</string> >+ </test> >+ <edit name="weight"> >+ <const>thin</const> >+ </edit> >+ </match> >+ <match target="scan"> >+ <test name="style"> >+ <string>Thin Italic</string> >+ </test> >+ <edit name="weight"> >+ <const>thin</const> >+ </edit> >+ </match> >+ <match target="scan"> >+ <test name="style"> >+ <string>Black</string> >+ </test> >+ <edit name="weight"> >+ <const>black</const> >+ </edit> >+ </match> >+ <match target="scan"> >+ <test name="style"> >+ <string>Black Italic</string> >+ </test> >+ <edit name="weight"> >+ <const>black</const> >+ </edit> >+ </match> >+</fontconfig> >+ > >Property changes on: x11-fonts/roboto-fonts-ttf/files/64-google-roboto.conf >___________________________________________________________________ >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: x11-fonts/roboto-fonts-ttf/pkg-plist >=================================================================== >--- x11-fonts/roboto-fonts-ttf/pkg-plist (revision 424134) >+++ x11-fonts/roboto-fonts-ttf/pkg-plist (working copy) >@@ -1,3 +1,7 @@ >+%%FCDIR%%/64-google-roboto-condensed.conf >+%%FCDIR%%/64-google-roboto.conf >+%%FCDIR_LINKS%%/64-google-roboto-condensed.conf >+%%FCDIR_LINKS%%/64-google-roboto.conf > %%FONTSDIR%%/Roboto-Black.ttf > %%FONTSDIR%%/Roboto-BlackItalic.ttf > %%FONTSDIR%%/Roboto-Bold.ttf
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Flags:
vlad-fbsd
:
maintainer-approval?
(winston)
Actions:
View
|
Diff
Attachments on
bug 213514
:
175791
|
175792
| 175884 |
175885