File pkg-config.spec of Package pkg-config
#
# spec file for package pkg-config (Version 0.25)
#
# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# 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 http://bugs.opensuse.org/
#
# norootforbuild
Name: pkg-config
Url: http://pkgconfig.freedesktop.org/
Version: 0.25
Release: 3
License: GPLv2+
Group: System/Packages
# Old name for version <= 0.17 and SuSE Linux <= 10.2 & CODE10
# Mandriva 2009 and Fedora 11 still use old name "pkgconfig"
Provides: pkgconfig = %{version}-%{release}
Obsoletes: pkgconfig < 0.21
# pkg-config has a virtual internal pkg-config.pc file, so we should provide it
Provides: pkgconfig(pkg-config) = %{version}
Summary: A library management system
Source: %{name}-%{version}.tar.bz2
# PATCH-FIX-UPSTREAM pkg-config-dnl.patch coolo@novell.com -- Fix issue found with autoconf 2.66, patch from git
Patch0: pkg-config-dnl.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
The pkg-config program is used to retrieve information about installed
libraries in the system. It is typically used to compile and link
against one or more libraries.
%prep
%setup -q
%patch0 -p1
%build
%configure\
%if "%{_lib}" == "lib"
--with-pc_path=/usr/local/lib/pkgconfig:/usr/local/share/pkgconfig:%{_libdir}/pkgconfig:%{_datadir}/pkgconfig:/opt/kde3/%{_lib}/pkgconfig
%else
--with-pc_path=/usr/local/%{_lib}/pkgconfig:/usr/local/lib/pkgconfig:/usr/local/share/pkgconfig:%{_libdir}/pkgconfig:%{_datadir}/pkgconfig:/opt/kde3/%{_lib}/pkgconfig
%endif
make %{?_smp_mflags}
%install
%makeinstall
# We'll put it with the other docs
%__rm %{buildroot}%{_datadir}/doc/pkg-config/pkg-config-guide.html
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root)
%doc AUTHORS COPYING NEWS README ChangeLog pkg-config-guide.html
%{_bindir}/pkg-config
%{_datadir}/aclocal/pkg.m4
%doc %{_mandir}/man1/pkg-config.*
%changelog