forked from pool/amtterm
Fix changelog format - the check_date helper detects format errors in changelogs now OBS-URL: https://build.opensuse.org/request/show/1278003 OBS-URL: https://build.opensuse.org/package/show/utilities/amtterm?expand=0&rev=11
90 lines
2.9 KiB
RPMSpec
90 lines
2.9 KiB
RPMSpec
#
|
|
# spec file for package amtterm
|
|
#
|
|
# Copyright (c) 2025 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: amtterm
|
|
Version: 1.7
|
|
Release: 0
|
|
Summary: Serial-over-lan (sol) client for Intel AMT
|
|
License: GPL-2.0-or-later
|
|
Group: System/Management
|
|
URL: https://www.kraxel.org/releases/amtterm/
|
|
Source: https://www.kraxel.org/releases/amtterm/%{name}-%{version}.tar.gz
|
|
BuildRequires: desktop-file-utils
|
|
BuildRequires: openssl-devel
|
|
BuildRequires: pkgconfig
|
|
BuildRequires: pkgconfig(gdk-3.0)
|
|
BuildRequires: pkgconfig(gtk+-3.0)
|
|
BuildRequires: pkgconfig(vte-2.91)
|
|
Requires: perl-SOAP-Lite
|
|
|
|
%description
|
|
AMT (included in Intel vPro and Centrino Pro) provides out-of-band
|
|
(OOB) management for Desktops and Laptops, using an agent integrated in
|
|
the network adapter and in the motherboard.
|
|
|
|
Serial-over-lan provides a (secure) way to connect a remote computer,
|
|
through a pseudo serial interface.
|
|
IDE-redirection provides a way to remotely access a virtual drive, which
|
|
can be used eg. for installation or booting.
|
|
|
|
This package provide 2 terminals (amtterm and gamt) to connect to that
|
|
pseudo serial interface from a remote computer. amttool is a perl
|
|
script to gather informations about and remotely control AMT managed
|
|
computers. An additional program (amtider) supports IDE-redirection.
|
|
|
|
%package gtk
|
|
Summary: Serial-over-lan (sol) graphical client
|
|
Group: System/Management
|
|
Requires: %{name} = %{version}
|
|
|
|
%description gtk
|
|
Graphical client for the amtterm utility
|
|
|
|
%prep
|
|
%setup -q
|
|
|
|
%build
|
|
make %{?_smp_mflags} USE_OPENSSL=1 prefix=%{_prefix}
|
|
|
|
%install
|
|
%make_install USE_OPENSSL=1 prefix=%{_prefix} STRIP=""
|
|
|
|
# fix icon and category
|
|
sed -i "/Icon/s/gnome-terminal/utilities-terminal/" %{buildroot}/%{_datadir}/applications/gamt.desktop
|
|
sed -i "/Categories/s/=.*/=System;Monitor/" %{buildroot}/%{_datadir}/applications/gamt.desktop
|
|
desktop-file-install --dir=%{buildroot}%{_datadir}/applications/ \
|
|
%{buildroot}/%{_datadir}/applications/gamt.desktop
|
|
|
|
%files
|
|
%doc VERSION INSTALL
|
|
%license COPYING
|
|
%{_bindir}/amtterm
|
|
%{_bindir}/amttool
|
|
%{_bindir}/amtider
|
|
%{_mandir}/man1/amtterm.1%{?ext_man}
|
|
%{_mandir}/man1/amtider.1%{?ext_man}
|
|
%{_mandir}/man1/amttool.1%{?ext_man}
|
|
%{_mandir}/man7/amt-howto.7%{?ext_man}
|
|
|
|
%files gtk
|
|
%{_bindir}/gamt
|
|
%{_mandir}/man1/gamt.1%{?ext_man}
|
|
%{_datadir}/applications/gamt.desktop
|
|
|
|
%changelog
|