2.19
This commit is contained in:
parent
baef56572c
commit
f6909aa536
@ -1 +1 @@
|
|||||||
dejavu-sfd-2.18.tar.bz2
|
dejavu-sfd-2.19.tar.bz2
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
%define fontname dejavu
|
%define fontname dejavu
|
||||||
%define fontdir %{_datadir}/fonts/%{fontname}
|
%define fontdir %{_datadir}/fonts/%{fontname}/
|
||||||
%define fontconfdir %{_sysconfdir}/fonts
|
%define fontconfdir %{_sysconfdir}/fonts/conf.d/
|
||||||
|
|
||||||
%define archivename %{fontname}-sfd-%{archiveversion}
|
%define archivename %{fontname}-sfd-%{archiveversion}
|
||||||
|
|
||||||
@ -16,7 +16,7 @@
|
|||||||
%define UnicodeData %(eval "$(%{__perl} -V:privlibexp)"; echo $privlibexp)/unicore/UnicodeData.txt
|
%define UnicodeData %(eval "$(%{__perl} -V:privlibexp)"; echo $privlibexp)/unicore/UnicodeData.txt
|
||||||
|
|
||||||
Name: %{fontname}-fonts
|
Name: %{fontname}-fonts
|
||||||
Version: 2.18
|
Version: 2.19
|
||||||
Release: 1%{?alphatag}%{?dist}
|
Release: 1%{?alphatag}%{?dist}
|
||||||
Summary: DejaVu fonts
|
Summary: DejaVu fonts
|
||||||
|
|
||||||
@ -94,11 +94,11 @@ install -m 0755 -d %{buildroot}%{fontdir}
|
|||||||
install -m 0644 -p generated/*.ttf %{buildroot}%{fontdir}
|
install -m 0644 -p generated/*.ttf %{buildroot}%{fontdir}
|
||||||
|
|
||||||
# Fontconfig tweaks
|
# Fontconfig tweaks
|
||||||
install -m 0755 -d %{buildroot}%{fontconfdir}/conf.d
|
install -m 0755 -d %{buildroot}%{fontconfdir}
|
||||||
install -m 0644 -p %{SOURCE1} %{buildroot}%{fontconfdir}/conf.d/57-%{fontname}.conf
|
install -m 0644 -p %{SOURCE1} %{buildroot}%{fontconfdir}57-%{fontname}.conf
|
||||||
install -m 0644 -p %{SOURCE2} %{buildroot}%{fontconfdir}/conf.d/20-unhint-small-%{fontname}.conf
|
install -m 0644 -p %{SOURCE2} %{buildroot}%{fontconfdir}20-unhint-small-%{fontname}.conf
|
||||||
install -m 0644 -p %{SOURCE3} %{buildroot}%{fontconfdir}/conf.d/61-%{fontname}-experimental.conf
|
install -m 0644 -p %{SOURCE3} %{buildroot}%{fontconfdir}61-%{fontname}-experimental.conf
|
||||||
install -m 0644 -p %{SOURCE4} %{buildroot}%{fontconfdir}/conf.d/20-unhint-small-%{fontname}-experimental.conf
|
install -m 0644 -p %{SOURCE4} %{buildroot}%{fontconfdir}20-unhint-small-%{fontname}-experimental.conf
|
||||||
|
|
||||||
|
|
||||||
%clean
|
%clean
|
||||||
@ -106,29 +106,29 @@ rm -fr %{buildroot}
|
|||||||
|
|
||||||
|
|
||||||
%post
|
%post
|
||||||
if [ -x /usr/bin/fc-cache ]; then
|
if [ -x %{_bindir}/fc-cache ]; then
|
||||||
/usr/bin/fc-cache /usr/share/fonts
|
%{_bindir}/fc-cache %{fontdir}
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
%postun
|
%postun
|
||||||
if [ "$1" = "0" ]; then
|
if [ "$1" = "0" ]; then
|
||||||
if [ -x /usr/bin/fc-cache ]; then
|
if [ -x %{_bindir}/fc-cache ]; then
|
||||||
/usr/bin/fc-cache /usr/share/fonts
|
%{_bindir}/fc-cache %{fontdir}
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
%post experimental
|
%post experimental
|
||||||
if [ -x /usr/bin/fc-cache ]; then
|
if [ -x %{_bindir}/fc-cache ]; then
|
||||||
/usr/bin/fc-cache /usr/share/fonts
|
%{_bindir}/fc-cache %{fontdir}
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
%postun experimental
|
%postun experimental
|
||||||
if [ "$1" = "0" ]; then
|
if [ "$1" = "0" ]; then
|
||||||
if [ -x /usr/bin/fc-cache ]; then
|
if [ -x %{_bindir}/fc-cache ]; then
|
||||||
/usr/bin/fc-cache /usr/share/fonts
|
%{_bindir}/fc-cache %{fontdir}
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@ -137,8 +137,8 @@ fi
|
|||||||
%defattr(0644,root,root,0755)
|
%defattr(0644,root,root,0755)
|
||||||
%doc *.txt AUTHORS BUGS LICENSE NEWS README
|
%doc *.txt AUTHORS BUGS LICENSE NEWS README
|
||||||
|
|
||||||
%config(noreplace) %{fontconfdir}/conf.d/20-unhint-small-%{fontname}.conf
|
%config(noreplace) %{fontconfdir}20-unhint-small-%{fontname}.conf
|
||||||
%config(noreplace) %{fontconfdir}/conf.d/57-%{fontname}.conf
|
%config(noreplace) %{fontconfdir}57-%{fontname}.conf
|
||||||
|
|
||||||
%dir %{fontdir}
|
%dir %{fontdir}
|
||||||
%{fontdir}/*.ttf
|
%{fontdir}/*.ttf
|
||||||
@ -150,8 +150,8 @@ fi
|
|||||||
%files experimental
|
%files experimental
|
||||||
%defattr(0644,root,root,0755)
|
%defattr(0644,root,root,0755)
|
||||||
|
|
||||||
%config(noreplace) %{fontconfdir}/conf.d/20-unhint-small-%{fontname}-experimental.conf
|
%config(noreplace) %{fontconfdir}20-unhint-small-%{fontname}-experimental.conf
|
||||||
%config(noreplace) %{fontconfdir}/conf.d/61-%{fontname}-experimental.conf
|
%config(noreplace) %{fontconfdir}61-%{fontname}-experimental.conf
|
||||||
|
|
||||||
%{fontdir}/DejaVu*Condensed*.ttf
|
%{fontdir}/DejaVu*Condensed*.ttf
|
||||||
%{fontdir}/DejaVu*ExtraLight*.ttf
|
%{fontdir}/DejaVu*ExtraLight*.ttf
|
||||||
@ -159,6 +159,11 @@ fi
|
|||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Sat Aug 11 2007 Nicolas Mailhot <nicolas.mailhot at laposte.net>
|
||||||
|
☺ 2.19-1
|
||||||
|
✓ 2.19 final
|
||||||
|
✓ expand macro use
|
||||||
|
|
||||||
* Sun Jul 1 2007 Nicolas Mailhot <nicolas.mailhot at laposte.net>
|
* Sun Jul 1 2007 Nicolas Mailhot <nicolas.mailhot at laposte.net>
|
||||||
☺ 2.18-1
|
☺ 2.18-1
|
||||||
✓ 2.18 final
|
✓ 2.18 final
|
||||||
|
Loading…
Reference in New Issue
Block a user