Blame SPECS/fltk.spec

1332fc
#global		snap r9671
1332fc
1332fc
# trim changelog included in binary rpms
1332fc
%global _changelog_trimtime %(date +%s -d "1 year ago")
1332fc
1332fc
Summary:	C++ user interface toolkit
1332fc
Name:		fltk
1332fc
Version:	1.3.8
1332fc
Release:	1%{?dist}
1332fc
1332fc
# see COPYING (or http://www.fltk.org/COPYING.php ) for exceptions details
1332fc
License:	LGPLv2+ with exceptions	
1332fc
URL:		http://www.fltk.org/
1332fc
1332fc
%if "%{?snap:1}" == "1"
1332fc
Source0:        http://ftp.easysw.com/pub/fltk/snapshots/fltk-1.3.x-%{snap}.tar.bz2
1332fc
%else
1332fc
Source0:        http://fltk.org/pub/%{name}/%{version}/%{name}-%{version}-source.tar.gz
1332fc
%endif
1332fc
1332fc
Source1:        fltk-config.sh
1332fc
1332fc
Patch0:         fltk-cmake.patch
1332fc
# add lib64 support, drop extraneous libs (bug #708185) and ldflags (#1112930)
1332fc
Patch1:         fltk-1.3.4-fltk_config.patch
1332fc
1332fc
BuildRequires: gcc-c++
1332fc
BuildRequires: cmake
1332fc
BuildRequires: desktop-file-utils
1332fc
BuildRequires: doxygen
1332fc
BuildRequires: texlive-latex
1332fc
# fltk bug with pdf generation, investigate later
1332fc
#BuildRequires: texlive-epstopdf
1332fc
BuildRequires: pkgconfig(libjpeg)
1332fc
BuildRequires: pkgconfig(libpng)
1332fc
BuildRequires: pkgconfig(gl) pkgconfig(glu)
1332fc
BuildRequires: pkgconfig(ice)
1332fc
BuildRequires: pkgconfig(sm)
1332fc
BuildRequires: pkgconfig(xext) pkgconfig(xinerama) pkgconfig(xft) pkgconfig(xt) pkgconfig(x11)
1332fc
BuildRequires: pkgconfig(xcursor)
1332fc
BuildRequires: pkgconfig(xproto)
1332fc
BuildRequires: pkgconfig(zlib)
1332fc
BuildRequires: make
1332fc
1332fc
%description
1332fc
FLTK (pronounced "fulltick") is a cross-platform C++ GUI toolkit.
1332fc
It provides modern GUI functionality without the bloat, and supports
1332fc
3D graphics via OpenGL and its built-in GLUT emulation.
1332fc
1332fc
1332fc
%package devel
1332fc
Summary: Development files for %{name}
1332fc
Requires: %{name}%{?_isa} = %{version}-%{release}
1332fc
Requires: libstdc++-devel
1332fc
Requires: pkgconfig(fontconfig)
1332fc
Requires: pkgconfig(gl) pkgconfig(glu)
1332fc
Requires: pkgconfig(ice) pkgconfig(sm)
1332fc
Requires: pkgconfig(xft) pkgconfig(xt) pkgconfig(x11)
1332fc
Requires: pkgconfig(libjpeg)
1332fc
Requires: pkgconfig(libpng)
1332fc
Requires: pkgconfig(zlib)
1332fc
%description devel
1332fc
%{summary}.
1332fc
1332fc
%package static
1332fc
Summary: Static libraries for %{name}
1332fc
Requires: %{name}-devel = %{version}-%{release}
1332fc
%description static
1332fc
%{summary}.
1332fc
1332fc
%package fluid
1332fc
Summary: Fast Light User Interface Designer
1332fc
Requires: %{name}%{?_isa} = %{version}-%{release}
1332fc
Requires: %{name}-devel
1332fc
%description fluid
1332fc
%{summary}, an interactive GUI designer for %{name}. 
1332fc
1332fc
1332fc
%prep
1332fc
%if 0%{?snap:1}
1332fc
%autosetup -p1 -n fltk-1.3.x-%{snap}
1332fc
%else
1332fc
%autosetup -p1
1332fc
%endif
1332fc
1332fc
1332fc
%build
1332fc
%cmake -DFLTK_CONFIG_PATH:PATH=%{_libdir}/cmake/fltk \
1332fc
       -DOpenGL_GL_PREFERENCE=GLVND \
