genius/genius.spec
Dominique Leuenberger e66e7921b7 Accepting request 290422 from home:dimstar:branches:GNOME:Apps
- Update to version 1.0.20:
  + Add more sizes of icons including SVG, and add Keywords to the
    .desktop file.
  + Documentation updates.
  + Fix PeriodicExtension function.
  + ErrorFunction (erf) is using MPFR for real values so it is far
    more precise and faster.
  + The Fourier series example is no longer using a hand coded
    graph and hand computed series, so it can now be easily
    modified to show series for different functions.
  + Fix GCC 5 compilation.
  + A couple of minor fixes in the plotting code including one
    possible crasher.
  + Updated translations.

OBS-URL: https://build.opensuse.org/request/show/290422
OBS-URL: https://build.opensuse.org/package/show/GNOME:Apps/genius?expand=0&rev=34
2015-03-12 15:22:36 +00:00

170 lines
5.4 KiB
RPMSpec

#
# spec file for package genius
#
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
Name: genius
Version: 1.0.20
Release: 0
Summary: General purpose calculator and mathematics tool
License: GPL-3.0+
Group: Productivity/Scientific/Math
Url: http://www.jirka.org/genius.html
Source: http://download.gnome.org/sources/genius/1.0/%{name}-%{version}.tar.xz
BuildRequires: fdupes
BuildRequires: gnome-doc-utils-devel
BuildRequires: intltool
BuildRequires: mpfr-devel >= 2.3.0
BuildRequires: ncurses-devel
BuildRequires: readline-devel
BuildRequires: scrollkeeper
# We need the %%mime_database_* macros
BuildRequires: shared-mime-info
BuildRequires: translation-update-upstream
BuildRequires: update-desktop-files
BuildRequires: pkgconfig(glib-2.0)
BuildRequires: pkgconfig(gtk+-2.0)
BuildRequires: pkgconfig(gtksourceview-2.0)
BuildRequires: pkgconfig(vte)
Recommends: %{name}-lang
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
Genius is a general purpose calculator program similar in some aspects
to BC, Matlab, Maple or Mathematica. It is useful both as a simple
calculator and as a research or educational tool. The syntax is very
intuitive and is designed to mimic how mathematics is usually written.
GEL is the name of its extension language, it stands for Genius
Extension Language, clever isn't it? In fact, many of the standard
genius functions are written in GEL itself.
%package -n gnome-genius
Summary: General purpose calculator and mathematics tool - GNOME Interface
Group: Productivity/Scientific/Math
Requires: %{name} = %{version}
%description -n gnome-genius
Genius is a general purpose calculator program similar in some aspects
to BC, Matlab, Maple or Mathematica. It is useful both as a simple
calculator and as a research or educational tool. The syntax is very
intuitive and is designed to mimic how mathematics is usually written.
GEL is the name of its extension language, it stands for Genius
Extension Language, clever isn't it? In fact, many of the standard
genius functions are written in GEL itself.
%package devel
Summary: General purpose calculator and mathematics tool - Development Files
Group: Productivity/Scientific/Math
Requires: %{name} = %{version}
%description devel
Genius is a general purpose calculator program similar in some aspects
to BC, Matlab, Maple or Mathematica. It is useful both as a simple
calculator and as a research or educational tool. The syntax is very
intuitive and is designed to mimic how mathematics is usually written.
GEL is the name of its extension language, it stands for Genius
Extension Language, clever isn't it? In fact, many of the standard
genius functions are written in GEL itself.
%lang_package
%prep
%setup -q
translation-update-upstream
%build
export CFLAGS="$RPM_OPT_FLAGS -fstack-protector"
%configure \
--libexec=%{_prefix}/lib/genius \
--disable-scrollkeeper \
--disable-update-mimedb
make %{?_smp_mflags}
%install
%makeinstall
# We don't want the test plugin:
rm %{buildroot}%{_libdir}/genius/libtestplugin.*
rm %{buildroot}%{_datadir}/genius/plugins/test.plugin
# Not needed anymore on modern desktops:
rm %{buildroot}%{_datadir}/application-registry/genius.applications
rm %{buildroot}%{_datadir}/mime-info/genius.*
# Change sr@Latn to sr@latin
mv %{buildroot}%{_datadir}/locale/sr@Latn %{buildroot}%{_datadir}/locale/sr@latin
%find_lang %{name} %{?no_lang_C}
%suse_update_desktop_file gnome-genius
%fdupes %{buildroot}%{_datadir}/genius
%clean
rm -rf %{buildroot}
%post
%if 0%{?suse_version} > 1130
%desktop_database_post
%icon_theme_cache_post
%mime_database_post
%else
if test -x usr/bin/update-mime-database ; then
usr/bin/update-mime-database usr/share/mime >/dev/null
fi
%endif
%postun -n gnome-genius
%if 0%{?suse_version} > 1130
%desktop_database_postun
%icon_theme_cache_postun
%mime_database_postun
%else
if test -x usr/bin/update-mime-database ; then
usr/bin/update-mime-database usr/share/mime >/dev/null
fi
%endif
%files
%defattr(-,root,root)
%doc AUTHORS ChangeLog COPYING NEWS README TODO
%{_datadir}/genius
%{_bindir}/genius
%files -n gnome-genius
%defattr(-,root,root)
%dir %{_datadir}/gnome/
%dir %{_datadir}/gnome/help/
%dir %{_datadir}/gnome/help/%{name}/
%doc %{_datadir}/gnome/help/%{name}/C/
%dir %{_datadir}/omf/
%dir %{_datadir}/omf/%{name}/
%doc %{_datadir}/omf/%{name}/%{name}-C.omf
%{_bindir}/gnome-genius
%{_prefix}/lib/genius
%{_datadir}/applications/gnome-genius.desktop
%{_datadir}/icons/hicolor/
%{_datadir}/mime/packages/genius.xml
%files devel
%defattr(-,root,root)
%{_includedir}/genius
%files lang -f %{name}.lang
%defattr(-,root,root)
%dir %{_datadir}/gnome
%dir %{_datadir}/gnome/help
%dir %{_datadir}/omf/genius
%changelog