]> git.pld-linux.org Git - packages/fbterm.git/blob - fbterm.spec
- rebuild for x32
[packages/fbterm.git] / fbterm.spec
1 Summary:        Terminal emulator for framebuffer
2 Summary(pl.UTF-8):      Emulator terminala dla framebuffera
3 Name:           fbterm
4 Version:        1.7
5 Release:        2
6 License:        GPL v2
7 Group:          Applications/Graphics
8 Source0:        http://fbterm.googlecode.com/files/%{name}-%{version}.tar.gz
9 # Source0-md5:  e882c4cb38e7e46ce4378203509c552f
10 Patch0:         %{name}-font-lang.patch
11 Patch1:         0001-Fix-build-with-gcc-6.patch
12 URL:            http://code.google.com/p/fbterm/
13 BuildRequires:  autoconf
14 BuildRequires:  automake
15 BuildRequires:  fontconfig-devel
16 BuildRequires:  freetype-devel
17 BuildRequires:  gpm-devel
18 BuildRequires:  libstdc++-devel
19 BuildRequires:  libtool
20 BuildRequires:  ncurses
21 BuildRequires:  pkgconfig
22 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
23
24 %description
25 FbTerm is a fast terminal emulator for linux with frame buffer device.
26 Features include:
27 - mostly as fast as terminal of linux kernel while accelerated
28   scrolling is enabled on framebuffer device
29 - select font with fontconfig and draw text with freetype2, same as
30   Qt/Gtk+ based GUI apps
31 - dynamicly create/destroy up to 10 windows initially running default
32   shell
33 - record scrollback history for every window
34 - auto-detect text encoding with current locale, support double width
35   scripts like Chinese, Japanese etc
36 - switch between configurable additional text encodings with hot keys
37   on the fly
38 - copy/past selected text between windows with mouse when gpm server
39   is running
40
41 %description -l pl.UTF-8
42 FbTerm jest szybkim emulatorem terminala działającym na linuksowym
43 framebufferze. Jego cechy to:
44 - prawie tak szybki jak terminal kernelowy, gdy akcelerowane
45   przewijanie jest włączone
46 - wybór czcionki przez fontconfig i jej wyświetlanie przy użyciu
47   freetype2, tak jak w aplikacjach Qt/Gtk+
48 - dynamiczne tworzenie/kasowanie do 10 okien z domyślną powłoką
49 - zapamiętywanie historii przewijania dla każdego okna
50 - autodetekcja kodowania tekstu, wsparcie dla znaków podwójnej
51   szerokości jak chińskie czy japońskie, itd.
52 - przełączanie pomiędzy konfigurowalnymi dodatkowymi kodowaniami
53   tekstu w locie przy użyciu klawiszy skrótu
54 - kopiowanie/wstawianie zaznaczonego tekstu pomiędzy oknami przy
55   użyciu myszy, gdy serwer gpm jest uruchomiony
56
57 %prep
58 %setup -q
59 %patch0 -p1
60 %patch1 -p1
61
62 %build
63 %{__libtoolize}
64 %{__aclocal}
65 %{__autoconf}
66 %{__autoheader}
67 %{__automake}
68 %configure
69 %{__make}
70
71 %install
72 rm -rf $RPM_BUILD_ROOT
73 %{__make} install \
74         DESTDIR=$RPM_BUILD_ROOT
75
76 %clean
77 rm -rf $RPM_BUILD_ROOT
78
79 %post -p /sbin/postshell
80 -/sbin/setcap 'cap_sys_tty_config+ep' %{_bindir}/fbterm
81
82 %files
83 %defattr(644,root,root,755)
84 %doc AUTHORS ChangeLog NEWS README
85 %attr(755,root,root) %{_bindir}/*
86 %{_mandir}/man1/*
This page took 0.046746 seconds and 3 git commands to generate.