Blame SPECS/fontforge.spec

3ee552
%{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
3ee552
3ee552
%global archive_version 20120731-b
3ee552
%global gettext_package FontForge
3ee552
3ee552
Name:           fontforge
3ee552
Version:        20120731b
cc3202
Release:        13%{?dist}
3ee552
Summary:        Outline and bitmap font editor
3ee552
3ee552
Group:          Applications/Publishing
3ee552
License:        BSD
3ee552
URL:            http://fontforge.sourceforge.net/
3ee552
Source0:        http://downloads.sourceforge.net/fontforge/fontforge_full-%{archive_version}.tar.bz2
3ee552
Source2:        http://downloads.sourceforge.net/fontforge/fontforge_htdocs-%{archive_version}.tar.bz2
3ee552
Patch1:         fontforge-20090224-pythondl.patch
3ee552
Patch2:         fontforge-20120731-pdf-bounds.patch
3ee552
# aarch64 support until it upstreams
3ee552
Patch3:         http://ausil.fedorapeople.org/aarch64/fontforge/fontforge-aarch64.patch
3ee552
Patch4:         fontforge-20120731-pdf-filters.patch
cc3202
# https://github.com/fontforge/fontforge/issues/4084
cc3202
# https://github.com/fontforge/fontforge/issues/4164
cc3202
Patch5:         fontforge-20120731-b-cve-2020-5395.patch
3ee552
3ee552
Requires:       xdg-utils
3ee552
Requires:       autotrace
3ee552
3ee552
BuildRequires:  libjpeg-devel
3ee552
BuildRequires:  libtiff-devel
3ee552
BuildRequires:  libpng-devel
3ee552
BuildRequires:  libungif-devel
3ee552
BuildRequires:  libxml2-devel
3ee552
BuildRequires:  freetype-devel
3ee552
BuildRequires:  desktop-file-utils
3ee552
BuildRequires:  libuninameslist-devel
3ee552
BuildRequires:  libXt-devel
3ee552
BuildRequires:  xorg-x11-proto-devel
3ee552
BuildRequires:  gettext
3ee552
BuildRequires:  pango-devel
3ee552
BuildRequires:  cairo-devel
3ee552
BuildRequires:  libspiro-devel
3ee552
BuildRequires:  python2-devel
3ee552
3ee552
%description
3ee552
FontForge (former PfaEdit) is a font editor for outline and bitmap
3ee552
fonts. It supports a range of font formats, including PostScript
3ee552
(ASCII and binary Type 1, some Type 3 and Type 0), TrueType, OpenType
3ee552
(Type2) and CID-keyed fonts.
3ee552
3ee552
%package devel
3ee552
Summary: Development tools for fontforge
3ee552
Group: Development/Libraries
3ee552
Requires: %{name} = %{version}-%{release}
3ee552
Requires: pkgconfig
3ee552
3ee552
%description devel
3ee552
This package includes the libraries and header files you will need
3ee552
to compile applications against fontforge.
3ee552
3ee552
%prep
3ee552
%setup -q -n %{name}-%{archive_version}
3ee552
3ee552
%patch1 -p1
3ee552
%patch2 -p1
3ee552
%patch3 -p1
3ee552
%patch4 -p1
cc3202
%patch5 -p1
3ee552
3ee552
mkdir htdocs
3ee552
tar xjf %{SOURCE2} -C htdocs
3ee552
rm -rf htdocs/scripts
3ee552
chmod 644 htdocs/*.gif
3ee552
chmod 644 htdocs/*.html
3ee552
chmod 644 htdocs/*.png
3ee552
rm -rf htdocs/flags/CVS
3ee552
3ee552
# Fix bad line terminators
3ee552
%{__sed} -i 's/\r//' htdocs/Big5.txt
3ee552
%{__sed} -i 's/\r//' htdocs/corpchar.txt
3ee552
3ee552
# Fix compile time link error messages by removing makefile rule
3ee552
%{__sed} -i '40d' Makefile.dynamic.in
3ee552
3ee552
# Fix compile time install error messages by removing makefile rule
3ee552
%{__sed} -i '95,96d' Makefile.dynamic.in
3ee552
3ee552
3ee552
%build
3ee552
export INSTALL='/usr/bin/install -p'
3ee552
export CFLAGS="%{optflags} -fno-strict-aliasing"
3ee552
3ee552
%configure --with-freetype-bytecode=no --with-regular-link --enable-pyextension
3ee552
3ee552
sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool
3ee552
sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
3ee552
3ee552
make %{?_smp_mflags}
3ee552
3ee552
%install
3ee552
make install DESTDIR=$RPM_BUILD_ROOT
3ee552
3ee552
rm -f $RPM_BUILD_ROOT%{_libdir}/libg{draw,unicode}.{la,so}
3ee552
3ee552
install -Dpm 644 Packaging/icons/scalable/apps/fontforge.svg \
3ee552
  $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/scalable/apps/fontforge.svg
3ee552
3ee552
desktop-file-install \
3ee552
  --dir $RPM_BUILD_ROOT%{_datadir}/applications            \
3ee552
  --add-category X-Fedora                                  \
3ee552
  Packaging/fontforge.desktop
3ee552
3ee552
# The fontforge makefiles install htdocs as well, but we
3ee552
# prefer to have them under the standard RPM location, so
3ee552
# remove the extra copy
3ee552
rm -rf $RPM_BUILD_ROOT%{_datadir}/doc/fontforge
3ee552
3ee552
# remove unneeded .la and .a files
3ee552
rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
3ee552
rm -f $RPM_BUILD_ROOT%{_libdir}/*.a
3ee552
3ee552
# Find translations
3ee552
%find_lang %{gettext_package}
3ee552
3ee552
mkdir -p $RPM_BUILD_ROOT/%{_datadir}/mime/packages
3ee552
install -m 644 -p Packaging/fontforge.xml $RPM_BUILD_ROOT/%{_datadir}/mime/packages/
3ee552
3ee552
%post
3ee552
update-desktop-database &> /dev/null || :
3ee552
update-mime-database %{_datadir}/mime &> /dev/null || :
3ee552
/bin/touch --no-create %{_datadir}/icons/hicolor &>/dev/null || :
3ee552
/sbin/ldconfig
3ee552
3ee552
%postun
3ee552
update-desktop-database &> /dev/null || :
3ee552
update-mime-database %{_datadir}/mime &> /dev/null || :
3ee552
if [ $1 -eq 0 ] ; then
3ee552
    /bin/touch --no-create %{_datadir}/icons/hicolor &>/dev/null
3ee552
    /usr/bin/gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
3ee552
fi
3ee552
/sbin/ldconfig
3ee552
3ee552
%posttrans
3ee552
/usr/bin/gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
3ee552
3ee552
%files -f %{gettext_package}.lang
3ee552
%doc AUTHORS LICENSE htdocs
3ee552
%{_bindir}/*
3ee552
%{_libdir}/lib*.so.*
3ee552
%{_datadir}/applications/*fontforge.desktop
3ee552
%{_datadir}/fontforge
3ee552
%{_datadir}/icons/hicolor/*/apps/fontforge.*
3ee552
%{_mandir}/man1/*.1*
3ee552
%{_datadir}/mime/packages/fontforge.xml
3ee552
%{python_sitearch}/fontforge-1.0-py2.7.egg-info
3ee552
%{python_sitearch}/fontforge.so
3ee552
%{python_sitearch}/psMat.so
3ee552
3ee552
%files devel
3ee552
%{_includedir}/fontforge/
3ee552
%{_libdir}/lib*.so
3ee552
%{_libdir}/pkgconfig/*.pc
3ee552
3ee552
%changelog
cc3202
* Wed Apr 08 2020 Parag Nemade <pnemade AT redhat DOT com> - 20120731b-13
cc3202
- Resolves:rh#1790973 - CVE-2020-5395:out-of-bounds write in sfd.c
cc3202
3ee552
* Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 20120731b-12
3ee552
- Mass rebuild 2014-01-24
3ee552
3ee552
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 20120731b-11
3ee552
- Mass rebuild 2013-12-27
3ee552
3ee552
* Mon Sep 02 2013 Parag Nemade <pnemade AT redhat DOT com> - 20120731b-10
3ee552
- Revert previously added -Wstrict-aliasing cflags
3ee552
- We actaully need -fno-strict-aliasing (rh#903288)
3ee552
- Remove %%defattr() (rh#1003518)
3ee552
- fontforge.xml should not be executable (rh#1003518)
3ee552
3ee552
* Thu Aug 22 2013 Parag Nemade <pnemade AT redhat DOT com> - 20120731b-9
3ee552
- Added cflags -Wstrict-aliasing
3ee552
- Fixed some compile-time errors from invalid Makefile rules
3ee552
- Fixed bogus date in changelog
3ee552
3ee552
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 20120731b-8
3ee552
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
3ee552
3ee552
* Mon Apr 15 2013 Paul Flo Williams <paul@frixxon.co.uk> - 20120731b-7
3ee552
- Don't crash on PDFs with filters we can't understand. Fixes bug #906492
3ee552
3ee552
* Sat Mar 23 2013 Kevin Fenzi <kevin@scrye.com> 20120731b-6
3ee552
- Add fix for aarch64 support. Fixes bug #925354
3ee552
3ee552
* Mon Feb 11 2013 Paul Flo Williams <paul@frixxon.co.uk> - 20120731b-5
3ee552
- De-vendorize desktop installation
3ee552
3ee552
* Thu Feb 07 2013 Paul Flo Williams <paul@frixxon.co.uk> - 20120731b-4
3ee552
- Patch for bug #902089, out-of-bounds errors while reading PDFs
3ee552
3ee552
* Fri Jan 18 2013 Adam Tkac <atkac redhat com> - 20120731b-3
3ee552
- rebuild due to "jpeg8-ABI" feature drop
3ee552
3ee552
* Tue Nov 27 2012 Kevin Fenzi <kevin@scrye.com> 20120731b-2
3ee552
- Cosmetic cleanups for bug 880472
3ee552
3ee552
* Thu Aug 02 2012 Paul Flo Williams <paul@frixxon.co.uk> - 20120731b-1
3ee552
- Update to 20120731b (problem with 64-bit builds in first release)
3ee552
3ee552
* Thu Aug 02 2012 Paul Flo Williams <paul@frixxon.co.uk> - 20120731-1
3ee552
- Update to 20120731
3ee552
3ee552
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 20110222-9
3ee552
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
3ee552
3ee552
* Sun May 06 2012 Kevin Fenzi <kevin@scrye.com> - 20110222-8
3ee552
- Rebuild for new libtiff. 
3ee552
3ee552
* Sat Jan 28 2012 Parag Nemade <paragn AT fedoraproject.org> - 2011022-7
3ee552
- Add patch for libpng15
3ee552
3ee552
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 20110222-6
3ee552
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
3ee552
3ee552
* Tue Dec 06 2011 Adam Jackson <ajax@redhat.com> - 20110222-5
3ee552
- Rebuild for new libpng
3ee552
3ee552
* Thu Apr 07 2011 Parag Nemade <paragn AT fedoraproject.org> - 2011022-4
3ee552
- Add patch for multilib. Fixes bug #694409
3ee552
3ee552
* Thu Mar 31 2011 Paul Flo Williams <paul@frixxon.co.uk> - 20110222-3
3ee552
- Add patch for charview crash. Fixes bug #660376
3ee552
3ee552
* Thu Mar 17 2011 Kevin Fenzi <kevin@tummy.com> - 20110222-2
3ee552
- Drop sources that are now upstream. Fixes bug #688470
3ee552
3ee552
* Tue Feb 22 2011 Kevin Fenzi <kevin@tummy.com> - 20110222-1
3ee552
- Update to 20110222
3ee552
3ee552
* Wed Feb 16 2011 Kevin Fenzi <kevin@tummy.com> - 20100501-7
3ee552
- Fix patch for python. Fixes bug #677917
3ee552
- Add patch for unicode glyph crash. Fixes bug #631172
3ee552
3ee552
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 20100501-6
3ee552
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
3ee552
3ee552
* Sat Dec 04 2010 Kevin Fenzi <kevin@tummy.com> - 20100501-5
3ee552
- Add patch for CVE-2010-4259
3ee552
3ee552
* Wed Jul 28 2010 Kevin Fenzi <kevin@tummy.com> - 20100501-4
3ee552
- Add patch to build with python 2.7
3ee552
3ee552
* Wed Jul 21 2010 David Malcolm <dmalcolm@redhat.com> - 20100501-3
3ee552
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
3ee552
3ee552
* Fri Jul 16 2010 Kevin Fenzi <kevin@tummy.com> - 20100501-2
3ee552
- Add patch for bug 536920
3ee552
3ee552
* Wed May 19 2010 Kevin Fenzi <kevin@tummy.com> - 20100501-1
3ee552
- Update to 20100501
3ee552
3ee552
* Fri Apr 30 2010 Kevin Fenzi <kevin@tummy.com> - 20100429-1
3ee552
- Update to 20100429
3ee552
3ee552
* Sat Mar 20 2010 Kevin Fenzi <kevin@tummy.com> - 20090923-3
3ee552
- Fix patch to fix python module (fixes #560277)
3ee552
3ee552
* Wed Dec 30 2009 Kevin Fenzi <kevin@tummy.com> - 20090923-2
3ee552
- Add patch to fix relative paths for fontlint (fixes #530760)
3ee552
3ee552
* Sun Nov 01 2009 Kevin Fenzi <kevin@tummy.com> - 20090923-1
3ee552
- Upgrade to 20090923
3ee552
3ee552
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 20090622-2
3ee552
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
3ee552
3ee552
* Thu Jul 16 2009 Kevin Fenzi <kevin@tummy.com> - 20090622-1
3ee552
- Upgrade to 20090622
3ee552
3ee552
* Thu Apr 16 2009 Kevin Fenzi <kevin@tummy.com> - 20090408-1
3ee552
- Upgrade to 20090408
3ee552
3ee552
* Thu Apr 02 2009 Kevin Fenzi <kevin@tummy.com> - 20090224-2
3ee552
- Apply patch for python modules loading (fixes #489109)
3ee552
- use install -p to fix multiarch issue (fixes #480685)
3ee552
3ee552
* Thu Feb 26 2009 Kevin Fenzi <kevin@tummy.com> - 20090224-1
3ee552
- Upgrade to 20090224
3ee552
3ee552
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 20081224-3
3ee552
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
3ee552
3ee552
* Mon Feb 23 2009 Nicolas Mailhot <nim at fedoraproject dot org>
3ee552
- 20081224-2
3ee552
— global-ization
3ee552
3ee552
* Fri Feb 20 2009 Kevin Fenzi <kevin@tummy.com> - 20081224-1
3ee552
- Upgrade to 20081224
3ee552
- Enable python bindings
3ee552
3ee552
* Wed Jan 21 2009 Kevin Fenzi <kevin@tummy.com> - 20081215-4
3ee552
- Add python-devel to BuildRequires
3ee552
3ee552
* Tue Dec 23 2008 Kevin Fenzi <kevin@tummy.com> - 20081215-3
3ee552
- Add patch to fix buffer overflow. Fixes 471538
3ee552
3ee552
* Wed Dec 17 2008 Kevin Fenzi <kevin@tummy.com> - 20081215-2
3ee552
- Add libspiro-devel to build with spiro
3ee552
3ee552
* Tue Dec 16 2008 Kevin Fenzi <kevin@tummy.com> - 20081215-1
3ee552
- Upgrade to 20081215
3ee552
- Build with cairo and pango
3ee552
3ee552
* Mon Dec 01 2008 Kevin Fenzi <kevin@tummy.com> - 20081117-1
3ee552
- Upgrade to 20081117
3ee552
3ee552
* Mon Dec 01 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 20080927-2
3ee552
- Rebuild for Python 2.6
3ee552
3ee552
* Sat Nov 08 2008 Nicolas Mailhot <nicolas.mailhot at laposte.net>
3ee552
- 20080927-1
3ee552
☢ quick & dirty version bump to start working on F11 font packages
3ee552
⟲ time to forget about pfaedit
3ee552
⤑ take care of rpmlint warnings
3ee552
3ee552
* Wed Sep 03 2008 Kevin Fenzi <kevin@tummy.com> - 20080828-1
3ee552
- Upgrade to 20080828
3ee552
- Add Requires on autotrace. Fixes 460668
3ee552
- Confirm patch from 459451 is upstream here.
3ee552
3ee552
* Fri May 16 2008 Kevin Fenzi <kevin@tummy.com> - 20080429-1
3ee552
- Upgrade to 20080429
3ee552
3ee552
* Mon Mar 24 2008 Kevin Fenzi <kevin@tummy.com> - 20080309-2
3ee552
- Add mime info for .sfd files. Fixes 240669
3ee552
3ee552
* Mon Mar 17 2008 Kevin Fenzi <kevin@tummy.com> - 20080309-1
3ee552
- Upgrade to 20080309
3ee552
- Fixes bug 437833
3ee552
3ee552
* Mon Mar 03 2008 Kevin Fenzi <kevin@tummy.com> - 20080302-2
3ee552
- Commit new sources
3ee552
3ee552
* Mon Mar 03 2008 Kevin Fenzi <kevin@tummy.com> - 20080302-1
3ee552
- Update to upstream 20080302
3ee552
3ee552
* Sun Mar 02 2008 Kevin Fenzi <kevin@tummy.com> - 20080203-2
3ee552
- Change Requires from htmlview to xdg-utils (bz 312691)
3ee552
3ee552
* Sat Mar 01 2008 Kevin Fenzi <kevin@tummy.com> - 20080203-1
3ee552
- Update to upstream 20080203
3ee552
- Add new devel subpackage
3ee552
3ee552
* Sun Dec 02 2007 Roozbeh Pournader <roozbeh@farsiweb.info> - 20071110-1
3ee552
- Update to upstream 20071110
3ee552
3ee552
* Sun Oct 21 2007 Nicolas Mailhot <nicolas.mailhot at laposte.net>
3ee552
☢ 20071002-1
3ee552
⚠ quick & dirty version bump to start working on F9 font packages
3ee552
3ee552
* Sun Aug 26 2007 Kevin Fenzi <kevin@tummy.com> - 20070511-2
3ee552
- Rebuild for BuildID
3ee552
3ee552
* Thu Jun  7 2007 Kevin Fenzi <kevin@tummy.com> - 20070511-1
3ee552
- Update to upstream 20070511
3ee552
- Remove some leftover CVS bits
3ee552
- Remove useless .pc file.
3ee552
3ee552
* Fri Dec 22 2006 Roozbeh Pournader <roozbeh@farsiweb.info> - 20061220-1
3ee552
- Update to upstream 20061220
3ee552
3ee552
* Sat Dec 09 2006 Roozbeh Pournader <roozbeh@farsiweb.info> - 20061025-2
3ee552
- Add patch to fix fsSelection problem with DejaVu ExtraLight
3ee552
3ee552
* Sat Nov 25 2006 Roozbeh Pournader <roozbeh@farsiweb.info> - 20061025-1
3ee552
- Update to 20061025
3ee552
- Patch to correct usFirstCharIndex (George Williams)
3ee552
3ee552
* Fri Oct 20 2006 Kevin Fenzi <kevin@tummy.com> - 20061019-1
3ee552
- Update to 20061019
3ee552
3ee552
* Thu Oct 05 2006 Christian Iseli <Christian.Iseli@licr.org> 20060822-2
3ee552
- rebuilt for unwind info generation, broken in gcc-4.1.1-21
3ee552
3ee552
* Thu Sep 21 2006 Kevin Fenzi <kevin@tummy.com> - 20060822-1
3ee552
- Update to 20060822
3ee552
- Remove unneeded patch
3ee552
- Add flag to compile right with giflib
3ee552
3ee552
* Sun Jun 18 2006 Roozbeh Pournader <roozbeh@farsiweb.info> - 20060125-7
3ee552
- Add BuildRequires on gettext, to make sure the package builds in minimal
3ee552
  mock environments
3ee552
3ee552
* Mon Feb 13 2006 Roozbeh Pournader <roozbeh@farsiweb.info> - 20060125-6
3ee552
- Rebuild for Fedora Extras 5
3ee552
3ee552
* Sun Feb 12 2006 Roozbeh Pournader <roozbeh@farsiweb.info> - 20060125-5
3ee552
- Add patch to fix crash (#181052, George Williams)
3ee552
3ee552
* Wed Feb 01 2006 Roozbeh Pournader <roozbeh@farsiweb.info> - 20060125-4
3ee552
- Add "BuildRequires:" on libXt-devel and xorg-x11-proto-devel
3ee552
3ee552
* Wed Feb 01 2006 Roozbeh Pournader <roozbeh@farsiweb.info> - 20060125-3
3ee552
- Really remove XFree86-devel BuildReq
3ee552
3ee552
* Wed Feb 01 2006 Roozbeh Pournader <roozbeh@farsiweb.info> - 20060125-2
3ee552
- Remove XFree86-devel BuildReq
3ee552
3ee552
* Wed Feb 01 2006 Roozbeh Pournader <roozbeh@farsiweb.info> - 20060125-1
3ee552
- Update to 20060125 (bug #170177)
3ee552
- Update docs to 20060114
3ee552
- Change versioning to reflect upstream and follow packaging guidelines
3ee552
- Provide pfaedit (bug #176548)
3ee552
- Use %%{?dist} tag (bug #176472)
3ee552
- Add localizations
3ee552
- No need to remove CVS subdir: fixed upstream
3ee552
- No need to covert man pages to UTF-8: fixed upstream
3ee552
- Fixed DOS line terminators
3ee552
- Use parallel build
3ee552
3ee552
* Sat Jul 30 2005 Owen Taylor <otaylor@redhat.com> - 0.0-2.20050729.fc4
3ee552
- Update to 20050729
3ee552
- Remove .docview patch, looking for HTMLview is upstream so no longer needed
3ee552
3ee552
* Tue May 10 2005 Owen Taylor <otaylor@redhat.com> - 0.0-2.20050502.fc4
3ee552
- Update to 20050502
3ee552
- Fix the build to look for the docs where we install them
3ee552
3ee552
* Sat Mar 19 2005 Owen Taylor <otaylor@redhat.com> - 0.0-2.20050310
3ee552
- Update to 20050310
3ee552
3ee552
* Sat Jan 29 2005 Ville Skyttä <ville.skytta at iki.fi> - 0:0.0-2.20041231
3ee552
- Avoid RPATH.
3ee552
- Convert man pages to UTF-8.
3ee552
- Fix pkgconfig and doc file permissions.
3ee552
- Use updated upstream icon.
3ee552
- Don't include installation documentation.
3ee552
3ee552
* Mon Jan 17 2005 Marius L. Jøhndal <mariuslj at ifi.uio.no> - 0:0.0-1.20041231
3ee552
- Updated to 20041231.
3ee552
3ee552
* Thu Oct 28 2004 Marius L. Jøhndal <mariuslj at ifi.uio.no> - 0:0.0-0.fdr.1.20041014
3ee552
- Updated to 20041014.
3ee552
3ee552
* Sun Sep 19 2004 Marius L. Jøhndal <mariuslj at ifi.uio.no> - 0:0.0-0.fdr.1.20040824
3ee552
- Updated to 20040824.
3ee552
3ee552
* Wed Jun 30 2004 Marius L. Jøhndal <mariuslj at ifi.uio.no> - 0:0.0-0.fdr.1.20040618
3ee552
- Updated to 20040618.
3ee552
3ee552
* Wed Jun  2 2004 Marius L. Jøhndal <mariuslj at ifi.uio.no> - 0:0.0-0.fdr.1.20040601
3ee552
- Updated to 20040601.
3ee552
3ee552
* Tue May 11 2004 Marius L. Jøhndal <mariuslj at ifi.uio.no> - 0:0.0-0.fdr.1.20040509
3ee552
- Updated to 20040509.
3ee552
3ee552
* Thu Apr 15 2004 Marius L. Jøhndal <mariuslj at ifi.uio.no> - 0:0.0-0.fdr.1.20040410
3ee552
- Updated to 20040410.
3ee552
3ee552
* Sun Mar 28 2004 Marius L. Jøhndal <mariuslj at ifi.uio.no> - 0:0.0-0.fdr.1.20040321
3ee552
- Updated to 20040321.
3ee552
- Changed package name from pfaedit to fontforge.
3ee552
- Added Obsoletes: pfaedit.
3ee552
3ee552
* Mon Mar 15 2004 Marius L. Jøhndal <mariuslj at ifi.uio.no> - 0:0.0-0.fdr.8.040310
3ee552
- Updated to 040310.
3ee552
3ee552
* Sat Feb  7 2004 Marius L. Jøhndal <mariuslj at ifi.uio.no> 0:0.0-0.fdr.8.040204
3ee552
- Updated to 040204.
3ee552
- Removed some unnecessary directory ownerships (bug 1061).
3ee552
3ee552
* Sun Jan 25 2004 Marius L. Jøhndal <mariuslj at ifi.uio.no> 0:0.0-0.fdr.8.040111
3ee552
- Updated documentation to 040111.
3ee552
3ee552
* Sun Jan 11 2004 Marius L. Jøhndal <mariuslj at ifi.uio.no> 0:0.0-0.fdr.7.040111
3ee552
- Updated to 040111.
3ee552
- Converted spec file to UTF-8.
3ee552
3ee552
* Wed Jan  7 2004 Marius L. Jøhndal <mariuslj at ifi.uio.no> 0:0.0-0.fdr.7.040102
3ee552
- Updated to 040102.
3ee552
3ee552
* Sat Dec 13 2003 Marius L. Jøhndal <mariuslj at ifi.uio.no> 0:0.0-0.fdr.7.031210
3ee552
- Updated to 031210.
3ee552
3ee552
* Sat Dec 13 2003 Marius L. Jøhndal <mariuslj at ifi.uio.no> 0:0.0-0.fdr.7.031205
3ee552
- Updated to 031205.
3ee552
3ee552
* Fri Nov 28 2003 Marius L. Jøhndal <mariuslj at ifi.uio.no> 0:0.0-0.fdr.7.031123
3ee552
- Updated to 031123.
3ee552
3ee552
* Wed Nov 12 2003 Marius L. Jøhndal <mariuslj at ifi.uio.no> 0:0.0-0.fdr.6.031110
3ee552
- Updated to 031110.
3ee552
- Eliminated build patch; incorporated in upstream tarball.
3ee552
- Re-added documentation tarball since no longer included in source tarball.
3ee552
- Added pfaicon.gif as Packaging directory disappeared from tarball.
3ee552
3ee552
* Mon Oct 13 2003 Marius L. Jøhndal <mariuslj at ifi.uio.no> 0:0.0-0.fdr.5.031012
3ee552
- Refetched sources since upstream suddenly decided to change them (bug 497).
3ee552
3ee552
* Mon Oct 13 2003 Marius L. Jøhndal <mariuslj at ifi.uio.no> 0:0.0-0.fdr.4.031012
3ee552
- Build req libuninameslist-devel instead of libuninameslist.
3ee552
3ee552
* Mon Oct 13 2003 Marius L. Jøhndal <mariuslj at ifi.uio.no> 0:0.0-0.fdr.3.031012
3ee552
- Fixed non-standard value in desktop file (bug 497).
3ee552
- Added libuninameslist support.
3ee552
- Removed separate documentation tarball; mostly identical to those in source (bug 497).
3ee552
3ee552
* Mon Oct 13 2003 Marius L. Jøhndal <mariuslj at ifi.uio.no> 0:0.0-0.fdr.2.031012
3ee552
- Patched to use dynamic linking instead of dlopen'ing (bug 497).
3ee552
- Patched to use htmlview and use installed documentation (bug 497).
3ee552
- Added build req libxml2-devel (bug 497).
3ee552
- Disabled parallell make (bug 497).
3ee552
- Added desktop entry (bug 497).
3ee552
3ee552
* Mon Oct 13 2003 Marius L. Jøhndal <mariuslj at ifi.uio.no> 0:0.0-0.fdr.1.031012
3ee552
- Updated to 031012.
3ee552
- Removed .so links.
3ee552
- Removed empty AUTHORS file.
3ee552
- Removed the samples subpackage.
3ee552
3ee552
* Mon Sep 22 2003 Marius L. Jøhndal <mariuslj at ifi.uio.no> 0:0.0-0.fdr.1.030904
3ee552
- Updated to 030904.
3ee552
3ee552
* Wed Sep  3 2003 Marius L. Jøhndal <mariuslj at ifi.uio.no> 0:0.0-0.fdr.1.030831
3ee552
- Updated to 030831.
3ee552
3ee552
* Tue Aug 12 2003 Marius L. Jøhndal <mariuslj at ifi.uio.no> 0:0.0-0.fdr.1.030803
3ee552
- Updated to 030803.
3ee552
3ee552
* Mon Jul 21 2003 Marius L. Jøhndal <mariuslj at ifi.uio.no> 0:0.0-0.fdr.3.030702
3ee552
- Added font samples.
3ee552
- Added ldconfig to post and postun.
3ee552
- Added samples subpackage.
3ee552
3ee552
* Sun Jul  6 2003 Marius L. Jøhndal <mariuslj at ifi.uio.no> 0:0.0-0.fdr.2.030702
3ee552
- Removed README-MS and README-MacOSX from documentation.
3ee552
3ee552
* Thu Jul  3 2003 Marius L. Jøhndal <mariuslj at ifi.uio.no> 0:0.0-0.fdr.1.030512
3ee552
- Initial RPM release based on Mandrake's PfaEdit-030512 RPM.