libindicator/libindicator.spec

143 lines
4.0 KiB
RPMSpec

Name: libindicator
Version: 12.10.1
Release: 2mamba
Summary: A set of symbols and convience functions that all indicators would like to use
Group: System/Libraries
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: https://launchpad.net/libindicator
Source: https://launchpad.net/libindicator/%{version}/+download/libindicator-%{version}.tar.gz
Patch0: libindicator-12.10.1-configure.patch
Patch1: libindicator-12.10.1-glib-2.46.patch
License: GPL
## AUTOBUILDREQ-BEGIN
BuildRequires: glibc-devel
BuildRequires: libatk-devel
BuildRequires: libcairo-devel
BuildRequires: libfontconfig-devel
BuildRequires: libfreetype-devel
BuildRequires: libgdk-pixbuf-devel
BuildRequires: libglib-devel
BuildRequires: libgtk-devel
BuildRequires: libgtk2-devel
BuildRequires: libpango-devel
## AUTOBUILDREQ-END
BuildRoot: %{_tmppath}/%{name}-%{version}-root
%description
A set of symbols and convience functions that all indicators would like to use. Not of real use outside of the Ayatana indicators project.
%package devel
Group: Development/Libraries
Summary: Development files for %{name}
Requires: %{name} = %{?epoch:%epoch:}%{version}-%{release}
Requires: pkg-config
%description devel
This package contains libraries and header files for developing applications that use %{name}.
%package -n %{name}3
Group: System/Libraries
Summary: A set of symbols and convience functions that all indicators would like to use (gtk3)
%description -n %{name}3
A set of symbols and convience functions that all indicators would like to use. Not of real use outside of the Ayatana indicators project.
Gtk3 libraries package.
%package -n %{name}3-devel
Group: Development/Libraries
Summary: Development files for %{name} (gtk3)
Requires: %{name}3 = %{?epoch:%epoch:}%{version}-%{release}
Requires: pkg-config
%description -n %{name}3-devel
This package contains libraries and header files for developing applications that use %{name}.
%debug_package
%prep
%setup -q -c
tar xf %{SOURCE0}
mv %{name}-%{version} build-gtk2
cd build-gtk2
%patch0 -p1
%patch1 -p1
cd ..
cp -a build-gtk2 build-gtk3
%build
export CFLAGS="%{optflags} -Wno-error=deprecated-declarations"
cd build-gtk2
%configure --with-gtk=2 LIBM=" -lm"
%make
cd ..
cd build-gtk3
%configure --with-gtk=3 LIBM=" -lm"
%make
cd ..
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%makeinstall -C build-gtk2
%makeinstall -C build-gtk3
%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%post -n %{name}3 -p /sbin/ldconfig
%postun -n %{name}3 -p /sbin/ldconfig
%files
%defattr(-,root,root)
%{_libdir}/libindicator.so.*
%{_libexecdir}/indicator-loader
%doc build-gtk2/AUTHORS build-gtk2/COPYING
%files devel
%defattr(-,root,root)
%dir %{_includedir}/libindicator-0.4
%dir %{_includedir}/libindicator-0.4/libindicator
%{_includedir}/libindicator-0.4/libindicator/*
%{_libdir}/libdummy-indicator-*.a
%{_libdir}/libdummy-indicator-*.la
%{_libdir}/libdummy-indicator-*.so
%{_libdir}/libindicator.a
%{_libdir}/libindicator.la
%{_libdir}/libindicator.so
%{_libdir}/pkgconfig/indicator-0.4.pc
%{_datadir}/libindicator/80indicator-debugging
%doc build-gtk2/ChangeLog build-gtk2/NEWS
%files -n %{name}3
%defattr(-,root,root)
%{_libdir}/libindicator3.so.*
%{_libexecdir}/indicator-loader3
%doc build-gtk3/AUTHORS build-gtk3/COPYING
%files -n %{name}3-devel
%defattr(-,root,root)
%dir %{_includedir}/libindicator3-0.4
%dir %{_includedir}/libindicator3-0.4/libindicator
%{_includedir}/libindicator3-0.4/libindicator/*
%{_libdir}/libindicator3.a
%{_libdir}/libindicator3.la
%{_libdir}/libindicator3.so
%{_libdir}/pkgconfig/indicator3-0.4.pc
%doc build-gtk3/ChangeLog build-gtk3/NEWS
%changelog
* Sat Jul 20 2019 Silvan Calarco <silvan.calarco@mambasoft.it> 12.10.1-2mamba
- rebuilt with gtk3 subpackages
* Tue Mar 15 2016 Silvan Calarco <silvan.calarco@mambasoft.it> 12.10.1-1mamba
- package created using the webbuild interface