source: projects/specs/branches/6/f/fbterm/fbterm-vl.spec @ 521

Revision 521, 1.9 KB checked in by daisuke, 14 years ago (diff)

import VineSeed package specs

Line 
1Summary: A fast FrameBuffer based TERMinal emulator for linux
2Summary(ja): 高速なフレームバッファベースのターミナルエミュレータ
3Name: fbterm
4Version: 1.4
5Release: 1%{?_dist_release}
6License: GPLv2+
7Group: Applications/System
8Source0: http://fbterm.googlecode.com/files/%name-%version.tar.gz
9Patch1: fbterm-1.4-antialias.patch
10URL: http://code.google.com/p/fbterm/
11BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
12BuildRequires: freetype2-devel
13BuildRequires: fontconfig-devel
14
15%description
16FbTerm is a fast terminal emulator for linux with frame buffer. Features
17include:
18
19* mostly as fast as terminal of linux kernel while accelerated scrolling
20  is enabled on framebuffer device
21* select font with fontconfig and draw text with freetype2, same as
22  Qt/Gtk+ based GUI apps
23* dynamicly create/destroy up to 10 windows initially running default
24  shell
25* record scrollback history for every window
26* auto-detect text encoding with current locale, support double width
27  scripts like Chinese, Japanese etc
28* switch between configurable additional text encodings with hot keys on
29  the fly
30* copy/past selected text between windows with mouse when gpm server is
31  running
32
33%prep
34%setup -q
35%patch1 -p1
36
37%build
38%configure
39%__make %{?_smp_mflags}
40
41%install
42rm -rf $RPM_BUILD_ROOT
43%__make install DESTDIR=$RPM_BUILD_ROOT
44
45%clean
46rm -rf $RPM_BUILD_ROOT
47
48%files
49%defattr(-, root, root)
50%doc AUTHORS ChangeLog README
51%{_bindir}/*
52%{_mandir}/man1/*
53
54
55%changelog
56* Sat Apr 04 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.4-1
57- new upstream release
58- add patch1 to use antialiased font.
59
60* Tue Jan 19 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.3-1
61- new upstream release
62
63* Fri Sep 05 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.1-1
64- initial build for Vine Linux
65
66* Sat Aug 23 2008 Funda Wang <fundawang@mandriva.org> 1.1-1mdv2009.0
67+ Revision: 275412
68- import fbterm
69
70
Note: See TracBrowser for help on using the repository browser.