File oidentd.spec of Package oidentd
#
# spec file for package oidentd
#
# Copyright (c) 2017 SUSE LINUX 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/
#
#Compat macro for new _fillupdir macro introduced in Nov 2017
%if ! %{defined _fillupdir}
%define _fillupdir /var/adm/fillup-templates
%endif
%if 0%{?suse_version} > 1230
%bcond_without systemd
%else
%bcond_with systemd
%endif
Name: oidentd
Version: 2.0.8
Release: 0
Url: http://dev.ojnk.net/
Summary: Configurable IDENT Server That Supports NAT/IP Masquerading
License: GPL-2.0+
Group: Productivity/Networking/System
Source: http://prdownloads.sourceforge.net/ojnk/%{name}-%{version}.tar.bz2
Source1: sysconfig.oidentd
Source2: rc.oidentd
Source3: oidentd.service
Source4: oidentd.socket
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if %{with systemd}
%{?systemd_requires}
BuildRequires: systemd-rpm-macros
%else
PreReq: %insserv_prereq %fillup_prereq
%endif
BuildRequires: automake
%description
Oidentd is an ident (rfc1413 compliant) daemon that runs on Linux,
Darwin, FreeBSD, OpenBSD, NetBSD, and Solaris. oidentd can handle IP
masqueraded/NAT connections on Linux, Darwin, FreeBSD (ipf only),
OpenBSD, and NetBSD. Oidentd has a flexible mechanism for specifying
ident responses. Users can be granted permission to specify their own
ident responses. Responses can be specified according to host and port
pairs.
%prep
%setup
%build
CFLAGS="%{optflags} -fgnu89-inline"
autoreconf --install --force
%configure
make all
%install
make DESTDIR=%{buildroot} install
mkdir -p %{buildroot}/%{_sysconfdir} \
%{buildroot}%{_fillupdir} \
%if %{with systemd}
%{buildroot}%{_unitdir}
%else
%{buildroot}%{_sysconfdir}/init.d
%endif
touch %{buildroot}/%{_sysconfdir}/oidentd.conf
touch %{buildroot}/%{_sysconfdir}/oidentd_masq.conf
cp -p %{S:1} %{buildroot}%{_fillupdir}
%if %{with systemd}
install -p -m 0644 %{SOURCE3} %{buildroot}/%{_unitdir}/oidentd.service
install -p -m 0644 %{SOURCE4} %{buildroot}/%{_unitdir}/oidentd.socket
ln -s /usr/sbin/service %{buildroot}%{_sbindir}/rc%{name}
%else
install -p -m 0755 %{S:2} %{buildroot}%{_sysconfdir}/init.d/oidentd
ln -fs %{_sysconfdir}/init.d/oidentd %{buildroot}%{_sbindir}/rcoidentd
%endif
%if %{with systemd}
%pre
%service_add_pre oidentd.service oidentd.socket
%endif
%post
%if %{with systemd}
%service_add_post oidentd.service oidentd.socket
%{fillup_only}
%else
%{fillup_and_insserv}
%endif
%if %{with systemd}
%preun
%service_del_preun oidentd.service oidentd.socket
%endif
%postun
%if %{with systemd}
%service_del_postun oidentd.service oidentd.socket
%else
%{restart_on_update}
%{insserv_cleanup}
%endif
%files
%defattr(-,root,root)
%config(noreplace) %ghost %{_sysconfdir}/oidentd.conf
%config(noreplace) %ghost %{_sysconfdir}/oidentd_masq.conf
%if %{with systemd}
%{_unitdir}/oidentd.service
%{_unitdir}/oidentd.socket
%else
%config %{_sysconfdir}/init.d/oidentd
%endif
%{_fillupdir}/sysconfig.oidentd
%{_sbindir}/oidentd
%{_sbindir}/rcoidentd
%{_mandir}/man5/oidentd.conf.5.gz
%{_mandir}/man5/oidentd_masq.conf.5.gz
%{_mandir}/man8/oidentd.8.gz
%doc AUTHORS COPYING* ChangeLog* NEWS README TODO
%changelog