xterm-console/xterm-console.spec

93 lines
2.4 KiB
RPMSpec

#
# spec file for package xterm
#
# Copyright (c) 2015-2020 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 http://bugs.opensuse.org/
#
%define vttest_version 20120506
%define splitbin 0%{?suse_version} >= 1300
Name: xterm-console
Version: 1.0
Release: 0
Summary: A Linux vt console look-alike xterm wrapper
License: MIT
Group: System/X11/Utilities
Url: https://github.com/os-autoinst/xterm-console/tree/master
Source: xterm-console
Source1: psf2bdf.pl
# svirt, eg. s390x, xen
Supplements: os-autoinst
#BuildRequires: perl
# the original consolefonts:
BuildRequires: kbd
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: fontpackages-devel
BuildRequires: bdftopcf
Requires: fonts-config
%{reconfigure_fonts_prereq}
%description
This package contains the basic X.Org terminal program.
%prep
%setup -c -T
cp %SOURCE1 .
%build
# suse 10.x uses older X11 directory structure
%if 0%{?suse_version} < 1100
%define xappdefs %{_prefix}/X11R6/lib/X11/app-defaults
%define xfontsd %{_prefix}/X11R6/lib/X11/fonts
%else
%define xappdefs %{_datadir}/X11/app-defaults
%define xfontsd %{_datadir}/fonts
%endif
if ! which bdftopcf &> /dev/null; then exit 1; fi
chmod +x ./psf2bdf.pl
for font in /usr/share/kbd/consolefonts/*.psfu.gz
do
fontname="${font##*/}"
fontname="${fontname%.psfu.gz}"
gunzip -c $font | ./psf2bdf.pl | sed -e "s,FONT \+-psf-,FONT ${fontname}," > "$fontname".bdf
done
for i in *.bdf
do
bdftopcf "$i" | gzip -9 >"${i%.bdf}.pcf.gz"
done
%install
mkdir -p %{buildroot}%{_prefix}/bin
install -m 755 %SOURCE0 %{buildroot}%{_prefix}/bin
mkdir -p %{buildroot}%{xfontsd}/misc/
install -m 644 *.pcf.gz %{buildroot}%{xfontsd}/misc/
%{reconfigure_fonts_scriptlets}
%files
%defattr(-,root,root)
%{_bindir}/xterm-console
%dir %{xfontsd}/misc
%{xfontsd}/misc/*.pcf.gz
%changelog