libXp/libXp.spec
Stefan Dirsch 1a683c8720 - Update to version 1.0.4
* Fix a memory leak on the error path in XpGetLocaleNetString
  * Update README for gitlab migration
  * Update configure.ac bug URL for gitlab migration
  * Fix spelling/wording issues
  * gitlab CI: add a basic build test
  * XpNotifyPdm.c: fix -Wmisleading-indentation warning
  * XpExtVer.c: fix -Wredundant-decls warning
  * Add deprecation notice to README
  * autogen.sh: use quoted string variables
  * autogen: add default patch prefix
  * autogen.sh: use exec instead of waiting for configure to finish

OBS-URL: https://build.opensuse.org/package/show/X11:XOrg/libXp?expand=0&rev=15
2022-09-12 21:41:01 +00:00

98 lines
2.8 KiB
RPMSpec

#
# spec file for package libXp
#
# Copyright (c) 2022 SUSE LLC
#
# 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.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
Name: libXp
%define lname libXp6
Version: 1.0.4
Release: 0
Summary: X Printing Extension client library
License: MIT
Group: Development/Libraries/C and C++
URL: http://xorg.freedesktop.org/
#Git-Clone: git://anongit.freedesktop.org/xorg/lib/libXp
#Git-Web: http://cgit.freedesktop.org/xorg/lib/libXp/
Source: http://xorg.freedesktop.org/releases/individual/lib/%{name}-%{version}.tar.xz
Source1: baselibs.conf
BuildRoot: %{_tmppath}/%{name}-%{version}-build
#git#BuildRequires: autoconf >= 2.57, automake, libtool
BuildRequires: pkgconfig
BuildRequires: pkgconfig(printproto)
BuildRequires: pkgconfig(x11) >= 1.6
BuildRequires: pkgconfig(xau)
BuildRequires: pkgconfig(xext)
BuildRequires: pkgconfig(xextproto)
BuildRequires: pkgconfig(xorg-macros) >= 1.8
%description
libXp provides APIs to allow client applications to render to
non-display devices.
%package -n %lname
Summary: X Printing Extension client library
Group: System/Libraries
# O/P added for 12.2
Provides: xorg-x11-libXp = 7.6_%version-%release
Obsoletes: xorg-x11-libXp < 7.6_%version-%release
%description -n %lname
libXp provides APIs to allow client applications to render to
non-display devices.
%package devel
Summary: Development files for the X Printing Extension library
Group: Development/Libraries/C and C++
Requires: %lname = %version
# O/P added for 12.2
Provides: xorg-x11-libXp-devel = 7.6_%version-%release
Obsoletes: xorg-x11-libXp-devel < 7.6_%version-%release
%description devel
libXp provides APIs to allow client applications to render to
non-display devices.
This package contains the development headers for the library found
in %lname.
%prep
%setup -q
%build
%configure --disable-static
make %{?_smp_mflags}
%install
make install DESTDIR="%buildroot"
rm -f "%buildroot/%_libdir"/*.la
%post -n %lname -p /sbin/ldconfig
%postun -n %lname -p /sbin/ldconfig
%files -n %lname
%defattr(-,root,root)
%_libdir/libXp.so.6*
%files devel
%defattr(-,root,root)
%_libdir/libXp.so
%_libdir/pkgconfig/xp.pc
%_mandir/man3/*
%changelog