mathgl/mathgl.spec

313 lines
8.6 KiB
RPMSpec
Raw Normal View History

2009-09-14 10:51:23 +00:00
Name: mathgl
2011-06-02 19:44:27 +00:00
Version: 1.11.2
Release: 2%{?dist}
2009-09-14 10:51:23 +00:00
Summary: Cross-platform library for making high-quality scientific graphics
2011-06-02 19:44:27 +00:00
Summary(de): Plattformübergreifende Bibliothek für hochwertige wissenschaftliche Graphiken
2009-09-14 10:51:23 +00:00
Summary(ru): MathGL - это библиотека для осуществления высококачественной визуализации данных
License: GPLv2+
Group: Development/Libraries
Url: http://mathgl.sourceforge.net
2011-06-02 19:44:27 +00:00
Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz
2009-09-14 10:51:23 +00:00
#Uncomment mathgl dif listing (fix warning) also from pts
2010-01-02 03:20:02 +00:00
Patch0: %{name}-info.patch
#Fltk uses /usr/include/FL
2011-06-02 19:44:27 +00:00
Patch1: %{name}-%{version}-fltk.patch
2009-09-14 10:51:23 +00:00
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
# mandatory packages
BuildRequires: gsl-devel libpng-devel libtool-ltdl-devel libtool
BuildRequires: swig
# optional packages
2011-06-23 21:25:04 +00:00
BuildRequires: freeglut-devel hdf5-static libjpeg-devel libtiff-devel fltk-devel qt4-devel
BuildRequires: wxGTK-devel giflib-devel
2009-09-14 10:51:23 +00:00
#For autoreconf (required for patches, libtool)
2009-09-14 10:51:23 +00:00
BuildRequires: autoconf
BuildRequires: automake
BuildRequires: libtool
Requires(post): info
Requires(preun): info
%description
Mathgl is a cross-platform library for making high-quality scientific
graphics. It provides fast data plotting and handling of large data
arrays, as well as window and console modes and for easy embedding
into other programs. Mathgl integrates into fltk, qt and
opengl applications
%package devel
Summary: Libraries and header files for %{name} library
Group: Development/Libraries
Requires: %{name} = %{version}-%{release}
Requires: gsl-devel
2009-09-14 10:51:23 +00:00
%description devel
The %{name}-devel package contains libraries and header files for
developing applications that use %{name}.
%description devel -l ru
Пакет %{name}-devel содержит библиотеки и файлы заголовков необходимые
для разработки приложений с использованием %{name}.
%package doc
Group: Documentation
Summary: HTML documentation and tutorial for the %{name} applications
BuildArch: noarch
BuildRequires: texi2html texinfo-tex
%description doc
This package contains the documentation in the HTML format of the %{name}
package.
%prep
%setup -q
2009-09-14 10:51:23 +00:00
#convert EOL encodings, maintaining timestames
for file in AUTHORS ChangeLog.txt README COPYRIGHT; do
sed 's/\r//' $file > $file.new && \
touch -r $file $file.new && \
mv $file.new $file
done
%patch0
2011-06-02 19:44:27 +00:00
%patch1 -p1
2009-09-14 10:51:23 +00:00
%build
#configure looks for * not *-qt4
QMAKE=/usr/bin/qmake-qt4
LUPDATE=/usr/bin/lupdate-qt4
LRELEASE=/usr/bin/lrelease-qt4
2010-11-28 00:46:54 +00:00
export LDFLAGS="-L/usr/lib64/hdf/ -L/usr/lib/hdf"
2009-09-14 10:51:23 +00:00
%configure --disable-static \
--enable-shared \
--enable-all
2009-09-14 10:51:23 +00:00
#Force strip rpath
sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool
sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:`pwd`/widgets/.libs/:`pwd`/mgl/.libs
make %{?_smp_mflags}
%install
rm -rf $RPM_BUILD_ROOT
make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p"
#Trash the .la files that get generated anyway (faulty configure? Doesn't appear up without --disable-ltdtl-install)
rm -f $RPM_BUILD_ROOT/%{_libdir}/*.la
pushd .
#Lets build a "docs" dir to maintain the dir relationships needed for html files
mkdir -p texinfo/docs
cd texinfo/docs/
2010-01-02 03:20:02 +00:00
cp -pr ../mathgl_en.html .
2009-09-14 10:51:23 +00:00
cp -pr ../png/ .
#remove zero length faux PNG file
rm -f png/all.png
popd
#remove installed docs, which we are installing via doc macro
rm -rf $RPM_BUILD_ROOT/%{_docdir}/%{name}
#remove misplaced info "dir" file
rm -f $RPM_BUILD_ROOT/%{_infodir}/dir
2010-01-02 05:57:12 +00:00
pushd $RPM_BUILD_ROOT/%{_infodir}
#move to _en info files
for i in mathgl_en.info*;
do
mv $i `echo $i | sed s/mathgl_en/mathgl/`
done
2010-11-28 00:46:54 +00:00
rm mgl_*.info*
2010-01-02 05:57:12 +00:00
popd
2009-09-14 10:51:23 +00:00
%post
/sbin/ldconfig
/sbin/install-info %{_infodir}/%{name}.info %{_infodir}/dir || :
%preun
if [ $1 = 0 ] ; then
/sbin/install-info --delete %{_infodir}/%{name}.info %{_infodir}/dir || :
fi
%postun
/sbin/ldconfig
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root,-)
%doc AUTHORS ChangeLog.txt README COPYING COPYRIGHT NEWS TODO
%{_libdir}/*.so.*
%{_bindir}/mgl*
%{_datadir}/%{name}/
2010-01-02 05:57:12 +00:00
%{_infodir}/%{name}.*.gz
2010-01-02 03:20:02 +00:00
%{_infodir}/%{name}_ru.*.gz
2009-09-14 10:51:23 +00:00
%files devel
%defattr(-,root,root,-)
%{_includedir}/mgl/
%{_libdir}/*.so
%files doc
%defattr(-,root,root,-)
%doc texinfo/docs/*
%changelog
* Thu Jun 23 2011 <mycae(a!t)yahoo.com> - 1.11.2-2
- Fix bug 678856, add hdf-static as buildrequire
2011-06-02 19:44:27 +00:00
* Wed Jun 01 2011 <mycae(a!t)yahoo.com> - 1.11.2-1
- Update to upstream 1.11.2
* Tue May 31 2011 Ralf Corsépius <corsepiu@fedoraproject.org> - 1.11.0.1-6
- Reflect fltk having changed its include directory (Fix FTBS).
- Fix German %%summary.
* Tue May 31 2011 Ralf Corsépius <corsepiu@fedoraproject.org> - 1.11.0.1-6
- Reflect fltk having changed its include directory (Fix FTBS).
- Fix German %%summary.
2011-05-18 03:45:56 +00:00
* Tue May 17 2011 Orion Poplawski <orion@cora.nwra.com> - 1.11.0.1-5
- Rebuild for hdf5 1.8.7
2011-03-21 22:57:34 +00:00
* Sun Feb 27 2011 <mycae(a!t)yahoo.com> - 1.11.0.1-4
- Remove octave for Bug 679948, and dynamic patch non-functional due
to swig covariant return type problems with octave_map
2011-03-21 22:57:34 +00:00
* Sat Feb 12 2011 <mycae(a!t)yahoo.com> - 1.11.0.1-3
- Request rebuild -- octave-config needs to emit correct api.
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.11.0.1-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
2010-11-28 00:46:54 +00:00
* Sat Nov 27 2010 <mycae(a!t)yahoo.com> - 1.11.0.1-1
- Update to 1.11.0.1
* Sun Aug 08 2010 <mycae(a!t)yahoo.com> - 1.10.2.1-3
- Add gsl-devel to requires
2010-07-14 12:33:24 +00:00
* Wed Jul 14 2010 Dan Horák <dan@danny.cz> - 1.10.2.1-2.1
- rebuilt against wxGTK-2.8.11-2
2010-04-14 21:51:35 +00:00
* Wed Apr 14 2010 <mycae(a!t)yahoo.com> - 1.10.2.1-1.1
- tag bump
* Wed Apr 14 2010 <mycae(a!t)yahoo.com> - 1.10.2.1-1
- Update to 1.10.2.1
- Fix linker error due to DSO change (Bug #564982)
2010-01-02 05:57:12 +00:00
* Sat Jan 02 2010 <mycae(a!t)yahoo.com> - 1.10-2
- Fix octave interface to load on startup
- Fix texinfo insatll
2010-01-02 03:20:02 +00:00
* Sat Jan 02 2010 <mycae(a!t)yahoo.com> - 1.10-1
- Update to 1.10
* Wed Nov 25 2009 Kevin Kofler <Kevin@tigcc.ticalc.org> - 1.9-8
- Rebuild for Qt 4.6.0 RC1 in F13 (was built against Beta 1 with unstable ABI)
* Sun Oct 25 2009 Milos Jakubicek <xjakub@fi.muni.cz> - 1.9-7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
2009-09-14 10:51:23 +00:00
* Mon Sep 14 2009 <mycae(a!t)yahoo.com> 1.9-6
- Add COPYING to doc
* Sat Sep 12 2009 <mycae(a!t)yahoo.com> 1.9-5
- Removed the word "static" from devel description, as doesn't have static
- Fonts now owned at datadir/name level
- Added COPYRIGHT NEWS and TODO
* Sat Aug 15 2009 <mycae(a!t)yahoo.com> 1.9-4
- Fix octave installation method
- Remove wx lib, which doesn't have meaningful code.
* Sun Aug 02 2009 <mycae(a!t)yahoo.com> 1.9-3
- Fix texinfo install (mv to main & add pre/post)
- Remove chrpath, as we now autoreconf
- Add octave pkg rebuild commands
* Tue Jul 21 2009 <mycae(a!t)yahoo.com> 1.9-2
- Fix rpath for build on x86_64.
- remove unrecognized configure options: --enable-tiff, --disable-ltdl-install
- Switch to --enable-all --enable-octave
- Add hdf5 patch
- Add doc subpackage
* Thu Jul 09 2009 <mycae(a!t)yahoo.com> 1.9-1
- Update to 1.9
- Drop explicit Requires
- Perserve timestamps on EOL conversion
- Added patch to disable unused gsl cblas link
* Fri May 02 2009 <mycae(a!t)yahoo.com> 1.8.1-1
- Update to 1.8.1
* Wed Jan 28 2009 <mycae(a!t)yahoo.com> 1.8-3
- Ensure timestamps are preserved during make install
- Modify defattr
- Remove UDAV from package summary
* Mon Dec 29 2008 <mycae(a!t)yahoo.com> 1.8-2
- Remove redundant and erroneous licence field in devel section
- Fix files from mgl/*h to mgl/
- Removed Requires, per bugzilla recommendation.
- Disabled static library generation
- Removed libltdl from build
- Added libtool-ltdl as BuildRequires
* Mon Dec 29 2008 <mycae(a!t)yahoo.com> 1.8-1
- Updated to version 1.8
- Added QT env. vars for fedora
- Cleaned up description
- Change licence field from GPL to GPLv2
* Wed Jun 4 2008 Nik <niktr@mail.ru>
- disabled hdf5 support according to developer request
* Tue Jun 3 2008 Nik <niktr@mail.ru>
- updated to version 1.7.1
* Sun Jun 2 2008 Nik <niktr@mail.ru>
- updated to version 1.7
* Sat Apr 5 2008 Nik <niktr@mail.ru>
- updated to version 1.6.2
* Thu Mar 13 2008 Nik <niktr@mail.ru>
- updated to version 1.6
- added fltk(-devel) to requres list
* Tue Mar 11 2008 Nik <niktr@mail.ru>
- tiff bug fixed
- enable-all option added
* Sat Mar 1 2008 Nik <niktr@mail.ru>
- spec cleanup
- --enable(jpeg, tiff, hdf5) features added
- enable-tiff leads to make error, submitted to author. Feature disabled.
* Fri Feb 29 2008 Nik <niktr@mail.ru>
- initial build of version 1.5