737a2f99e5
Fix and loosen dependency towards dbus-1. OBS-URL: https://build.opensuse.org/request/show/114507 OBS-URL: https://build.opensuse.org/package/show/Base:System/dbus-1-glib?expand=0&rev=35
110 lines
3.2 KiB
RPMSpec
110 lines
3.2 KiB
RPMSpec
#
|
|
# spec file for package dbus-1-glib
|
|
#
|
|
# Copyright (c) 2012 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/
|
|
#
|
|
|
|
Name: dbus-1-glib
|
|
Url: http://dbus.freedesktop.org/
|
|
Version: 0.98
|
|
Release: 0
|
|
Summary: GLib-based library for using D-Bus
|
|
License: AFL-2.1 or GPL-2.0+
|
|
Group: Development/Libraries/Other
|
|
Source0: http://dbus.freedesktop.org/releases/dbus-glib/dbus-glib-%{version}.tar.gz
|
|
Source1: baselibs.conf
|
|
BuildRequires: dbus-1-devel
|
|
BuildRequires: glib2-devel
|
|
BuildRequires: libexpat-devel
|
|
BuildRequires: libselinux-devel
|
|
Requires: dbus-1
|
|
# bug437293
|
|
%ifarch ppc64
|
|
Obsoletes: dbus-1-glib-64bit
|
|
%endif
|
|
#
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
%package -n dbus-1-glib-devel
|
|
Summary: Developer package for D-Bus/GLib bindings
|
|
Group: Development/Libraries/Other
|
|
Requires: dbus-1 >= %( echo `rpm -q --queryformat '%{VERSION}-%{RELEASE}' dbus-1`)
|
|
Requires: dbus-1-devel >= %( echo `rpm -q --queryformat '%{VERSION}-%{RELEASE}' dbus-1-devel`)
|
|
Requires: dbus-1-glib = %{version}
|
|
Requires: glib2-devel
|
|
|
|
%package -n dbus-1-glib-doc
|
|
Summary: Documentation for the D-Bus/GLib bindings
|
|
Group: Documentation/HTML
|
|
%if 0%{?suse_version} >= 1120
|
|
BuildArch: noarch
|
|
%endif
|
|
|
|
%description
|
|
D-Bus add-on library to integrate the standard D-Bus library with the
|
|
GLib thread abstraction and main loop.
|
|
|
|
%description -n dbus-1-glib-devel
|
|
D-Bus add-on library to integrate the standard D-Bus library with the
|
|
GLib thread abstraction and main loop.
|
|
|
|
%description -n dbus-1-glib-doc
|
|
D-Bus add-on library to integrate the standard D-Bus library with the
|
|
GLib thread abstraction and main loop.
|
|
|
|
%prep
|
|
%setup -n dbus-glib-%{version} -q
|
|
|
|
%build
|
|
export CFLAGS="${RPM_OPT_FLAGS} -fstack-protector -fPIC"
|
|
%configure \
|
|
--libexecdir=%{_libexecdir}/%{name} \
|
|
%if 0%{?_crossbuild}
|
|
--with-dbus-binding-tool=/usr/bin/dbus-binding-tool \
|
|
%endif
|
|
--disable-static
|
|
%{__make} %{?_smp_mflags}
|
|
|
|
%install
|
|
%makeinstall
|
|
%{__rm} %{buildroot}/%{_libdir}/*.la
|
|
|
|
%post
|
|
%{run_ldconfig}
|
|
|
|
%postun
|
|
%{run_ldconfig}
|
|
|
|
%files
|
|
%defattr(-, root, root)
|
|
%{_libdir}/*glib*.so.*
|
|
%{_sysconfdir}/bash_completion.d/dbus-bash-completion.sh
|
|
%{_libexecdir}/%{name}
|
|
|
|
%files -n dbus-1-glib-devel
|
|
%defattr(-, root, root)
|
|
%{_bindir}/dbus-binding-tool
|
|
%doc %{_mandir}/man?/dbus-binding-tool.*
|
|
%{_includedir}/dbus-1.0/dbus/*
|
|
%{_libdir}/*glib*.so
|
|
%{_libdir}/pkgconfig/dbus-glib-1.pc
|
|
|
|
%files -n dbus-1-glib-doc
|
|
%defattr(-, root, root)
|
|
%dir %{_datadir}/gtk-doc/
|
|
%dir %{_datadir}/gtk-doc/html
|
|
%{_datadir}/gtk-doc/html/dbus-glib
|
|
|
|
%changelog
|