2012-02-09 13:18:18 +00:00
|
|
|
#
|
|
|
|
# spec file for package libXft
|
|
|
|
#
|
2019-01-22 11:00:00 +00:00
|
|
|
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
|
2012-02-09 13:18:18 +00: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.
|
|
|
|
|
2019-03-21 15:21:23 +00:00
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
2012-02-09 13:18:18 +00:00
|
|
|
#
|
2012-03-07 09:47:21 +00:00
|
|
|
|
|
|
|
|
2015-05-12 20:12:10 +00:00
|
|
|
Name: libXft
|
2015-05-19 08:29:55 +00:00
|
|
|
%define lname libXft2
|
2019-03-21 15:21:23 +00:00
|
|
|
Version: 2.3.3
|
2012-02-09 13:18:18 +00:00
|
|
|
Release: 0
|
|
|
|
Summary: X FreeType library
|
|
|
|
License: MIT
|
|
|
|
Group: Development/Libraries/C and C++
|
2012-03-07 09:47:21 +00:00
|
|
|
Url: http://xorg.freedesktop.org/
|
2015-05-19 08:29:55 +00:00
|
|
|
|
2012-02-09 13:18:18 +00:00
|
|
|
#Git-Clone: git://anongit.freedesktop.org/xorg/lib/libXft
|
2012-02-13 10:07:29 +00:00
|
|
|
#Git-Web: http://cgit.freedesktop.org/xorg/lib/libXft/
|
2012-04-12 11:55:57 +00:00
|
|
|
Source: http://xorg.freedesktop.org/releases/individual/lib/%{name}-%{version}.tar.bz2
|
2015-05-19 08:29:55 +00:00
|
|
|
# ft2build include. Positive sideeffect is that this patch makes it build with both freetype2 2.5.1, and older versions
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
|
2015-05-12 20:19:42 +00:00
|
|
|
Source1: baselibs.conf
|
2012-06-07 09:30:42 +00:00
|
|
|
BuildRequires: autoconf >= 2.60
|
|
|
|
BuildRequires: automake
|
|
|
|
BuildRequires: libtool
|
2012-04-12 11:55:57 +00:00
|
|
|
BuildRequires: pkgconfig
|
|
|
|
BuildRequires: pkgconfig(fontconfig) >= 2.5.92
|
2015-05-19 08:29:55 +00:00
|
|
|
BuildRequires: pkgconfig(freetype2) >= 2.1.6
|
2012-04-12 11:55:57 +00:00
|
|
|
BuildRequires: pkgconfig(x11)
|
|
|
|
BuildRequires: pkgconfig(xorg-macros) >= 1.8
|
|
|
|
BuildRequires: pkgconfig(xrender) >= 0.8.2
|
2012-02-09 13:18:18 +00:00
|
|
|
|
|
|
|
%description
|
|
|
|
Xft is a library that connects X applications with the FreeType font
|
|
|
|
rasterization library. Xft uses fontconfig to locate fonts so it has
|
|
|
|
no configuration files.
|
|
|
|
|
2015-05-19 08:29:55 +00:00
|
|
|
%package -n %lname
|
2012-02-09 13:18:18 +00:00
|
|
|
Summary: X FreeType library
|
|
|
|
Group: System/Libraries
|
|
|
|
|
2015-05-19 08:29:55 +00:00
|
|
|
%description -n %lname
|
2012-02-09 13:18:18 +00:00
|
|
|
Xft is a library that connects X applications with the FreeType font
|
|
|
|
rasterization library. Xft uses fontconfig to locate fonts so it has
|
|
|
|
no configuration files.
|
|
|
|
|
|
|
|
%package devel
|
|
|
|
Summary: Development files for the X FreeType library
|
|
|
|
Group: Development/Libraries/C and C++
|
2015-05-19 08:29:55 +00:00
|
|
|
Requires: %lname = %version
|
2012-02-09 13:18:18 +00:00
|
|
|
|
|
|
|
%description devel
|
|
|
|
Xft is a library that connects X applications with the FreeType font
|
|
|
|
rasterization library. Xft uses fontconfig to locate fonts so it has
|
|
|
|
no configuration files.
|
|
|
|
|
|
|
|
This package contains the development headers for the library found
|
2015-05-19 08:29:55 +00:00
|
|
|
in %lname.
|
2012-02-09 13:18:18 +00:00
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q
|
|
|
|
|
|
|
|
%build
|
2012-06-07 09:30:42 +00:00
|
|
|
autoreconf -fi
|
2012-02-09 13:18:18 +00:00
|
|
|
%configure --disable-static
|
2019-01-22 11:00:00 +00:00
|
|
|
%make_build
|
2012-02-09 13:18:18 +00:00
|
|
|
|
|
|
|
%install
|
2015-05-19 08:29:55 +00:00
|
|
|
make install DESTDIR="%buildroot"
|
|
|
|
rm -f "%buildroot/%_libdir"/*.la
|
2012-02-09 13:18:18 +00:00
|
|
|
|
2015-05-19 08:29:55 +00:00
|
|
|
%post -n %lname -p /sbin/ldconfig
|
2012-02-09 13:18:18 +00:00
|
|
|
|
2015-05-19 08:29:55 +00:00
|
|
|
%postun -n %lname -p /sbin/ldconfig
|
2012-02-09 13:18:18 +00:00
|
|
|
|
2015-05-19 08:29:55 +00:00
|
|
|
%files -n %lname
|
2012-02-09 13:18:18 +00:00
|
|
|
%defattr(-,root,root)
|
2015-05-19 08:29:55 +00:00
|
|
|
%_libdir/libXft.so.2*
|
2012-02-09 13:18:18 +00:00
|
|
|
|
|
|
|
%files devel
|
|
|
|
%defattr(-,root,root)
|
2015-05-19 08:29:55 +00:00
|
|
|
%_includedir/X11/Xft
|
|
|
|
%_libdir/libXft.so
|
|
|
|
%_libdir/pkgconfig/xft.pc
|
|
|
|
%_mandir/man3/*
|
2012-02-09 13:18:18 +00:00
|
|
|
|
|
|
|
%changelog
|