4a03381
%define desktop_file_utils_version 0.9
4a03381
4a03381
Summary: The AbiWord word processor
4a03381
Name: abiword
2271228
Version: 2.4.2
5519699
Release: 3%{?dist}
4a03381
Epoch: 1
4a03381
Group: Applications/Editors
4a03381
License: GPL
4a03381
Source: http://www.abisource.com/downloads/abiword/%{version}/source/abiword-%{version}.tar.bz2
4a03381
Source11: abiword.mime
6435340
Requires: mathml-fonts
4a03381
PreReq: desktop-file-utils >= %{desktop_file_utils_version}
4a03381
4a03381
BuildRoot: %{_tmppath}/%{name}-%{version}-root
4a03381
BuildRequires: libstdc++, /usr/bin/g++
4a03381
BuildRequires: gtk2-devel aspell-devel libpng-devel
4a03381
BuildRequires: libxml2-devel
4a03381
BuildRequires: desktop-file-utils >= %{desktop_file_utils_version}
4a03381
BuildRequires: fribidi-devel, enchant-devel
f8db678
BuildRequires: libgnomeprint22-devel
f8db678
BuildRequires: libgnomeprintui22-devel
4a03381
4a03381
# some plugin build deps
2271228
BuildRequires: readline-devel
2271228
BuildRequires: bzip2-devel
2271228
BuildRequires: poppler-devel >= 0.4.0
4a03381
BuildRequires: ots-devel >= 0.4.2
4a03381
BuildRequires: libwpd-devel >= 0.8.0
4a03381
BuildRequires: librsvg2-devel
4a03381
BuildRequires: libwmf-devel
4a03381
BuildRequires: aiksaurus-gtk-devel >= 1.2.1
3e02797
BuildRequires: link-grammar-devel >= 4.1.3
6435340
BuildRequires: gtkmathview-devel >= 0.7.5
fe9c71c
BuildRequires: libgsf-devel >= 1.12.1
4a03381
4a03381
# gnome build deps
4a03381
BuildRequires: libbonobo-devel
4a03381
BuildRequires: libbonoboui-devel
4a03381
BuildRequires: libgnomeui-devel
4a03381
URL: http://www.abisource.com/
4a03381
4a03381
Patch0: abiword-2.0.9-windowshelppaths.patch
2271228
Patch1: abiword-2.4.2-desktop.patch
2271228
Patch2: abiword-2.4.2-macros.patch
4a03381
4a03381
%description
4a03381
AbiWord is a cross-platform Open Source word processor. The goal is to make
4a03381
AbiWord full-featured, and remain lean.
4a03381
4a03381
%prep
4a03381
%setup -q 
4a03381
%patch0 -p1 -b .windowshelppaths
4a03381
%patch1 -p1 -b .desktop
2271228
%patch2 -p1 -b .macros
4a03381
4a03381
%build
4a03381
cd abi
6435340
autoconf
4a03381
%configure --enable-gnome --with-libxml2
4a03381
cd ../wv
4a03381
%configure --with-libwmf --with-libxml2
4a03381
cd ../abi
4a03381
make
4a03381
cd ../abiword-plugins
4a03381
libtoolize --copy --force
4a03381
./nextgen.sh
1769f63
%configure --disable-gda --with-abiword=../abi
fe9c71c
# Remove libtool predep_objects and postdep_objects wonkiness so that
fe9c71c
# building without -nostdlib doesn't include them twice.  Because we
fe9c71c
# already link with g++, weird stuff happens if you don't let the
fe9c71c
# compiler handle this.
4a03381
sed 's/^predep_objects=.*/predep_objects=\"\"/' < libtool > libtool.foo
fe9c71c
sed 's/^postdep_objects=.*/postdep_objects=\"\"/' < libtool.foo > libtool.foobar
fe9c71c
sed 's/-shared -nostdlib/-shared/' < libtool.foobar > libtool
4a03381
make
4a03381
4a03381
# now make the docs
4a03381
cd ../abiword-docs
3e02797
ABI_DOC_PROG=$(pwd)/../abi/src/wp/main/unix/AbiWord-2.4 ./make-html.sh
4a03381
4a03381
%install
4a03381
cd abi
4a03381
%makeinstall
4a03381
cd ../abiword-plugins
4a03381
%makeinstall DESTDIR=$RPM_BUILD_ROOT
4a03381
4a03381
# install the docs
4a03381
cd ../abiword-docs
3e02797
mkdir -p $RPM_BUILD_ROOT/%{_datadir}/AbiSuite-2.4/AbiWord/help
3e02797
cp -rp help/* $RPM_BUILD_ROOT/%{_datadir}/AbiSuite-2.4/AbiWord/help/
4a03381
# some of the help dirs have bad perms (#109261)
3e02797
find $RPM_BUILD_ROOT/%{_datadir}/AbiSuite-2.4/AbiWord/help/ -type d -exec chmod -c o+rx {} \;
4a03381
4a03381
mkdir -p $RPM_BUILD_ROOT%{_datadir}/pixmaps/
3e02797
cp $RPM_BUILD_ROOT%{_datadir}/AbiSuite-2.4/icons/abiword_48.png $RPM_BUILD_ROOT%{_datadir}/pixmaps/abiword_48.png
4a03381
4a03381
cd ../abi
4a03381
mkdir -p $RPM_BUILD_ROOT%{_datadir}/applications
ef3e0f2
desktop-file-install --vendor fedora --add-category X-Fedora \
4a03381
  --dir $RPM_BUILD_ROOT%{_datadir}/applications \
4a03381
  --add-category X-Red-Hat-Extra --remove-category X-Red-Hat-Base \
4a03381
  --add-category Applications --add-category Office \
4a03381
  ./abiword.desktop
4a03381
# remove the original one (which has X-Red-Hat-Base)  (#107023)
4a03381
rm -f $RPM_BUILD_ROOT/%{_datadir}/applications/abiword.desktop
4a03381
4a03381
mkdir -p $RPM_BUILD_ROOT%{_datadir}/mime-info
4a03381
install -m 644 %{SOURCE11} $RPM_BUILD_ROOT%{_datadir}/mime-info
4a03381
4a03381
rm -f $RPM_BUILD_ROOT%{_bindir}/ttf*
4a03381
# nuke .la files
3e02797
rm -f $RPM_BUILD_ROOT/%{_libdir}/AbiWord-2.4/plugins/*.la
4a03381
4a03381
%clean
4a03381
rm -rf $RPM_BUILD_ROOT
4a03381
4a03381
%post
4a03381
/sbin/ldconfig
4a03381
update-desktop-database %{_datadir}/applications
4a03381
4a03381
%postun
4a03381
/sbin/ldconfig
4a03381
update-desktop-database %{_datadir}/applications
4a03381
4a03381
%files
4a03381
%defattr(-,root,root)
4a03381
%doc abi/docs 
3e02797
%{_bindir}/AbiWord-2.4
4a03381
%{_bindir}/abiword
3e02797
%{_libdir}/AbiWord-2.4
3e02797
%{_datadir}/AbiSuite-2.4
4a03381
%{_datadir}/applications/*
4a03381
%{_datadir}/mime-info/*
4a03381
%{_datadir}/pixmaps/*png
4a03381
%{_datadir}/icons/*png
4a03381
4a03381
%changelog
5519699
* Sat Jan 14 2006 Marc Maurer <uwog@abisource.com> - 1:2.4.2-3.fc5
5519699
- Remove redundant requires - bug 177305
5519699
46f680e
* Thu Jan 05 2006 Marc Maurer <uwog@abisource.com> - 1:2.4.2-2.fc5
46f680e
- Bump release, forgot to add desktop patch
46f680e
2271228
* Mon Jan 02 2006 Marc Maurer <uwog@abisource.com> - 1:2.4.2-1.fc5
2271228
- Update to 2.4.2
2271228
- Add BuildRequires readline-devel for the AbiCommand plugin
2271228
- Add BuildRequires bzip2-devel and poppler-devel for plugins
2271228
- Update desktop patch
2271228
- Patch to fix plugin marcros
2271228
ef3e0f2
* Wed Nov 09 2005 Marc Maurer <uwog@abisource.com> - 1:2.4.1-4.fc5
ef3e0f2
- Fix bug 171928
ef3e0f2
fe9c71c
* Sun Oct 23 2005 Marc Maurer <uwog@abisource.com> - 1:2.4.1-3.fc5
fe9c71c
- Fix bug 161832: "Abiword is not loading certain modules"
fe9c71c
- Add libgsf dependecy, which was needed all along
fe9c71c
- Disable the collaboration plugin, it is not for general use at all
fe9c71c
7a5745c
* Tue Oct 11 2005 Marc Maurer <uwog@abisource.com> - 1:2.4.1-2
7a5745c
- Use %%{?dist} in the release name
7a5745c
9885844
* Sun Oct 9 2005 Marc Maurer <uwog@abisource.com> - 1:2.4.1-1
9885844
- Update to 2.4.1
9885844
6435340
* Mon Oct 3 2005 Marc Maurer <uwog@abisource.com> - 1:2.4.0-1
6435340
- Require mathml-fonts
6435340
- Don't rerun autogen.sh, no need anymore
6435340
- Update gtkmathview dependency to 0.7.5
6435340
- Update to 2.4.0
6435340
b65ef03
* Mon Sep 26 2005 Marc Maurer <uwog@abisource.com> - 1:2.3.99-2
b65ef03
- Fix gtkmathview BuildRequires
b65ef03
ff28ba2
* Thu Sep 22 2005 Marc Maurer <uwog@abisource.com> - 1:2.3.99-1
ff28ba2
- Update to 2.3.99
ff28ba2
e134729
* Sat Sep 10 2005 Marc Maurer <uwog@abisource.com> - 1:2.3.6-1
e134729
- Update to 2.3.6
e134729
- Drop the pango patch
e134729
b750f7a
* Sat Sep 3 2005 Marc Maurer <uwog@abisource.com> - 1:2.3.5-3
b750f7a
- Rebuild
b750f7a
b750f7a
* Sat Sep 3 2005 Marc Maurer <uwog@abisource.com> - 1:2.3.5-2
1769f63
- Enable the abimathview plugin
1769f63
6ecbc25
* Sun Aug 21 2005 Marc Maurer <uwog@abisource.com> - 1:2.3.5-1
6ecbc25
- Update to 2.3.5
6ecbc25
127a998
* Fri Aug 19 2005 Marc Maurer <uwog@abisource.com> - 1:2.3.4-4
127a998
- Update the pango patch to disable more pango code
127a998
bdded86
* Fri Aug 19 2005 Marc Maurer <uwog@abisource.com> - 1:2.3.4-3
bdded86
- Fix the build after applying the pango disabling patch by 
bdded86
  rerunning autogen.sh
bdded86
13f034d
* Fri Aug 19 2005 Marc Maurer <uwog@abisource.com> - 1:2.3.4-2
13f034d
- Disable the experimental pango renderer
13f034d
13f034d
* Thu Aug 17 2005 Marc Maurer <uwog@abisource.com> - 1:2.3.4-1
3e02797
- Update to 2.3.4
3e02797
- Add link-grammar dependency
3e02797
f1b8d8c
* Thu Jul 28 2005 Marc Maurer <uwog@abisource.com> - 1:2.2.9-1
f1b8d8c
- Update to 2.2.9
f1b8d8c
- Drop the mailmerge patch again
f1b8d8c
d9fdc12
* Sun Jun 6 2005 Marc Maurer <uwog@abisource.com> - 1:2.2.8-2
d9fdc12
- Fix build with mailmerge patch
d9fdc12
afe054d
* Sun Jun 6 2005 Marc Maurer <uwog@abisource.com> - 1:2.2.8-1
afe054d
- Update to 2.2.8
afe054d
dda9478
* Sun May 22 2005 Jeremy Katz <katzj@redhat.com> - 1:2.2.7-2
dda9478
- rebuild on all arches
dda9478
ff5fb73
* Mon Apr 4 2005 Marc Maurer <uwog@abisource.com> - 1:2.2.7-1
ff5fb73
- Because we love brown paper bag releases
ff5fb73
c8f7fc6
* Sun Apr 3 2005 Marc Maurer <uwog@abisource.com> - 1:2.2.6-1
c8f7fc6
- Drop the gcc4, wvread, virtdestr and pt64 patches
c8f7fc6
- Update the desktop patch
c8f7fc6
91b52f7
* Fri Mar 15 2005 Marc Maurer <uwog@abisource.com> - 1:2.2.5-3
91b52f7
- Fix 64bit build
91b52f7
- Add virtual destructors to classes with virtual functions
91b52f7
4a03381
* Fri Mar 14 2005 Marc Maurer <uwog@abisource.com> - 1:2.2.5-2
4a03381
- Remove the --disable-magick plugin switch
4a03381
- disable GDA support until the plugin is ported to gnomedb 1.2.x
4a03381
- Change the download location from SF to http://www.abisource.com/
4a03381
- patch libole2
8b464db
- fix read as a macro in new glibc
4a03381
4a03381
* Fri Mar  2 2005 Caolan McNamara <caolanm@redhat.com> - 1:2.2.5-1
4a03381
- bump to latest stable
4a03381
- drop integrated dashboard patch again
4a03381
- some gcc4 fixes
4a03381
4a03381
* Wed Feb 23 2005 Caolan McNamara <caolanm@redhat.com> - 1:2.2.4-2
4a03381
- rh#149447# dashboard spam revisited
4a03381
4a03381
* Tue Feb 22 2005 Caolan McNamara <caolanm@redhat.com> - 1:2.2.4-1
4a03381
- bump to latest stable version
4a03381
- drop integrated nautilus depend patch
4a03381
- drop integrated libwpd depend patch
4a03381
4a03381
* Fri Feb 11 2005 Caolan McNamara <caolanm@redhat.com> - 1:2.2.3-4
4a03381
- upgrade to libwpd-0.8 and incoroprate necessary changeover patches
4a03381
4a03381
* Mon Feb 7 2005 Matthias Clasen <mclasen@redhat.com> - 1:2.2.3-3
4a03381
- rebuild
4a03381
4a03381
* Mon Feb 2 2005 Caolan McNamara <caolanm@redhat.com> - 1:2.2.3-2
4a03381
- remove unneccessary nautilus dependency
4a03381
4a03381
* Mon Jan 17 2005 Caolan McNamara <caolanm@redhat.com> - 1:2.2.3-1
4a03381
- bump to new version
4a03381
- drop integrated silenceabidash patch
4a03381
4a03381
* Fri Jan 14 2005 Caolan McNamara <caolanm@redhat.com> - 1:2.2.2-4
4a03381
- RH#145085# annoying cluepacket message on stdout/stderr
4a03381
4a03381
* Wed Jan 12 2005 Tim Waugh <twaugh@redhat.com> - 1:2.2.2-3
4a03381
- Rebuilt for new readline.
4a03381
4a03381
* Tue Jan 11 2005 Caolan McNamara <caolanm@redhat.com> - 1:2.2.2-2
4a03381
- RH#143368# use enchant as spellchecker
4a03381
4a03381
* Mon Dec 13 2004 Caolan McNamara <caolanm@redhat.com> - 1:2.2.2-1
4a03381
- bump to new version
4a03381
4a03381
* Mon Dec 6 2004 Caolan McNamara <caolanm@redhat.com> - 1:2.2.1-1
4a03381
- bump to new version
4a03381
- geometry patch upstreamed
4a03381
- security patch upstreamed
4a03381
- removeoledecod patch upstreamed
4a03381
- regenerate desktop patch
4a03381
4a03381
* Mon Nov 22 2004 Caolan McNamara <caolanm@redhat.com> - 1:2.2.0-2
4a03381
- #abi7961# remove tempnam usages
4a03381
4a03381
* Mon Nov 22 2004 Caolan McNamara <caolanm@redhat.com> - 1:2.2.0-1
4a03381
- bump to latest major stable version
4a03381
- #rh140321# sanity check geometry
4a03381
4a03381
* Tue Nov  9 2004 Caolan McNamara <caolanm@redhat.com> - 1:2.0.14-1
4a03381
- bump to latest stable version
4a03381
4a03381
* Mon Nov  8 2004 Jeremy Katz <katzj@redhat.com> - 1:2.0.12-4
4a03381
- rebuild for python 2.4
4a03381
4a03381
* Thu Sep 30 2004 Christopher Aillon <caillon@redhat.com> 1:2.0.12-3
4a03381
- Change to PreReq instead of Requires(post), up to 0.9
4a03381
4a03381
* Thu Sep 29 2004 Caolan McNamara <caolanm@redhat.com> 1:2.0.12-2
4a03381
- Better Requires desktop-file-utils
4a03381
4a03381
* Wed Sep 29 2004 Caolan McNamara <caolanm@redhat.com> 1:2.0.12-1
4a03381
- update to new abiword, + change norwegian wordprocessor translation
4a03381
4a03381
* Tue Sep 14 2004 Caolan McNamara <caolanm@redhat.com> 1:2.0.11-3
4a03381
- #132389# Add more abiword supported mime types to abiword.desktop
4a03381
4a03381
* Mon Sep 6 2004 Caolan McNamara <caolanm@redhat.com> 1:2.0.11-2
4a03381
- merge abiword.keys into abiword.desktop
4a03381
4a03381
* Fri Aug 27 2004 Caolan McNamara <caolanm@redhat.com> 1:2.0.11-1
4a03381
- 2.0.11
4a03381
4a03381
* Tue Aug 10 2004 Caolan McNamara <caolanm@redhat.com> 1:2.0.10-2
4a03381
- use libgnomedb
4a03381
4a03381
* Tue Aug 10 2004 Caolan McNamara <caolanm@redhat.com> 1:2.0.10-1
4a03381
- 2.0.10
4a03381
- use aiksaurus
4a03381
4a03381
* Tue Aug 2 2004 Matthias Clasen <mclasen@redhat.com> 1:2.0.9-4
4a03381
- rebuilt
4a03381
4a03381
* Thu Jul 29 2004 Caolan McNamara <caolanm@redhat.com> 1:2.0.9-3
4a03381
- #126012# some desktop translations
4a03381
4a03381
* Wed Jul 28 2004 Caolan McNamara <caolanm@redhat.com> 1:2.0.9-2
4a03381
- #128004# fix irritating windows looking filenames for generated pngs
4a03381
4a03381
* Fri Jul 16 2004 Caolan McNamara <caolanm@redhat.com> 1:2.0.9-1
4a03381
- 2.0.9, new version with security fix
4a03381
4a03381
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
4a03381
- rebuilt
4a03381
4a03381
* Thu May 20 2004 Caolan McNamara <caolanm@redhat.com> 1:2.0.6-1
4a03381
- 2.0.7, new version + gcc34 fixes
4a03381
4a03381
* Wed Apr 28 2004 Caolan McNamara <caolanm@redhat.com> 1:2.0.6-1
4a03381
- 2.0.6, 64bit changes made upstream
4a03381
4a03381
* Sat Mar 13 2004 Jeremy Katz <> 1:2.0.5-1
4a03381
- 2.0.5
4a03381
4a03381
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
4a03381
- rebuilt
4a03381
4a03381
* Thu Feb 19 2004 Jeremy Katz <katzj@redhat.com> - 1:2.0.3-3
4a03381
- rebuild for newer libots and libwpd
4a03381
- fix verify as non-root (#109261)
4a03381
- add wpd files to abiword.keys (#114907)
4a03381
4a03381
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
4a03381
- rebuilt
4a03381
4a03381
* Thu Jan 29 2004 Jeremy Katz <katzj@redhat.com> - 1:2.0.3-1
4a03381
- 2.0.3 (fixes build against gtk+ 2.3 and lets us rebuild to fix libcroco dep)
4a03381
4a03381
* Wed Dec 17 2003 Jeremy Katz <katzj@redhat.com> 1:2.0.2-2
4a03381
- rebuild for new libwpd
4a03381
4a03381
* Sun Nov 30 2003 Jeremy Katz <katzj@redhat.com> 
4a03381
- and librsvg2-devel (#111222)
4a03381
4a03381
* Fri Nov 28 2003 Jeremy Katz <katzj@redhat.com> 
4a03381
- buildrequire libgnomeui-devel (#111164)
4a03381
4a03381
* Tue Oct 28 2003 Jeremy Katz <katzj@redhat.com> 1:2.0.1-1
4a03381
- 2.0.1
4a03381
- really remove duplicate desktop file
4a03381
4a03381
* Tue Oct 21 2003 Jeremy Katz <katzj@redhat.com> 1:2.0.0-6
4a03381
- make the docs with the just built abiword so that we don't have to 
4a03381
  have abiword installed to build the docs (#107279)
4a03381
4a03381
* Tue Oct 21 2003 Jeremy Katz <katzj@redhat.com> 1:2.0.0-5
4a03381
- fix linkage to glib 1.2 in hancom plugin (#106033)
4a03381
4a03381
* Sun Oct 19 2003 Florian La Roche <Florian.LaRoche@redhat.de>
4a03381
- add %%clean specfile target
4a03381
4a03381
* Tue Oct 14 2003 Jeremy Katz <katzj@redhat.com> 1:2.0.0-4
4a03381
- remove duplicate desktop file (#107023)
4a03381
4a03381
* Tue Sep 23 2003 Jeremy Katz <katzj@redhat.com> 1:2.0.0-3
4a03381
- include the help
4a03381
- show the clipart (#104577)
4a03381
4a03381
* Mon Sep 15 2003 Jeremy Katz <katzj@redhat.com> 1:2.0.0-2
4a03381
- rebuild with newer libwpd and libots to get those plugins
4a03381
4a03381
* Sun Sep 14 2003 Jeremy Katz <katzj@redhat.com> 1:2.0.0-1
4a03381
- 2.0.0
4a03381
4a03381
* Thu Sep  4 2003 Jeremy Katz <katzj@redhat.com> 1:1.99.6-1
4a03381
- 1.99.6
4a03381
4a03381
* Mon Aug 25 2003 Jeremy Katz <katzj@redhat.com> 1:1.99.5-1
4a03381
- 1.99.5
4a03381
4a03381
* Tue Aug  5 2003 Jeremy Katz <katzj@redhat.com> 1:1.99.3-1
4a03381
- 1.99.3
4a03381
- put icon in the right place (#101646)
4a03381
- fix some 64bit casting issues
4a03381
- disable ots plugin for now, doesn't seem to build with ots 0.4.0 :/
4a03381
- disable -pedantic -ansi so that it will build
4a03381
4a03381
* Mon Jul 14 2003 Jeremy Katz <katzj@redhat.com> 1:1.99.2-2
4a03381
- ugly hack to deal with libtool silliness on x86_64
4a03381
4a03381
* Fri Jul 11 2003 Jeremy Katz <katzj@redhat.com> 1:1.99.2-1
4a03381
- 1.99.2
4a03381
- add buildrequires to make sure the ots and wp plugins get built
4a03381
- no longer needs libgal2, remove buildrequires
4a03381
4a03381
* Mon Jun 16 2003 Jeremy Katz <katzj@redhat.com> 1:1.99.1-1
4a03381
- 1.99.1
4a03381
4a03381
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
4a03381
- rebuilt
4a03381
4a03381
* Mon May 26 2003 Jeremy Katz <katzj@redhat.com> 1:1.9.1-3
4a03381
- rebuild for new libgal2
4a03381
4a03381
* Mon May 19 2003 Jeremy Katz <katzj@redhat.com> 1:1.9.1-2
4a03381
- tweak plugins build
4a03381
4a03381
* Mon May 12 2003 Jeremy Katz <katzj@redhat.com> 1:1.9.1-0.2
4a03381
- 1.9.1
4a03381
- drop old patches, switch to using autoconf based build system instead 
4a03381
  of diving makefiles
4a03381
- build with gnome support
4a03381
- build with plugins
4a03381
- add patch to build on AMD64
4a03381
4a03381
* Mon Apr 28 2003 Tim Powers <timp@redhat.com> 1:1.0.5-2
4a03381
- rebuild to fix broken libpspell dep
4a03381
4a03381
* Mon Mar 24 2003 Jeremy Katz <katzj@redhat.com> 1:1.0.5-1
4a03381
- 1.0.5
4a03381
4a03381
* Mon Feb 10 2003 Jeremy Katz <katzj@redhat.com> 1:1.0.4-2
4a03381
- fix for abiword starting off the screen (#82425)
4a03381
4a03381
* Thu Jan 23 2003 Jeremy Katz <katzj@redhat.com> 1:1.0.4-1
4a03381
- 1.0.4
4a03381
4a03381
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
4a03381
- rebuilt
4a03381
4a03381
* Sun Dec 29 2002 Jeremy Katz <katzj@redhat.com> 1:1.0.3-2
4a03381
- make it build on x86_64
4a03381
4a03381
* Sun Dec 29 2002 Jeremy Katz <katzj@redhat.com> 1:1.0.3-1
4a03381
- 1.0.3 (#80560)
4a03381
- set umask before running mkfontdir in %%post
4a03381
- patch AbiWord script to convert utf8 locales into non-utf8 variants (#72633)
4a03381
4a03381
* Mon Dec 02 2002 Elliot Lee <sopwith@redhat.com> 1.0.2-7
4a03381
- Fix doc lines
4a03381
- Fix multilib
4a03381
4a03381
* Sat Aug 10 2002 Elliot Lee <sopwith@redhat.com> 1.0.2-6
4a03381
- rebuilt with gcc-3.2 (we hope)
4a03381
4a03381
* Sat Aug 10 2002 Jeremy Katz <katzj@redhat.com> 1.0.2-5
4a03381
- fix help index symlink (#71219)
4a03381
4a03381
* Thu Aug  1 2002 Jeremy Katz <katzj@redhat.com> 1.0.2-4
4a03381
- add abiword binary symlink for upstream compatibility (#70267)
4a03381
4a03381
* Mon Jul 22 2002 Tim Powers <timp@redhat.com> 1.0.2-3
4a03381
- rebuild using gcc-3.2-0.1
4a03381
4a03381
* Thu Jul 18 2002 Jeremy Katz <katzj@redhat.com> 1.0.2-2
4a03381
- use included desktop file (#64447)
4a03381
- use desktop-file-install
4a03381
4a03381
* Wed Jun 26 2002 Jeremy Katz <katzj@redhat.com> 1.0.2-1
4a03381
- 1.0.2
4a03381
- disable perl module build since we weren't including it anyway
4a03381
4a03381
* Wed May 29 2002 Bernhard Rosenkraenzer <bero@redhat.com> 1.0.1-1
4a03381
- 1.0.1
4a03381
4a03381
* Sun Apr 14 2002 Jeremy Katz <katzj@redhat.com> 0.99.5-1
4a03381
- zh_CN and zh_TW fonts.dir were flipped
4a03381
- update to 0.99.5 as it fixes some major bugs
4a03381
- define ABI_BUILD_VERSION so the about screen gives us a version
4a03381
4a03381
* Mon Apr  8 2002 Bennhard Rosenkraenzer <bero@redhat.com> 0.99.4-2
4a03381
- 1st try at fixing up CJK (#61590)
4a03381
- #if 0'ify font warning dialog (#62909, #64556)
4a03381
4a03381
* Tue Apr  2 2002 Bernhard Rosenkraenzer <bero@redhat.com> 0.99.4-1
4a03381
- Update to 0.99.4, fixes #61153
4a03381
- Fix #61344
4a03381
- Nuke the warning about being unable to add anything to font path,
4a03381
  that's not how xfs works.
4a03381
4a03381
* Thu Feb 28 2002 Bernhard Rosenkraenzer <bero@redhat.com> 0.99.2-1
4a03381
- 0.99.2
4a03381
- remove blank lines in fonts.dir
4a03381
4a03381
* Thu Jan 31 2002 Bernhard Rosenkraenzer <bero@redhat.com> 0.99.1-1
4a03381
- 0.99.1
4a03381
4a03381
* Wed Jan 30 2002 Alex Larsson <alexl@redhat.com> 0.9.5-3
4a03381
- Added patch to use libpng10
4a03381
- Added patch to fix perl build problems.
4a03381
4a03381
* Fri Nov 23 2001 Bernhard Rosenkraenzer <bero@redhat.com> 0.9.5-1
4a03381
- 0.9.5
4a03381
4a03381
* Tue Oct 23 2001 Bernhard Rosenkraenzer <bero@redhat.com> 0.9.4.1-1
4a03381
- Update to 0.9.4.1 (RFE #54806)
4a03381
- Add URL (RFE #54590)
4a03381
4a03381
* Thu Jul 19 2001 Bernhard Rosenkraenzer <bero@redhat.com> 0.7.14-7
4a03381
- Fix uninstall (#49350)
4a03381
4a03381
* Sat Jul  7 2001 Tim Powers <timp@redhat.com>
4a03381
- rebuilt so that dirs aren't sgid root
4a03381
4a03381
* Tue Jun 26 2001 Bernhard Rosenkraenzer <bero@redhat.com> 0.7.14-5
4a03381
- Add build requirements (#45157)
4a03381
4a03381
* Tue Jun 26 2001 Bernhard Rosenkraenzer <bero@redhat.com> 0.7.14-4
4a03381
- Remove CVS admin files from documentation (#44916)
4a03381
4a03381
* Mon Jun 18 2001 Florian La Roche <Florian.LaRoche@redhat.de>
4a03381
- add s390x patch from <oliver.paukstadt@millenux.com>
4a03381
4a03381
* Sat Jun 09 2001 Florian La Roche <Florian.LaRoche@redhat.de>
4a03381
- add s390 patch from Helge Deller
4a03381
4a03381
* Tue May 22 2001 Bernhard Rosenkraenzer <bero@redhat.com> 0.7.14-1
4a03381
- Update to 0.7.14
4a03381
4a03381
* Tue Feb 27 2001 Bernhard Rosenkraenzer <bero@redhat.com>
4a03381
- Handle MIME type stuff (Bug #27530)
4a03381
- Add BuildPrereqs for some of the less common stuff AbiWord uses
4a03381
  (gal-devel, gnome-print-devel, libunicode-devel)
4a03381
4a03381
* Tue Feb 20 2001 Bernhard Rosenkraenzer <bero@redhat.com>
4a03381
- 0.7.13
4a03381
4a03381
* Mon Jan 15 2001 Than Ngo <than@redhat.com>
4a03381
- fixed broken code for building
4a03381
4a03381
* Fri Dec 29 2000 Matt Wilson <msw@redhat.com>
4a03381
- 0.7.12
4a03381
- copy fonts.dir to fonts.scale so mkfontdir doesn't blow it away
4a03381
4a03381
* Tue Dec 12 2000 Bernhard Rosenkraenzer <bero@redhat.com>
4a03381
- Rebuild to get rid of 0777 dirs
4a03381
4a03381
* Fri Nov 17 2000 Bernhard Rosenkraenzer <bero@redhat.com>
4a03381
- 0.7.11
4a03381
4a03381
* Sun Aug 20 2000 Preston Brown <pbrown@redhat.com>
4a03381
- fix path to chkfontpath, it was wrong.
4a03381
4a03381
* Fri Aug 11 2000 Jonathan Blandford <jrb@redhat.com>
4a03381
- Up Epoch and release
4a03381
4a03381
* Mon Aug  7 2000 Jakub Jelinek <jakub@redhat.com>
4a03381
- Don't ship AbiWord_s if we have AbiWord_d
4a03381
- Register AbiWord's fontpath with xfs
4a03381
4a03381
* Wed Aug  2 2000 Bernhard Rosenkraenzer <bero@redhat.com>
4a03381
- Rebuild with new libpng. This fixes Bug #13707 - gotta love it when they
4a03381
  change the ABI without increasing the soname!
4a03381
- fix tooltip (Bug #14711)
4a03381
- move binaries from /usr/share to /usr/lib
4a03381
4a03381
* Wed Jul 12 2000 Jakub Jelinek <jakub@redhat.com>
4a03381
- Fix build on ia64.
4a03381
4a03381
* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
4a03381
- automatic rebuild
4a03381
4a03381
* Tue Jul  4 2000 Jakub Jelinek <jakub@redhat.com>
4a03381
- Rebuild with new gcc.
4a03381
4a03381
* Sat Jun 18 2000 Bernhard Rosenkraenzer <bero@redhat.com>
4a03381
- Fix build on ia64
4a03381
4a03381
* Fri Jun 17 2000 Bernhard Rosenkraenzer <bero@redhat.com>
4a03381
- 0.7.10
4a03381
- update download location
4a03381
4a03381
* Fri Jun  9 2000 Bernhard Rosenkraenzer <bero@redhat.com>
4a03381
- initial build for main CD
4a03381
- clean up specfile
4a03381
- fix build with gcc 2.96 and glibc 2.2
4a03381
- exclude ia64 for now
4a03381
4a03381
* Wed May  3 2000 Bernhard Rosenkraenzer <bero@redhat.com>
4a03381
- 0.7.9
4a03381
4a03381
* Wed Feb  2 2000 Bernhard Rosenkraenzer <bero@redhat.com>
4a03381
- 0.7.8
4a03381
- move the desktop file to /etc/X11/applnk so it can be used in both
4a03381
  GNOME and KDE
4a03381
- fix up handling of RPM_OPT_FLAGS
4a03381
4a03381
* Thu Jan 20 2000 Tim Powers <timp@redhat.com>
4a03381
- bzipped source to conserve space.
4a03381
4a03381
* Sun Jan  9 2000 Matt Wilson <msw@redhat.com>
4a03381
- enable GNOME, remove perl hack to do RPM_OPT_FLAGS
4a03381
- added libpng requirement.  0.7.7 requires 1.0.5 libpng ABI
4a03381
4a03381
* Tue Jan  4 2000 Bernhard Rosenkraenzer <bero@redhat.com>
4a03381
- 0.7.7
4a03381
- handle RPM_OPT_FLAGS
4a03381
4a03381
* Mon Nov 15 1999 Tim Powers <timp@redhat.com>
4a03381
- first build for inclusion into Powertools.
4a03381
- some things in this spec file are from the abisuite-0.7.5-1mdk package