Blame SPECS/fltk.spec

78b88a
#global		snap r9671
78b88a
78b88a
# TODO:
78b88a
# *  port .spec to use cmake
78b88a
78b88a
# trim changelog included in binary rpms
78b88a
%global _changelog_trimtime %(date +%s -d "1 year ago")
78b88a
78b88a
Summary:	C++ user interface toolkit
78b88a
Name:		fltk
78b88a
Version:	1.3.4
78b88a
Release:	5%{?dist}
78b88a
78b88a
# see COPYING (or http://www.fltk.org/COPYING.php ) for exceptions details
78b88a
License:	LGPLv2+ with exceptions	
78b88a
Group:		System Environment/Libraries
78b88a
URL:		http://www.fltk.org/
78b88a
%if "%{?snap:1}" == "1"
78b88a
Source0:        http://ftp.easysw.com/pub/fltk/snapshots/fltk-1.3.x-%{snap}.tar.bz2
78b88a
%else
78b88a
Source0:        http://fltk.org/pub/fltk/1.3.4/fltk-1.3.4-1-source.tar.gz
78b88a
%endif
78b88a
78b88a
Source1: fltk-config.sh
78b88a
78b88a
## FIXME/TODO: upstream these asap -- Rex
78b88a
# add lib64 support, drop extraneous libs (bug #708185) and ldflags (#1112930)
78b88a
Patch1:        	fltk-1.3.4-fltk_config.patch
78b88a
78b88a
## upstream patches
78b88a
78b88a
## upstreamable patches
78b88a
Patch100: fltk-1.3.4-x-fluid_mimetype.patch
78b88a
78b88a
BuildRequires: desktop-file-utils
78b88a
BuildRequires: libjpeg-devel
78b88a
BuildRequires: pkgconfig(libpng)
78b88a
BuildRequires: pkgconfig(gl) pkgconfig(glu) 
78b88a
BuildRequires: pkgconfig(ice)
78b88a
BuildRequires: pkgconfig(sm) 
78b88a
BuildRequires: pkgconfig(xext) pkgconfig(xinerama) pkgconfig(xft) pkgconfig(xt) pkgconfig(x11) 
78b88a
BuildRequires: pkgconfig(xcursor)
78b88a
BuildRequires: pkgconfig(xproto)
78b88a
BuildRequires: xorg-x11-utils
78b88a
BuildRequires: zlib-devel
78b88a
BuildRequires: autoconf
78b88a
78b88a
%description
78b88a
FLTK (pronounced "fulltick") is a cross-platform C++ GUI toolkit.
78b88a
It provides modern GUI functionality without the bloat, and supports
78b88a
3D graphics via OpenGL and its built-in GLUT emulation.
78b88a
78b88a
78b88a
%package devel
78b88a
Summary: Development files for %{name}
78b88a
Requires: %{name}%{?_isa} = %{version}-%{release}
78b88a
Requires: libstdc++-devel
78b88a
Requires: pkgconfig(gl) pkgconfig(glu)
78b88a
Requires: pkgconfig(ice) pkgconfig(sm)
78b88a
Requires: pkgconfig(xft) pkgconfig(xt) pkgconfig(x11)
78b88a
%description devel
78b88a
%{summary}.
78b88a
78b88a
%package static
78b88a
Summary: Static libraries for %{name}
78b88a
Requires: %{name}-devel = %{version}-%{release}
78b88a
%description static
78b88a
%{summary}.
78b88a
78b88a
%package fluid
78b88a
Summary: Fast Light User Interface Designer
78b88a
Requires: %{name}%{?_isa} = %{version}-%{release}
78b88a
Requires: %{name}-devel
78b88a
%description fluid
78b88a
%{summary}, an interactive GUI designer for %{name}. 
78b88a
78b88a
78b88a
%prep
78b88a
%if 0%{?snap:1}
78b88a
%setup -q -n fltk-1.3.x-%{snap}
78b88a
%else
78b88a
%setup -q  -n fltk-%{version}-1
78b88a
%endif
78b88a
78b88a
%patch1 -p1 -b .fltk_config
78b88a
%patch100 -p1 -b .x-fluid_mimetype
78b88a
78b88a
# verbose build output
78b88a
sed -i.silent '\,^.SILENT:,d' makeinclude.in
78b88a
autoconf
78b88a
78b88a
78b88a
%build
78b88a
# set DSOFLAGS too, used to link shlibs (LDFLAGS used only for static libs)
78b88a
%{?__global_ldflags:DSOFLAGS="%{__global_ldflags}" ; export DSOFLAGS}
78b88a
78b88a
%configure \
78b88a
  --with-links \
