pw3270.spec
5.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
#
# spec file for package pw3270
#
# Copyright (c) 2022 SUSE LLC
# Copyright (c) <2008> <Banco do Brasil S.A.>
#
# 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://github.com/PerryWerneck/pw3270/issues
#
%define _product %(pkg-config --variable=product_name lib3270)
%define plugindir %(pkg-config --variable=plugin_path lib3270)
%if "%{plugindir}" == ""
%define plugindir /usr/lib64/pw3270-plugins
%endif
#---[ Packaging ]-----------------------------------------------------------------------------------------------------
Name: pw3270
Version: 5.5+git20230204
Release: 0
Summary: IBM 3270 Terminal emulator for GTK
License: GPL-2.0-only
Group: System/X11/Terminals
URL: https://github.com/PerryWerneck/pw3270
Source: pw3270-%{version}.tar.xz
BuildRoot: %{_tmppath}/%{name}-%{version}-build
Requires: %{name}-branding = %{version}
Requires: shared-mime-info
Recommends: libv3270-config
#--[ Setup by distribution ]------------------------------------------------------------------------------------------
#
# References:
#
# https://en.opensuse.org/openSUSE:Build_Service_cross_distribution_howto#Detect_a_distribution_flavor_for_special_code
#
#--[ CentOS ]---------------------------------------------------------------------------------------------------------
%if 0%{?centos_version}
BuildRequires: glib2-devel
BuildRequires: gtk3-devel
BuildRequires: libv3270-devel >= 5.4
%endif
#--[ Fedora ]---------------------------------------------------------------------------------------------------------
%if 0%{?fedora}
BuildRequires: pkgconfig(glib-2.0)
BuildRequires: pkgconfig(gtk+-3.0)
BuildRequires: pkgconfig(libv3270) >= 5.4
%endif
#--[ SuSE ]-----------------------------------------------------------------------------------------------------------
%if 0%{?suse_version}
BuildRequires: appstream-glib
BuildRequires: update-desktop-files
BuildRequires: pkgconfig(glib-2.0)
BuildRequires: pkgconfig(gtk+-3.0)
BuildRequires: pkgconfig(libv3270) >= 5.4
%glib2_gsettings_schema_requires
%endif
#---------------------------------------------------------------------------------------------------------------------
BuildRequires: autoconf >= 2.61
BuildRequires: autoconf-archive
BuildRequires: automake
BuildRequires: binutils
BuildRequires: coreutils
BuildRequires: desktop-file-utils
BuildRequires: fdupes
BuildRequires: findutils
BuildRequires: gcc-c++
BuildRequires: gettext-devel
BuildRequires: libtool
BuildRequires: m4
BuildRequires: pkgconfig
BuildRequires: sed
%description
GTK-based IBM 3270 terminal emulator with many advanced features. It can be used to communicate with any IBM host that supports 3270-style connections over TELNET.
Based on the original x3270 code, pw3270 was originally created for Banco do Brasil, and is now used worldwide.
#--[ Configuration & Branding ]---------------------------------------------------------------------------------------
%package branding
Summary: Default branding for %{name}
Group: System/X11/Terminals
Requires: %{name} = %{version}
BuildArch: noarch
Requires(post): desktop-file-utils
Requires(postun): desktop-file-utils
%description branding
GTK-based IBM 3270 terminal emulator with many advanced features. It can be used to communicate with any IBM host that supports 3270-style connections over TELNET.
This package contains the default branding for %{name}.
#---[ Build & Install ]-----------------------------------------------------------------------------------------------
%prep
%setup
%global _lto_cflags %{_lto_cflags} -ffat-lto-objects
NOCONFIGURE=1 ./autogen.sh
%configure --with-release=%{release} CFLAGS="${CFLAGS} -fpie" LDFLAGS="${LDFLAGS} -pie"
%build
make %{?_smp_mflags} clean
# parallel build is broken
make all -j1
%install
%make_install
%find_lang pw3270 langfiles
%if 0%{?suse_version}
appstream-util validate-relax --nonet %{buildroot}%{_datadir}/metainfo/*.metainfo.xml
%endif
%fdupes %{buildroot}/%{_prefix}
%files -f langfiles
%defattr(-,root,root)
%license LICENSE
%doc AUTHORS README.md
# Main application
%dir %{_datadir}/%{_product}
%dir %{_datadir}/%{_product}/keypad
%dir %{plugindir}
%dir %{_datadir}/%{_product}/icons
%{_bindir}/%{_product}
# Desktop files
%{_datadir}/applications/*.desktop
%{_datadir}/metainfo/*.metainfo.xml
# Icons
%{_datadir}/%{_product}/icons/*.svg
%{_datadir}/icons/*.svg
%{_datadir}/icons/hicolor/scalable/apps/*.svg
%{_datadir}/icons/hicolor/symbolic/apps/*.svg
# Configuration & Themes
%{_datadir}/glib-2.0/schemas/*.xml
%{_datadir}/mime/packages/*.xml
%exclude %{_datadir}/glib-2.0/schemas/*.compiled
%files branding
%defattr(-,root,root)
%{_datadir}/%{_product}/*.ui.xml
%{_datadir}/%{_product}/*.svg
%posttrans
/usr/bin/update-desktop-database
%postun
/usr/bin/update-desktop-database
%changelog