]> git.pld-linux.org Git - packages/gaspell.git/blame - gaspell.spec
- raw version.
[packages/gaspell.git] / gaspell.spec
CommitLineData
0614fe35 1%define name gaspell
2%define version .28.5
3%define release 1
4%define serial 1
5
6Summary: Gnome frontend to the Aspell library.
7Name: %{name}
8Version: %{version}
9Release: %{release}
10Serial: %{serial}
11Copyright: GPL
12Group: Applications/Text
13URL: http://metalab.unc.edu/kevina/aspell
14Vendor: Kevin Atkinson <kevinatk@home.com>
15Source: %{name}-%{version}.tar.gz
16BuildRoot: /var/tmp/%{name}-%{version}
17Requires: aspell
18
19Distribution: Freshmeat RPMs
20Packager: Ryan Weaver <ryanw@infohwy.com>
21
22%description
23Gnome frontend to the Aspell library. Or put another way a simple
24spell checker that does a way better job than ispell does with coming
25up with suggestions.
26
27%prep
28%setup -q
29
30%build
31make CXXFLAGS=$RPM_OPT_FLAGS ASPELL_PREFIX=/usr
32
33%install
34if [ -d $RPM_BUILD_ROOT ]; then rm -rf $RPM_BUILD_ROOT; fi
35mkdir -p $RPM_BUILD_ROOT/usr/bin
36install -s -m 755 gaspell $RPM_BUILD_ROOT/usr/bin
37
38%clean
39if [ -d $RPM_BUILD_ROOT ]; then rm -rf $RPM_BUILD_ROOT; fi
40
41%files
42%defattr(-,root,root)
43%doc ChangeLog README TODO
44/usr/bin/gaspell
45
46%changelog
47* Mon Sep 27 1999 Ryan Weaver <ryanw@infohwy.com>
48 [gaspell-.28.5-1]
49- Added the ability to lookup the definition of a suggestion using
50 the WordNet definitions form a DICT server.
51
52* Thu Jul 29 1999 Ryan Weaver <ryanw@infohwy.com>
53 [gaspell-.28.2-1]
54- Reverted to Gaspell .28 code as my bug fixed now causes Gaspell to
55 randomly crash when the text is unhighlighted. I then fixed the bug
56 in .28 by a cheap hack. I hope eventually find out what is really going on.
57- Changed the text window to use word wrap.
58
59* Wed Jul 28 1999 Ryan Weaver <ryanw@infohwy.com>
60 [gaspell-.28.1-1]
61- Fixed a bug that caused gaspell to dump core when clearing a
62 file that has a word highlighted in red.
63
64* Mon Jul 26 1999 Ryan Weaver <ryanw@infohwy.com>
65 [gaspell-.28-1]
66- Fixed the code so that it would word with aspell .28
67- Fixed the code so that it will provide an nice error message
68 if there is a problem duren startup rather than just
69 dumping core.
70- Re did the command line options a bit
71
72 [gaspell-.27-1]
73- Fixed code so that it would work with aspell .27
74- Added support for Aspell URL skip mode.
75- Added an option to not save personal dictionaries on exit.
76
77 [gaspell-.26-1]
78- First real release
This page took 0.233245 seconds and 4 git commands to generate.