78b88a
  --with-optim="%{optflags}" \
78b88a
  --disable-localjpeg \
78b88a
  --disable-localzlib \
78b88a
  --disable-localpng \
78b88a
  --enable-shared \
78b88a
  --enable-threads \
78b88a
  --enable-xdbe \
78b88a
  --enable-xinerama \
78b88a
  --enable-xft
78b88a
78b88a
make %{?_smp_mflags}
78b88a
78b88a
78b88a
%install
78b88a
make install DESTDIR=$RPM_BUILD_ROOT
78b88a
make install-linux -C fluid DESTDIR=$RPM_BUILD_ROOT
78b88a
78b88a
# we only apply this hack to multilib arch's
78b88a
%ifarch x86_64 %{ix86} ppc64 ppc s390x s390 sparc64 sparc
78b88a
%global arch %(uname -i 2>/dev/null || echo undefined)
78b88a
mv $RPM_BUILD_ROOT%{_bindir}/fltk-config \
78b88a
   $RPM_BUILD_ROOT%{_bindir}/fltk-config-%{arch}
78b88a
install -p -m755 -D %{SOURCE1} $RPM_BUILD_ROOT%{_bindir}/fltk-config
78b88a
%endif
78b88a
78b88a
# docs
78b88a
rm -rf __docs
78b88a
mv $RPM_BUILD_ROOT%{_docdir}/fltk __docs
78b88a
78b88a
## unpackaged files
78b88a
# errant docs
78b88a
rm -rv $RPM_BUILD_ROOT%{_mandir}/cat*
78b88a
78b88a
78b88a
%check
78b88a
desktop-file-validate $RPM_BUILD_ROOT%{_datadir}/applications/fluid.desktop
78b88a
78b88a
78b88a
%post -p /sbin/ldconfig
78b88a
%postun -p /sbin/ldconfig
78b88a
78b88a
%files
78b88a
%doc ANNOUNCEMENT CHANGES CREDITS README
78b88a
%license COPYING
78b88a
%{_libdir}/libfltk.so.1.3
78b88a
%{_libdir}/libfltk_forms.so.1.3
78b88a
%{_libdir}/libfltk_gl.so.1.3
78b88a
%{_libdir}/libfltk_images.so.1.3
78b88a
78b88a
%files devel
78b88a
%doc __docs/*
78b88a
%{_bindir}/fltk-config
78b88a
%{?arch:%{_bindir}/fltk-config-%{arch}}
78b88a
%{_includedir}/FL/
78b88a
%{_includedir}/Fl
78b88a
%{_libdir}/libfltk.so
78b88a
%{_libdir}/libfltk_forms.so
78b88a
%{_libdir}/libfltk_gl.so
78b88a
%{_libdir}/libfltk_images.so
78b88a
%{_mandir}/man1/fltk-config.1*
78b88a
%{_mandir}/man3/fltk.3*
78b88a
78b88a
%files static
78b88a
%{_libdir}/libfltk.a
78b88a
%{_libdir}/libfltk_forms.a
78b88a
%{_libdir}/libfltk_gl.a
78b88a
%{_libdir}/libfltk_images.a
78b88a
78b88a
%files fluid
78b88a
%{_bindir}/fluid
78b88a
%{_mandir}/man1/fluid.1*
78b88a
%{_datadir}/applications/fluid.desktop
78b88a
%{_datadir}/icons/hicolor/*/*/*
78b88a
78b88a
78b88a
%changelog
78b88a
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.4-5
78b88a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
78b88a
78b88a
* Thu Jan 11 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.3.4-4
78b88a
- Remove obsolete scriptlets
78b88a
78b88a
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.4-3
78b88a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
78b88a
78b88a
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.4-2
78b88a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
78b88a
78b88a
* Sat Mar 04 2017 Rex Dieter <rdieter@fedoraproject.org> - 1.3.4-1
78b88a
- 1.3.4 (#1385984)
78b88a
78b88a
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.3-9
78b88a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
78b88a
78b88a
* Mon Jun 27 2016 Rex Dieter <rdieter@fedoraproject.org> - 1.3.3-8
78b88a
- fltk_config.patch: remove @LARGEFILE@ @PTHREAD_FLAGS@ too (#1350069)
78b88a
78b88a
* Sun Jun 26 2016 Rex Dieter <rdieter@fedoraproject.org> - 1.3.3-7
78b88a
- -devel: Requires: pkgconfig(gl) pkgconfig(glu)
78b88a
- cleaner DSOFLAGS
78b88a
- fltk_config.patch: imposes internal build flags on the user (#1350069)
78b88a
78b88a
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.3-6
78b88a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
78b88a
78b88a
* Mon Aug 17 2015 Adam Jackson <ajax@redhat.com> 1.3.3-5
78b88a
- For whatever reason fltk thinks it's spelled DSOFLAGS not LDFLAGS, so set
78b88a
  that when building so hardening takes effect
78b88a
78b88a
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.3-4
78b88a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
78b88a
78b88a
* Wed May 06 2015 Rex Dieter <rdieter@fedoraproject.org> 1.3.3-3
78b88a
- rebuild (gcc5)
78b88a
78b88a
* Wed Feb 18 2015 Rex Dieter <rdieter@fedoraproject.org> 1.3.3-2
78b88a
- pull in upstream fixes for undefined symbols
78b88a
78b88a
* Fri Feb 13 2015 Rex Dieter <rdieter@fedoraproject.org> 1.3.3-1
78b88a
- 1.3.3
78b88a
78b88a
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.2-7
78b88a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
78b88a
78b88a
* Wed Jun 25 2014 Rex Dieter <rdieter@fedoraproject.org> 1.3.2-6
78b88a
- fltk-config transmits wrong ldflags (#1112930)
78b88a
78b88a
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.2-5
78b88a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
78b88a
78b88a
* Mon Feb 24 2014 Rex Dieter <rdieter@fedoraproject.org> 1.3.2-4
78b88a
- refresh clipboard patch (#920573)
78b88a
78b88a
* Thu Jan 23 2014 jchaloup <jchaloup@redhat.com> - 1.3.2-3
78b88a
- autoconfig moved from build to prep section
78b88a
78b88a
* Thu Jan 16 2014 Petr Hracek <phracek@redhat.com> - 1.3.2-2
78b88a
- fltk is not build properly (#1048857)
78b88a
78b88a
* Mon Aug 26 2013 Rex Dieter <rdieter@fedoraproject.org> 1.3.2-1
78b88a
- fltk-1.3.2
78b88a
78b88a
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.0-11
78b88a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
78b88a
78b88a
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.0-10
78b88a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
78b88a
78b88a
* Fri Jan 18 2013 Adam Tkac <atkac redhat com> - 1.3.0-9
78b88a
- rebuild due to "jpeg8-ABI" feature drop
78b88a
78b88a
* Tue Dec 04 2012 Adam Tkac <atkac redhat com> - 1.3.0-8
78b88a
- fix ABI breakage caused by fltk-1_v4.3.x-cursor.patch (#883026)
78b88a
78b88a
* Thu Nov 29 2012 Adam Tkac <atkac redhat com> - 1.3.0-7
78b88a
- add xcursor BR
78b88a
78b88a
* Wed Aug 22 2012 Adam Tkac <atkac redhat com> - 1.3.0-6
78b88a
- update to 1.3.x snap r9671
78b88a
- add some not-yet-accepted patches needed by tigervnc
78b88a
78b88a
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.0-5
78b88a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
78b88a
78b88a
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.0-4
78b88a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
78b88a
78b88a
* Mon Nov 07 2011 Rex Dieter <rdieter@fedoraproject.org> 1.3.0-3
78b88a
- rebuild (libpng)
78b88a
- pkgconfig-style deps
78b88a
78b88a
* Thu Aug 25 2011 Rex Dieter <rdieter@fedoraproject.org> 1.3.0-2
78b88a
- fltk-config inconsistency on ARM (#733421)
78b88a
78b88a
* Fri Jun 24 2011 Rex Dieter <rdieter@fedoraproject.org> 1.3.0-1
78b88a
- 1.3.0 (final)
78b88a
- --with-links
78b88a
78b88a
* Fri May 27 2011 Adam Tkac <atkac redhat com> - 1.3.0-0.2.rc5
78b88a
- fltk-config: don't emit unneeded -l<library> flags (#708185)
78b88a
78b88a
* Wed May 25 2011 Adam Tkac <atkac redhat com> - 1.3.0-0.1.rc5
78b88a
- update to 1.3.0rc5
78b88a
- patches no longer needed
78b88a
  - fltk-1.1.9-test.patch
78b88a
  - fltk-1.1.9-rpath.patch
78b88a
  - fltk-1.1.10-pkgconfig_xft.patch
78b88a
  - fltk-1.1.10-fluid_target.patch
78b88a
- regenerated other patches to match current source
78b88a
78b88a
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.10-6
78b88a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
78b88a
78b88a
* Tue Dec 07 2010 Rex Dieter <rdieter@fedoraproject.org> - 1.1.10-5
78b88a
- FTBFS fltk-1.1.10-4.fc15: ImplicitDSOLinking (#660884)
78b88a
78b88a
* Wed Sep 29 2010 jkeating - 1.1.10-4
78b88a
- Rebuilt for gcc bug 634757
78b88a
78b88a
* Mon Sep 20 2010 Rex Dieter <rdieter@fedoraproject.org> - 1.1.10-3
78b88a
- verbose build output (hint from mschwendt)
78b88a
78b88a
* Tue Sep 07 2010 Rex Dieter <rdieter@fedoraproject.org> - 1.1.10-2
78b88a
- drop BR: man , fixes FTBFS (#631212)
78b88a
78b88a
* Sun Feb 14 2010 Rex Dieter <rdieter@fedoraproject.org> - 1.1.10-1
78b88a
- fltk-1.1.10
78b88a
- FTBFS fltk-1.1.10-0.1.rc3.fc13: ImplicitDSOLinking (#564877)
78b88a
78b88a
* Tue Dec 08 2009 Rex Dieter <rdieter@fedoraproject.org> - 1.1.10-0.1.rc3
78b88a
- fltk-1.1.10rc3
78b88a
78b88a
* Mon Dec 07 2009 Rex Dieter <rdieter@fedoraproject.org> - 1.1.9-7
78b88a
- real -static subpkg (#545145)
78b88a
78b88a
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.9-6
78b88a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
78b88a
78b88a
* Sun Jun 28 2009 Rex Dieter <rdieter@fedoraproject.org> - 1.1.9-5
78b88a
- fltk-fluid duplicate .desktop file (#508553)
78b88a
- optimize scriptlets
78b88a
78b88a
* Wed May 13 2009 Rex Dieter <rdieter@fedoraproject.org> - 1.1.9-4
78b88a
- unbreak fltk-config --ldstaticflags (#500201)
78b88a
- (another?) gcc44 patch
78b88a
- -devel: +Provides: %%name-static
78b88a
- fix multiarch conflicts (#341141)
78b88a
78b88a
* Wed Mar 04 2009 Caolán McNamara <caolanm@redhat.com> - 1.1.9-3
78b88a
- fix uses of strchr wrt. constness
78b88a
78b88a
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.9-2
78b88a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
78b88a
78b88a
* Wed Oct 01 2008 Rex Dieter <rdieter@fedoraproject.org> 1.1.9-1
78b88a
- fltk-1.1.9
78b88a
78b88a
* Sat Mar 29 2008 Rex Dieter <rdieter@fedoraproject.org> 1.1.8-1
78b88a
- fltk-1.1.8 (final)
78b88a
78b88a
* Tue Feb 19 2008 Rex Dieter <rdieter@fedoraproject.org> 1.1.8-0.8.r6027
78b88a
- fltk-1.1.x-r6027
78b88a
78b88a
* Mon Feb 11 2008 Rex Dieter <rdieter@fedoraproject.org> 1.1.8-0.7.r5989 
78b88a
- respin (gcc43)
78b88a
78b88a
* Wed Dec 12 2007 Rex Dieter <rdieter[AT]fedoraproject.org> 1.1.8-0.6.r5989
78b88a
- --enable-largefile
78b88a
- fltk-1.1.x-r5989 snapshot (1.1.8 pre-release)
78b88a
78b88a
* Mon Aug 20 2007 Rex Dieter <rdieter[AT]fedoraproject.org> 1.1.8-0.5.r5750
78b88a
- License: LGPLv2+ with exceptions
78b88a
78b88a
* Sat Aug 11 2007 Rex Dieter <rdieter[AT]fedoraproject.org> 1.1.8-0.4.r5750
78b88a
- License: LGPLv2+ (with exceptions)
78b88a
78b88a
* Sun Apr 29 2007 Rex Dieter <rdieter[AT]fedoraproject.org> 1.1.8-0.3.r5750
78b88a
- *really* fix --rpath issue, using non-empty patch this time (#238284)
78b88a
78b88a
* Sun Apr 29 2007 Rex Dieter <rdieter[AT]fedoraproject.org> 1.1.8-0.2.r5750
78b88a
- nuke --rpath (#238284)
78b88a
78b88a
* Thu Apr 05 2007 Rex Dieter <rdieter[AT]fedoraproject.org> 1.1.8-0.1.r5750
78b88a
- fltk-1.1.x-r5750 snapshot (1.1.8 pre-release)
78b88a
- --enable-xinerama
78b88a
- patch for undefined symbols in libfltk_gl
78b88a
78b88a
* Wed Apr  4 2007 Thomas Fitzsimmons <fitzsim@redhat.com> - 1.1.7-9.r5555
78b88a
- Always apply fltk-config patch (#199656)
78b88a
- Update fltk-1.1.7-config.patch
78b88a
78b88a
* Wed Dec 13 2006 Rex Dieter <rexdieter[AT]users.sf.net> 1.1.7-8.r5555
78b88a
- more 64bit hackage to workaround broken Makefile logic (#219348)
78b88a
78b88a
* Wed Dec 13 2006 Rex Dieter <rexdieter[AT]users.sf.net> 1.1.7-7.r5555
78b88a
- fltk-1.1.x-r5555 snapshot, for 64bit issues (#219348)
78b88a
- restore static libs (they're tightly coupled with fltk-config)
78b88a
- cleanup %%description's
78b88a
78b88a
* Mon Dec 11 2006 Rex Dieter <rexdieter[AT]users.sf.net> 1.1.7-6
78b88a
- move tests to %%check section
78b88a
78b88a
* Mon Dec 11 2006 Rex Dieter <rexdieter[AT]users.sf.net> 1.1.7-5
78b88a
- use included icon/.desktop files
78b88a
- fix up fltk-config (#199656)
78b88a
78b88a
* Mon Dec 11 2006 Rex Dieter <rexdieter[AT]users.sf.net> 1.1.7-3
78b88a
- follow icon spec
78b88a
- omit static libs
78b88a
78b88a
* Wed Sep 06 2006 Michael J. Knox <michael[AT]knox.net.nz> - 1.1.7-2
78b88a
- rebuild for FC6
78b88a
78b88a
* Mon Feb 13 2006 Ignacio Vazquez-Abrams <ivazquez@ivazquez.net> 1.1.7-1
78b88a
- Upstream update
78b88a
78b88a
* Thu Nov 17 2005 Ignacio Vazquez-Abrams <ivazquez@ivazquez.net> 1.1.6-4
78b88a
- Fixed BR and -devel Requires for modular X
78b88a
78b88a
* Sun Nov 13 2005 Ignacio Vazquez-Abrams <ivazquez@ivazquez.net> 1.1.6-3
78b88a
- Update BuildRequires as well
78b88a
78b88a
* Sun Nov 13 2005 Ignacio Vazquez-Abrams <ivazquez@ivazquez.net> 1.1.6-2
78b88a
- Update Requires for -devel
78b88a
78b88a
* Thu Oct 27 2005 Ignacio Vazquez-Abrams <ivazquez@ivazquez.net> 1.1.6-1
78b88a
- Upstream update
78b88a
78b88a
* Thu Aug 18 2005 Ignacio Vazquez-Abrams <ivazquez@ivazquez.net> 1.1.4-10
78b88a
- Fixed BR/Requires for x86_64
78b88a
78b88a
* Wed Apr  6 2005 Michael Schwendt <mschwendt[AT]users.sf.net>
78b88a
- rebuilt
78b88a
78b88a
* Thu Nov 20 2003 Dams <anvil[AT]livna.org> 0:1.1.4-0.fdr.8
78b88a
- Hopefully fixed Xft flags for rh80
78b88a
78b88a
* Thu Nov 20 2003 Dams <anvil[AT]livna.org> 0:1.1.4-0.fdr.7
78b88a
- Fixed typo
78b88a
78b88a
* Thu Nov 20 2003 Dams <anvil[AT]livna.org> 0:1.1.4-0.fdr.6
78b88a
- Added xft.pc build dependency
78b88a
- Added BuildReq:man
78b88a
78b88a
* Sun Nov  9 2003 Ville Skyttä <ville.skytta@iki.fi> 0:1.1.4-0.fdr.4
78b88a
- Spec file cleanup
78b88a
- Enabled xft and threads
78b88a
78b88a
* Tue Oct 28 2003 Dams <anvil[AT]livna.org> - 0:1.1.4-0.fdr.3
78b88a
- Added missing symlink in includedir
78b88a
78b88a
* Wed Oct  1 2003 Dams <anvil[AT]livna.org> 0:1.1.4-0.fdr.2
78b88a
- Removed comment after scriptlets
78b88a
78b88a
* Wed Oct  1 2003 Dams <anvil[AT]livna.org> 0:1.1.4-0.fdr.1
78b88a
- Updated to final 1.1.4
78b88a
78b88a
* Wed Sep 24 2003 Dams <anvil[AT]livna.org> 0:1.1.4-0.fdr.0.4.rc1
78b88a
- Fixed documentation path in configure
78b88a
78b88a
* Fri Aug 29 2003 Dams <anvil[AT]livna.org> 0:1.1.4-0.fdr.0.3.rc1
78b88a
- Fixed typo in desktop entry
78b88a
- Added missing BuildRequires ImageMagick and desktop-file-utils
78b88a
78b88a
* Fri Aug 29 2003 Dams <anvil[AT]livna.org> 0:1.1.4-0.fdr.0.2.rc1
78b88a
- Moved fluid to its own package
78b88a
- Added missing Requires for devel package
78b88a
78b88a
* Sat Aug 16 2003 Dams <anvil[AT]livna.org>
78b88a
- Initial build.