utempter/utempter.spec
Marcus Meissner a05bac28ee Accepting request 180096 from home:msmeissn:branches:Base:System
- updated to 1.1.6 upstream (bnc#823302)
  - new apis (old are staying)
- utempter-ppc64.patch: is upstream, removed
- utempter-0.5.5-pie.diff: done differently, removed
- utempter-no-staticlib.patch: no static library wanted
- gpg source tarball checking
- hooked up permissions framework correctly

OBS-URL: https://build.opensuse.org/request/show/180096
OBS-URL: https://build.opensuse.org/package/show/Base:System/utempter?expand=0&rev=20
2013-06-20 09:49:51 +00:00

113 lines
3.3 KiB
RPMSpec

#
# spec file for package utempter
#
# Copyright (c) 2013 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/
#
%define lname libutempter0
Name: utempter
%define utmpGroup utmp
Version: 1.1.6
Release: 0
Summary: A privileged helper for utmp and wtmp updates
License: MIT
Group: Productivity/Security
# bug437293
%ifarch ppc64
Obsoletes: utempter-64bit
%endif
Url: ftp://ftp.altlinux.org/pub/people/ldv/utempter/
Source: ftp://ftp.altlinux.org/pub/people/ldv/utempter/lib%name-%version.tar.bz2
Source1: ftp://ftp.altlinux.org/pub/people/ldv/utempter/lib%name-%version.tar.bz2.asc
Source2: baselibs.conf
Source3: %name.keyring
Patch0: utempter.eal3.diff
Patch1: utempter-no-staticlib.patch
%if 0%{?suse_version} > 1220
BuildRequires: gpg-offline
%endif
#
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
Utempter is a utility that allows non-privileged applications such as
terminal emulators to modify the utmp database without having to be
setuid root.
%package devel
Summary: Development files for utempter
Group: Development/Libraries/C and C++
Requires: %lname = %{version}
%description devel
Utempter is a privileged helper for utmp and wtmp updates. This
package contains the development files needed.
%package -n %lname
Summary: Shared library of utempter
Group: Development/Libraries/C and C++
PreReq: permissions
Provides: utempter = %version
Obsoletes: utempter <= 0.5.5
Requires: %{name}
%description -n %lname
Utempter is a privileged helper for utmp and wtmp updates. This
package contains the library used by applications.
%prep
%if 0%{?suse_version} > 1220
%gpg_verify %{S:1}
%endif
%setup -q -n lib%name-%version
%patch0 -p1
%patch1 -p1
%build
make %{?_smp_mflags} RPM_OPT_FLAGS="%{optflags} -fPIC" CC="gcc"
%install
export DESTDIR=%{buildroot}
make PREFIX=$DESTDIR libdir=%{_libdir} DESTDIR=%{buildroot} install
chmod 755 $DESTDIR%{_libdir}/libutempter.so*
/sbin/ldconfig -n $DESTDIR%{_libdir}
%verifyscript -n %lname
%verify_permissions -e /usr/lib/utempter/utempter
%post -n %lname
%set_permissions /usr/lib/utempter/utempter
/sbin/ldconfig
%postun -n %lname -p /sbin/ldconfig
%files -n %lname
%defattr(644,root,root,755)
%doc COPYING
%dir /usr/lib/utempter
%attr(02755, root, %{utmpGroup}) /usr/lib/utempter/utempter
%attr(755,root,root) %{_libdir}/libutempter.so.*
%attr(644,root,root) %doc %{_mandir}/man8/*
%files devel
%doc COPYING
%defattr(644,root,root,755)
%attr(755,root,root) %{_libdir}/libutempter.so
%attr(644,root,root) %{_includedir}/utempter.h
%attr(644,root,root) %doc %{_mandir}/man3/*
%changelog