- Use %autosetup macro. Allows to eliminate the usage of deprecated %patchN OBS-URL: https://build.opensuse.org/request/show/1149772 OBS-URL: https://build.opensuse.org/package/show/Base:System/mingetty?expand=0&rev=23
71 lines
1.9 KiB
RPMSpec
71 lines
1.9 KiB
RPMSpec
#
|
|
# spec file for package mingetty
|
|
#
|
|
# Copyright (c) 2021 SUSE LLC
|
|
#
|
|
# 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 https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
Name: mingetty
|
|
Version: 1.0.8s
|
|
Release: 0
|
|
Summary: Minimal Getty for Virtual Consoles Only
|
|
License: GPL-2.0-or-later
|
|
Group: System/Base
|
|
URL: http://mingetty.sourceforge.net
|
|
Source: mingetty-1.0.8s.tar.bz2
|
|
Patch0: mingetty-1.0.8s.dif
|
|
Provides: sysvinit:/sbin/mingetty
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
%description
|
|
The mingetty program is a lightweight, minimalistic getty program for
|
|
use on virtual consoles only. Mingetty is not suitable for serial lines
|
|
(you should use the mgetty program for this purpose).
|
|
|
|
%prep
|
|
%autosetup -p0
|
|
|
|
%build
|
|
%ifarch s390 s390x
|
|
DEFTERM=dumb
|
|
%else
|
|
DEFTERM=linux
|
|
%endif
|
|
make \
|
|
%{?_smp_mflags} \
|
|
CC="gcc" \
|
|
RPM_OPT_FLAGS="%{optflags} \
|
|
-D_FILE_OFFSET_BITS=64" \
|
|
DEFTERM=${DEFTERM}
|
|
|
|
%install
|
|
%if 0%{?suse_version} < 1550
|
|
mkdir -p ${RPM_BUILD_ROOT}{/sbin,%{_mandir}/man8}
|
|
make install MANPATH=%{_mandir} DESTDIR=%{buildroot}
|
|
%else
|
|
mkdir -p ${RPM_BUILD_ROOT}{%{_sbindir},%{_mandir}/man8}
|
|
make install MANPATH=%{_mandir} DESTDIR=%{buildroot} SBINDIR=%{_sbindir}
|
|
%endif
|
|
|
|
%files
|
|
%defattr(-,root,root,755)
|
|
%if 0%{?suse_version} < 1550
|
|
/sbin/mingetty
|
|
%else
|
|
%{_sbindir}/mingetty
|
|
%endif
|
|
%{_mandir}/man8/mingetty.8.gz
|
|
|
|
%changelog
|