1332fc
       -DOPTION_BUILD_HTML_DOCUMENTATION:BOOL=ON \
1332fc
       -DOPTION_BUILD_PDF_DOCUMENTATION:BOOL=OFF \
1332fc
       -DOPTION_BUILD_SHARED_LIBS:BOOL=ON
1332fc
1332fc
%cmake_build
1332fc
1332fc
make docs -C %{_vpath_builddir}
1332fc
1332fc
1332fc
%install
1332fc
%cmake_install
1332fc
1332fc
# we only apply this hack to multilib arch's
1332fc
%ifarch x86_64 %{ix86} ppc64 ppc s390x s390 sparc64 sparc
1332fc
%global arch %(uname -i 2>/dev/null || echo undefined)
1332fc
mv $RPM_BUILD_ROOT%{_bindir}/fltk-config \
1332fc
   $RPM_BUILD_ROOT%{_bindir}/fltk-config-%{arch}
1332fc
install -p -m755 -D %{SOURCE1} $RPM_BUILD_ROOT%{_bindir}/fltk-config
1332fc
%endif
1332fc
1332fc
1332fc
%check
1332fc
desktop-file-validate $RPM_BUILD_ROOT%{_datadir}/applications/fluid.desktop
1332fc
1332fc
1332fc
%ldconfig_scriptlets
1332fc
1332fc
%files
1332fc
%doc ANNOUNCEMENT CHANGES CREDITS README
1332fc
%license COPYING
1332fc
%{_libdir}/libfltk.so.1.3*
1332fc
%{_libdir}/libfltk_forms.so.1.3*
1332fc
%{_libdir}/libfltk_gl.so.1.3*
1332fc
%{_libdir}/libfltk_images.so.1.3*
1332fc
1332fc
%files devel
1332fc
%doc %{_vpath_builddir}/documentation/html
1332fc
%{_bindir}/fltk-config
1332fc
%{?arch:%{_bindir}/fltk-config-%{arch}}
1332fc
%{_includedir}/FL/
1332fc
%{_libdir}/libfltk.so
1332fc
%{_libdir}/libfltk_forms.so
1332fc
%{_libdir}/libfltk_gl.so
1332fc
%{_libdir}/libfltk_images.so
1332fc
%{_libdir}/cmake/fltk/
1332fc
%{_mandir}/man1/fltk-config.1*
1332fc
%{_mandir}/man3/fltk.3*
1332fc
%{_mandir}/man6/*.6*
1332fc
1332fc
%files static
1332fc
%{_libdir}/libfltk.a
1332fc
%{_libdir}/libfltk_forms.a
1332fc
%{_libdir}/libfltk_gl.a
1332fc
%{_libdir}/libfltk_images.a
1332fc
1332fc
%files fluid
1332fc
%{_bindir}/fluid
1332fc
%{_mandir}/man1/fluid.1*
1332fc
%{_datadir}/applications/fluid.desktop
1332fc
%{_datadir}/mime/packages/fluid.xml
1332fc
%{_datadir}/icons/hicolor/*/*/*
1332fc
1332fc
1332fc
%changelog
1332fc
* Fri Dec 17 2021 Jan Grulich <jgrulich@redhat.com> - 1.3.8-1
1332fc
- 1.3.8
1332fc
  Resolves: bz#2025415
1332fc
1332fc
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 1.3.6-2
1332fc
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
1332fc
  Related: rhbz#1991688
1332fc
1332fc
* Tue Jun 29 2021 Jan Grulich <jgrulich@redhat.com> - 1.3.6-1
1332fc
- 1.3.6
1332fc
  Resolves: bz#1976712
1332fc
1332fc
* Thu Apr 15 2021 Mohan Boddu <mboddu@redhat.com> - 1.3.5-11
1332fc
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
1332fc
1332fc
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.5-10
1332fc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
1332fc
1332fc
* Thu Jan 21 2021 Adam Jackson <ajax@redhat.com> - 1.3.5-9
1332fc
- Remove BuildRequires xprop entirely. If present, the configure script will call
1332fc
  it looking for a property on the root window that Fedora's X server does not
1332fc
  set, and which would not work anyway since there is no X server running in the
1332fc
  buildroot, so we can just remove the dependency.
1332fc
1332fc
* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.5-8
1332fc
- Second attempt - Rebuilt for
1332fc
  https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
1332fc
1332fc
* Tue Jul 28 2020 Adam Jackson <ajax@redhat.com> - 1.3.5-7
1332fc
- BuildRequires xprop not xorg-x11-server-utils
1332fc
1332fc
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.5-6
1332fc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
1332fc
1332fc
* Thu May 14 2020 Rex Dieter <rdieter@fedoraproject.org> - 1.3.5-5
1332fc
- restore fltk_config.patch lost in last (cmake) merge
1332fc
1332fc
* Mon May 11 2020 Rex Dieter <rdieter@fedoraproject.org> - 1.3.5-4
1332fc
- merge cmake PR
1332fc
- spec cosmetics
1332fc
1332fc
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.5-3
1332fc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
1332fc
1332fc
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.5-2
1332fc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
1332fc
1332fc
* Sun Mar 03 2019 Richard Shaw <hobbes1069@gmail.com> - 1.3.5-1
1332fc
- Update to 1.3.5.
1332fc
1332fc
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.4-8
1332fc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
1332fc
1332fc
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.4-7
1332fc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
1332fc
1332fc
* Thu Jun 28 2018 Rex Dieter <rdieter@fedoraproject.org> - 1.3.4-6
1332fc
- use %%make_build %%make_install %%ldconfig_scriptlets
1332fc
1332fc
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.4-5
1332fc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
1332fc
1332fc
* Thu Jan 11 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.3.4-4
1332fc
- Remove obsolete scriptlets
1332fc
1332fc
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.4-3
1332fc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
1332fc
1332fc
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.4-2
1332fc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
1332fc
1332fc
* Sat Mar 04 2017 Rex Dieter <rdieter@fedoraproject.org> - 1.3.4-1
1332fc
- 1.3.4 (#1385984)
1332fc
1332fc
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.3-9
1332fc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
1332fc
1332fc
* Mon Jun 27 2016 Rex Dieter <rdieter@fedoraproject.org> - 1.3.3-8
1332fc
- fltk_config.patch: remove @LARGEFILE@ @PTHREAD_FLAGS@ too (#1350069)
1332fc
1332fc
* Sun Jun 26 2016 Rex Dieter <rdieter@fedoraproject.org> - 1.3.3-7
1332fc
- -devel: Requires: pkgconfig(gl) pkgconfig(glu)
1332fc
- cleaner DSOFLAGS
1332fc
- fltk_config.patch: imposes internal build flags on the user (#1350069)
1332fc
1332fc
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.3-6
1332fc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
1332fc
1332fc
* Mon Aug 17 2015 Adam Jackson <ajax@redhat.com> 1.3.3-5
1332fc
- For whatever reason fltk thinks it's spelled DSOFLAGS not LDFLAGS, so set
1332fc
  that when building so hardening takes effect
1332fc
1332fc
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.3-4
1332fc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
1332fc
1332fc
* Wed May 06 2015 Rex Dieter <rdieter@fedoraproject.org> 1.3.3-3
1332fc
- rebuild (gcc5)
1332fc
1332fc
* Wed Feb 18 2015 Rex Dieter <rdieter@fedoraproject.org> 1.3.3-2
1332fc
- pull in upstream fixes for undefined symbols
1332fc
1332fc
* Fri Feb 13 2015 Rex Dieter <rdieter@fedoraproject.org> 1.3.3-1
1332fc
- 1.3.3
1332fc
1332fc
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.2-7
1332fc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
1332fc
1332fc
* Wed Jun 25 2014 Rex Dieter <rdieter@fedoraproject.org> 1.3.2-6
1332fc
- fltk-config transmits wrong ldflags (#1112930)
1332fc
1332fc
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.2-5
1332fc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
1332fc
1332fc
* Mon Feb 24 2014 Rex Dieter <rdieter@fedoraproject.org> 1.3.2-4
1332fc
- refresh clipboard patch (#920573)
1332fc
1332fc
* Thu Jan 23 2014 jchaloup <jchaloup@redhat.com> - 1.3.2-3
1332fc
- autoconfig moved from build to prep section
1332fc
1332fc
* Thu Jan 16 2014 Petr Hracek <phracek@redhat.com> - 1.3.2-2
1332fc
- fltk is not build properly (#1048857)
1332fc
1332fc
* Mon Aug 26 2013 Rex Dieter <rdieter@fedoraproject.org> 1.3.2-1
1332fc
- fltk-1.3.2
1332fc
1332fc
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.0-11
1332fc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
1332fc
1332fc
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.0-10
1332fc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
1332fc
1332fc
* Fri Jan 18 2013 Adam Tkac <atkac redhat com> - 1.3.0-9
1332fc
- rebuild due to "jpeg8-ABI" feature drop
1332fc
1332fc
* Tue Dec 04 2012 Adam Tkac <atkac redhat com> - 1.3.0-8
1332fc
- fix ABI breakage caused by fltk-1_v4.3.x-cursor.patch (#883026)
1332fc
1332fc
* Thu Nov 29 2012 Adam Tkac <atkac redhat com> - 1.3.0-7
1332fc
- add xcursor BR
1332fc
1332fc
* Wed Aug 22 2012 Adam Tkac <atkac redhat com> - 1.3.0-6
1332fc
- update to 1.3.x snap r9671
1332fc
- add some not-yet-accepted patches needed by tigervnc
1332fc
1332fc
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.0-5
1332fc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
1332fc
1332fc
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.0-4
1332fc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
1332fc
1332fc
* Mon Nov 07 2011 Rex Dieter <rdieter@fedoraproject.org> 1.3.0-3
1332fc
- rebuild (libpng)
1332fc
- pkgconfig-style deps
1332fc
1332fc
* Thu Aug 25 2011 Rex Dieter <rdieter@fedoraproject.org> 1.3.0-2
1332fc
- fltk-config inconsistency on ARM (#733421)
1332fc
1332fc
* Fri Jun 24 2011 Rex Dieter <rdieter@fedoraproject.org> 1.3.0-1
1332fc
- 1.3.0 (final)
1332fc
- --with-links
1332fc
1332fc
* Fri May 27 2011 Adam Tkac <atkac redhat com> - 1.3.0-0.2.rc5
1332fc
- fltk-config: don't emit unneeded -l<library> flags (#708185)
1332fc
1332fc
* Wed May 25 2011 Adam Tkac <atkac redhat com> - 1.3.0-0.1.rc5
1332fc
- update to 1.3.0rc5
1332fc
- patches no longer needed
1332fc
  - fltk-1.1.9-test.patch
1332fc
  - fltk-1.1.9-rpath.patch
1332fc
  - fltk-1.1.10-pkgconfig_xft.patch
1332fc
  - fltk-1.1.10-fluid_target.patch
1332fc
- regenerated other patches to match current source
1332fc
1332fc
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.10-6
1332fc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
1332fc
1332fc
* Tue Dec 07 2010 Rex Dieter <rdieter@fedoraproject.org> - 1.1.10-5
1332fc
- FTBFS fltk-1.1.10-4.fc15: ImplicitDSOLinking (#660884)
1332fc
1332fc
* Wed Sep 29 2010 jkeating - 1.1.10-4
1332fc
- Rebuilt for gcc bug 634757
1332fc
1332fc
* Mon Sep 20 2010 Rex Dieter <rdieter@fedoraproject.org> - 1.1.10-3
1332fc
- verbose build output (hint from mschwendt)
1332fc
1332fc
* Tue Sep 07 2010 Rex Dieter <rdieter@fedoraproject.org> - 1.1.10-2
1332fc
- drop BR: man , fixes FTBFS (#631212)
1332fc
1332fc
* Sun Feb 14 2010 Rex Dieter <rdieter@fedoraproject.org> - 1.1.10-1
1332fc
- fltk-1.1.10
1332fc
- FTBFS fltk-1.1.10-0.1.rc3.fc13: ImplicitDSOLinking (#564877)
1332fc
1332fc
* Tue Dec 08 2009 Rex Dieter <rdieter@fedoraproject.org> - 1.1.10-0.1.rc3
1332fc
- fltk-1.1.10rc3
1332fc
1332fc
* Mon Dec 07 2009 Rex Dieter <rdieter@fedoraproject.org> - 1.1.9-7
1332fc
- real -static subpkg (#545145)
1332fc
1332fc
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.9-6
1332fc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
1332fc
1332fc
* Sun Jun 28 2009 Rex Dieter <rdieter@fedoraproject.org> - 1.1.9-5
1332fc
- fltk-fluid duplicate .desktop file (#508553)
1332fc
- optimize scriptlets
1332fc
1332fc
* Wed May 13 2009 Rex Dieter <rdieter@fedoraproject.org> - 1.1.9-4
1332fc
- unbreak fltk-config --ldstaticflags (#500201)
1332fc
- (another?) gcc44 patch
1332fc
- -devel: +Provides: %%name-static
1332fc
- fix multiarch conflicts (#341141)
1332fc
1332fc
* Wed Mar 04 2009 Caolán McNamara <caolanm@redhat.com> - 1.1.9-3
1332fc
- fix uses of strchr wrt. constness
1332fc
1332fc
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.9-2
1332fc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
1332fc
1332fc
* Wed Oct 01 2008 Rex Dieter <rdieter@fedoraproject.org> 1.1.9-1
1332fc
- fltk-1.1.9
1332fc
1332fc
* Sat Mar 29 2008 Rex Dieter <rdieter@fedoraproject.org> 1.1.8-1
1332fc
- fltk-1.1.8 (final)
1332fc
1332fc
* Tue Feb 19 2008 Rex Dieter <rdieter@fedoraproject.org> 1.1.8-0.8.r6027
1332fc
- fltk-1.1.x-r6027
1332fc
1332fc
* Mon Feb 11 2008 Rex Dieter <rdieter@fedoraproject.org> 1.1.8-0.7.r5989 
1332fc
- respin (gcc43)
1332fc
1332fc
* Wed Dec 12 2007 Rex Dieter <rdieter[AT]fedoraproject.org> 1.1.8-0.6.r5989
1332fc
- --enable-largefile
1332fc
- fltk-1.1.x-r5989 snapshot (1.1.8 pre-release)
1332fc
1332fc
* Mon Aug 20 2007 Rex Dieter <rdieter[AT]fedoraproject.org> 1.1.8-0.5.r5750
1332fc
- License: LGPLv2+ with exceptions
1332fc
1332fc
* Sat Aug 11 2007 Rex Dieter <rdieter[AT]fedoraproject.org> 1.1.8-0.4.r5750
1332fc
- License: LGPLv2+ (with exceptions)
1332fc
1332fc
* Sun Apr 29 2007 Rex Dieter <rdieter[AT]fedoraproject.org> 1.1.8-0.3.r5750
1332fc
- *really* fix --rpath issue, using non-empty patch this time (#238284)
1332fc
1332fc
* Sun Apr 29 2007 Rex Dieter <rdieter[AT]fedoraproject.org> 1.1.8-0.2.r5750
1332fc
- nuke --rpath (#238284)
1332fc
1332fc
* Thu Apr 05 2007 Rex Dieter <rdieter[AT]fedoraproject.org> 1.1.8-0.1.r5750
1332fc
- fltk-1.1.x-r5750 snapshot (1.1.8 pre-release)
1332fc
- --enable-xinerama
1332fc
- patch for undefined symbols in libfltk_gl
1332fc
1332fc
* Wed Apr  4 2007 Thomas Fitzsimmons <fitzsim@redhat.com> - 1.1.7-9.r5555
1332fc
- Always apply fltk-config patch (#199656)
1332fc
- Update fltk-1.1.7-config.patch
1332fc
1332fc
* Wed Dec 13 2006 Rex Dieter <rexdieter[AT]users.sf.net> 1.1.7-8.r5555
1332fc
- more 64bit hackage to workaround broken Makefile logic (#219348)
1332fc
1332fc
* Wed Dec 13 2006 Rex Dieter <rexdieter[AT]users.sf.net> 1.1.7-7.r5555
1332fc
- fltk-1.1.x-r5555 snapshot, for 64bit issues (#219348)
1332fc
- restore static libs (they're tightly coupled with fltk-config)
1332fc
- cleanup %%description's
1332fc
1332fc
* Mon Dec 11 2006 Rex Dieter <rexdieter[AT]users.sf.net> 1.1.7-6
1332fc
- move tests to %%check section
1332fc
1332fc
* Mon Dec 11 2006 Rex Dieter <rexdieter[AT]users.sf.net> 1.1.7-5
1332fc
- use included icon/.desktop files
1332fc
- fix up fltk-config (#199656)
1332fc
1332fc
* Mon Dec 11 2006 Rex Dieter <rexdieter[AT]users.sf.net> 1.1.7-3
1332fc
- follow icon spec
1332fc
- omit static libs
1332fc
1332fc
* Wed Sep 06 2006 Michael J. Knox <michael[AT]knox.net.nz> - 1.1.7-2
1332fc
- rebuild for FC6
1332fc
1332fc
* Mon Feb 13 2006 Ignacio Vazquez-Abrams <ivazquez@ivazquez.net> 1.1.7-1
1332fc
- Upstream update
1332fc
1332fc
* Thu Nov 17 2005 Ignacio Vazquez-Abrams <ivazquez@ivazquez.net> 1.1.6-4
1332fc
- Fixed BR and -devel Requires for modular X
1332fc
1332fc
* Sun Nov 13 2005 Ignacio Vazquez-Abrams <ivazquez@ivazquez.net> 1.1.6-3
1332fc
- Update BuildRequires as well
1332fc
1332fc
* Sun Nov 13 2005 Ignacio Vazquez-Abrams <ivazquez@ivazquez.net> 1.1.6-2
1332fc
- Update Requires for -devel
1332fc
1332fc
* Thu Oct 27 2005 Ignacio Vazquez-Abrams <ivazquez@ivazquez.net> 1.1.6-1
1332fc
- Upstream update
1332fc
1332fc
* Thu Aug 18 2005 Ignacio Vazquez-Abrams <ivazquez@ivazquez.net> 1.1.4-10
1332fc
- Fixed BR/Requires for x86_64
1332fc
1332fc
* Wed Apr  6 2005 Michael Schwendt <mschwendt[AT]users.sf.net>
1332fc
- rebuilt
1332fc
1332fc
* Thu Nov 20 2003 Dams <anvil[AT]livna.org> 0:1.1.4-0.fdr.8
1332fc
- Hopefully fixed Xft flags for rh80
1332fc
1332fc
* Thu Nov 20 2003 Dams <anvil[AT]livna.org> 0:1.1.4-0.fdr.7
1332fc
- Fixed typo
1332fc
1332fc
* Thu Nov 20 2003 Dams <anvil[AT]livna.org> 0:1.1.4-0.fdr.6
1332fc
- Added xft.pc build dependency
1332fc
- Added BuildReq:man
1332fc
1332fc
* Sun Nov  9 2003 Ville Skyttä <ville.skytta@iki.fi> 0:1.1.4-0.fdr.4
1332fc
- Spec file cleanup
1332fc
- Enabled xft and threads
1332fc
1332fc
* Tue Oct 28 2003 Dams <anvil[AT]livna.org> - 0:1.1.4-0.fdr.3
1332fc
- Added missing symlink in includedir
1332fc
1332fc
* Wed Oct  1 2003 Dams <anvil[AT]livna.org> 0:1.1.4-0.fdr.2
1332fc
- Removed comment after scriptlets
1332fc
1332fc
* Wed Oct  1 2003 Dams <anvil[AT]livna.org> 0:1.1.4-0.fdr.1
1332fc
- Updated to final 1.1.4
1332fc
1332fc
* Wed Sep 24 2003 Dams <anvil[AT]livna.org> 0:1.1.4-0.fdr.0.4.rc1
1332fc
- Fixed documentation path in configure
1332fc
1332fc
* Fri Aug 29 2003 Dams <anvil[AT]livna.org> 0:1.1.4-0.fdr.0.3.rc1
1332fc
- Fixed typo in desktop entry
1332fc
- Added missing BuildRequires ImageMagick and desktop-file-utils
1332fc
1332fc
* Fri Aug 29 2003 Dams <anvil[AT]livna.org> 0:1.1.4-0.fdr.0.2.rc1
1332fc
- Moved fluid to its own package
1332fc
- Added missing Requires for devel package
1332fc
1332fc
* Sat Aug 16 2003 Dams <anvil[AT]livna.org>
1332fc
- Initial build.