2007-08-24 01:05:25 +02:00
|
|
|
#
|
2011-03-09 17:13:36 +01:00
|
|
|
# spec file for package ft2demos
|
2007-08-24 01:05:25 +02:00
|
|
|
#
|
2012-02-14 12:24:14 +01:00
|
|
|
# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
2007-08-24 01:05:25 +02:00
|
|
|
#
|
2008-08-21 18:08:44 +02:00
|
|
|
# All modifications and additions to the file contributed by third parties
|
|
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
|
|
# upon. The license for this file, and modifications and additions to the
|
|
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
|
|
# license for the pristine package is not an Open Source License, in which
|
|
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
|
|
# published by the Open Source Initiative.
|
|
|
|
|
2007-08-24 01:05:25 +02:00
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
|
|
#
|
|
|
|
|
2012-02-14 12:24:14 +01:00
|
|
|
|
2007-08-24 01:05:25 +02:00
|
|
|
Name: ft2demos
|
Accepting request 108554 from home:namtrac:branches:M17N
- Update to version 2.4.9
* Fixes CVE-2012-1126, CVE-2012-1127, CVE-2012-1128, CVE-2012-1129,
CVE-2012-1130, CVE-2012-1131, CVE-2012-1132, CVE-2012-1133,
CVE-2012-1134, CVE-2012-1135, CVE-2012-1136, CVE-2012-1137,
CVE-2012-1138, CVE-2012-1139, CVE-2012-1140, CVE-2012-1141,
CVE-2012-1142, CVE-2012-1143, CVE-2012-1144
* The `ENCODING -1 <n>' format of BDF fonts is now supported.
* For BDF fonts, support for the whole Unicode encoding range has
been added.
* Better TTF support for x_ppem != y_ppem.
* `FT_Get_Advances' sometimes returned bogus values.
- Update to version 2.4.9
* The demo programs no longer recognize and handle default
suffixes; you now have to always specify the complete font name.
* Better rendering and LCD mode cycling added to ftview.
OBS-URL: https://build.opensuse.org/request/show/108554
OBS-URL: https://build.opensuse.org/package/show/M17N/freetype2?expand=0&rev=61
2012-03-09 02:09:38 +01:00
|
|
|
Version: 2.4.9
|
2011-12-22 16:57:14 +01:00
|
|
|
Release: 0
|
2011-07-11 10:45:49 +02:00
|
|
|
Summary: Freetype2 Utilities and Demo Programs
|
2011-12-22 16:57:14 +01:00
|
|
|
License: GPL-2.0+
|
|
|
|
Group: Productivity/Publishing/Other
|
2007-08-24 01:05:25 +02:00
|
|
|
%define freetype_version %{version}
|
2007-10-03 00:52:44 +02:00
|
|
|
Url: http://www.freetype.org
|
2007-08-24 01:05:25 +02:00
|
|
|
Source0: http://savannah.nongnu.org/download/freetype/freetype-%{version}.tar.bz2
|
|
|
|
Source1: http://savannah.nongnu.org/download/freetype/ft2demos-%{version}.tar.bz2
|
2008-07-24 23:00:54 +02:00
|
|
|
Patch9: fix-build.patch
|
2007-10-03 00:52:44 +02:00
|
|
|
Patch308961: bugzilla-308961-cmex-workaround.patch
|
2007-08-24 01:05:25 +02:00
|
|
|
Patch50: ft2demos-build-testname.patch
|
|
|
|
Patch200: freetype2-subpixel.patch
|
2011-07-11 10:45:49 +02:00
|
|
|
BuildRequires: xorg-x11-devel
|
|
|
|
Supplements: fonts-config
|
2010-08-13 23:59:21 +02:00
|
|
|
Source1000: bnc628213_test.otf
|
|
|
|
Source1004: bnc629447_sigsegv31.ttf
|
2011-02-28 22:44:10 +01:00
|
|
|
Source1013: bnc633938_badbdf.0
|
2010-12-08 13:07:58 +01:00
|
|
|
Source1015: bug-641580_CVE-2010-3311.cff
|
2011-02-28 22:44:10 +01:00
|
|
|
Source1016: bug-647375_tt2.ttf
|
2007-08-24 01:05:25 +02:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
|
|
|
|
%description
|
|
|
|
Freetype2 utilities and demo programs.
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%define enable_subpixel_rendering 0%{?opensuse_bs}
|
|
|
|
%setup -n freetype-%{freetype_version} -b 1
|
2008-07-24 23:00:54 +02:00
|
|
|
%patch9 -p 1
|
2007-10-03 00:52:44 +02:00
|
|
|
%patch308961 -p 1
|
2007-08-24 01:05:25 +02:00
|
|
|
pushd ../ft2demos-%{version}
|
|
|
|
%patch50 -p 1
|
|
|
|
popd
|
|
|
|
%if %{enable_subpixel_rendering}
|
|
|
|
%patch200 -p 1 -b .subpixel
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%build
|
2011-07-11 10:45:49 +02:00
|
|
|
%configure --without-bzip2
|
2012-02-15 07:21:00 +01:00
|
|
|
make %{?_smp_mflags}
|
2007-08-24 01:05:25 +02:00
|
|
|
pushd ..
|
|
|
|
ln -s freetype-%{freetype_version} freetype2
|
|
|
|
cd ft2demos-%{version}
|
2012-02-15 07:21:00 +01:00
|
|
|
make %{?_smp_mflags}
|
2007-08-24 01:05:25 +02:00
|
|
|
popd
|
|
|
|
|
|
|
|
%install
|
2011-07-11 10:45:49 +02:00
|
|
|
mkdir -p %{buildroot}%{_bindir}
|
2007-08-24 01:05:25 +02:00
|
|
|
pushd ../ft2demos-%{version}/bin/.libs
|
2011-07-11 10:45:49 +02:00
|
|
|
install -m 755 ft* %{buildroot}%{_bindir}
|
2007-08-24 01:05:25 +02:00
|
|
|
popd
|
|
|
|
|
2010-08-13 23:59:21 +02:00
|
|
|
%check
|
2011-07-11 10:45:49 +02:00
|
|
|
%{buildroot}%{_bindir}/ftbench -c 1 %{S:1000}
|
|
|
|
%{buildroot}%{_bindir}/ftbench -c 1 %{S:1004} |& grep -v "couldn't load font resource" && echo "should fail"
|
|
|
|
%{buildroot}%{_bindir}/ftbench -c 1 %{S:1013} |& grep -v "couldn't load font resource" && echo "should fail"
|
|
|
|
%{buildroot}%{_bindir}/ftbench -c 1 %{S:1015} |& grep -v "couldn't load font resource" && echo "should fail"
|
|
|
|
%{buildroot}%{_bindir}/ftbench -c 1 %{S:1016}
|
2010-08-13 23:59:21 +02:00
|
|
|
|
2007-08-24 01:05:25 +02:00
|
|
|
%files
|
|
|
|
%defattr(-,root,root)
|
|
|
|
%{_bindir}/ft*
|
2008-04-10 14:13:39 +02:00
|
|
|
|
2007-08-24 01:05:25 +02:00
|
|
|
%changelog
|