update to 2.9.91 [release 2.9.91-1mamba;Sat Dec 23 2017]
This commit is contained in:
parent
f1daafe1bf
commit
995c938ede
@ -5,9 +5,12 @@ The main features are:
|
||||
* Compile, convert and view your document with one click.
|
||||
* Auto-completion of (La)TeX commands
|
||||
* Templates and wizards makes starting a new document very little work.
|
||||
* Easy insertion of many standard tags and symbols and the option to define (an arbitrary number of) user defined tags.
|
||||
* Inverse and forward search: click in the DVI viewer and jump to the corresponding LaTeX line in the editor, or jump from the editor to the corresponding page in the viewer.
|
||||
* Finding chapter or sections is very easy, Kile constructs a list of all the chapter etc. in your document. You can use the list to jump to the corresponding section.
|
||||
* Easy insertion of many standard tags and symbols and the option to define
|
||||
(an arbitrary number of) user defined tags.
|
||||
* Inverse and forward search: click in the DVI viewer and jump to the corresponding
|
||||
LaTeX line in the editor, or jump from the editor to the corresponding page in the viewer.
|
||||
* Finding chapter or sections is very easy, Kile constructs a list of all the chapter etc.
|
||||
in your document. You can use the list to jump to the corresponding section.
|
||||
* Collect documents that belong together into a project.
|
||||
* Easy insertion of citations and references when using projects.
|
||||
* Advanced editing commands.
|
||||
|
91
kile.spec
91
kile.spec
@ -1,5 +1,5 @@
|
||||
Name: kile
|
||||
Version: 2.1.3
|
||||
Version: 2.9.91
|
||||
Release: 1mamba
|
||||
Summary: A user friendly TeX/LaTeX editor for the KDE desktop environment
|
||||
Group: Graphical Desktop/Applications/Publishing
|
||||
@ -7,7 +7,7 @@ Vendor: openmamba
|
||||
Distribution: openmamba
|
||||
Packager: Davide Madrisan <davide.madrisan@gmail.com>
|
||||
URL: http://kile.sourceforge.net/
|
||||
Source: http://sourceforge.net/projects/kile/files/stable/kile-%{version}/kile-%{version}.tar.bz2
|
||||
Source: https://downloads.sourceforge.net/project/kile/unstable/kile-3.0b1/kile-%{version}.tar.bz2
|
||||
License: GPL
|
||||
## AUTOBUILDREQ-BEGIN
|
||||
BuildRequires: glibc-devel
|
||||
@ -18,6 +18,7 @@ BuildRequires: libsoprano-devel
|
||||
BuildRequires: libstdc++6-devel
|
||||
BuildRequires: tetex-latex
|
||||
## AUTOBUILDREQ-END
|
||||
Requires: tetex-latex
|
||||
Obsoletes: kile-i18n-ar
|
||||
Obsoletes: kile-i18n-bg
|
||||
Obsoletes: kile-i18n-br
|
||||
@ -65,7 +66,6 @@ Obsoletes: kile-i18n-uk
|
||||
Obsoletes: kile-i18n-zh_CN
|
||||
Provides: kile4 = %{?epoch:%epoch:}%{version}-%{release}
|
||||
Obsoletes: kile4
|
||||
Requires: tetex-latex
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
||||
|
||||
%description
|
||||
@ -74,9 +74,12 @@ The main features are:
|
||||
* Compile, convert and view your document with one click.
|
||||
* Auto-completion of (La)TeX commands
|
||||
* Templates and wizards makes starting a new document very little work.
|
||||
* Easy insertion of many standard tags and symbols and the option to define (an arbitrary number of) user defined tags.
|
||||
* Inverse and forward search: click in the DVI viewer and jump to the corresponding LaTeX line in the editor, or jump from the editor to the corresponding page in the viewer.
|
||||
* Finding chapter or sections is very easy, Kile constructs a list of all the chapter etc. in your document. You can use the list to jump to the corresponding section.
|
||||
* Easy insertion of many standard tags and symbols and the option to define
|
||||
(an arbitrary number of) user defined tags.
|
||||
* Inverse and forward search: click in the DVI viewer and jump to the corresponding
|
||||
LaTeX line in the editor, or jump from the editor to the corresponding page in the viewer.
|
||||
* Finding chapter or sections is very easy, Kile constructs a list of all the chapter etc.
|
||||
in your document. You can use the list to jump to the corresponding section.
|
||||
* Collect documents that belong together into a project.
|
||||
* Easy insertion of citations and references when using projects.
|
||||
* Advanced editing commands.
|
||||
@ -85,84 +88,58 @@ The main features are:
|
||||
%setup -q
|
||||
|
||||
%build
|
||||
%cmake_kde4 -d build
|
||||
%cmake_kde5 -d build
|
||||
%make
|
||||
|
||||
%install
|
||||
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
||||
%makeinstall -C build
|
||||
|
||||
rm -fr %{buildroot}%{_kde4_sharedir}/doc/kile
|
||||
|
||||
%find_lang %{name}
|
||||
rm -fr %{buildroot}%{_kde5_sharedir}/doc/kile
|
||||
|
||||
%clean
|
||||
[ "%{buildroot}" != / ] && rm -rf %{buildroot}
|
||||
|
||||
%post
|
||||
touch --no-create %{_kde4_icondir}/hicolor &>/dev/null
|
||||
touch --no-create %{_kde5_icondir}/hicolor &>/dev/null
|
||||
exit 0
|
||||
|
||||
%posttrans
|
||||
update-desktop-database -q &>/dev/null
|
||||
update-mime-database %{_kde4_mimedir} &>/dev/null
|
||||
gtk-update-icon-cache %{_kde4_icondir}/hicolor &>/dev/null
|
||||
update-mime-database %{_kde5_mimedir} &>/dev/null
|
||||
gtk-update-icon-cache %{_kde5_icondir}/hicolor &>/dev/null
|
||||
exit 0
|
||||
|
||||
%postun
|
||||
if [ $1 -eq 0 ]; then
|
||||
update-desktop-database -q &>/dev/null
|
||||
update-mime-database %{_kde4_mimedir} &>/dev/null
|
||||
touch --no-create %{_kde4_icondir}/hicolor &>/dev/null
|
||||
gtk-update-icon-cache %{_kde4_icondir}/hicolor &>/dev/null
|
||||
update-mime-database %{_kde5_mimedir} &>/dev/null
|
||||
touch --no-create %{_kde5_icondir}/hicolor &>/dev/null
|
||||
gtk-update-icon-cache %{_kde5_icondir}/hicolor &>/dev/null
|
||||
fi
|
||||
exit 0
|
||||
|
||||
%files -f %{name}.lang
|
||||
%files
|
||||
%defattr(-,root,root)
|
||||
%{_kde4_bindir}/kile
|
||||
%{_kde4_datadir}/kile
|
||||
%{_kde4_icondir}/hicolor/*/apps/kile.png
|
||||
%{_kde4_icondir}/hicolor/scalable/apps/kile.svgz
|
||||
%{_kde4_kcfgdir}/kile.kcfg
|
||||
%{_kde4_kconfupdatedir}/kile.upd
|
||||
%{_kde4_kconfupdatedir}/kile*upd.pl
|
||||
%{_kde4_xdgmimedir}/kile.xml
|
||||
%{_kde4_xdgappsdir}/kile.desktop
|
||||
%lang(de) %dir %{_kde4_htmldir}/de/kile
|
||||
%lang(de) %{_kde4_htmldir}/de/kile/*
|
||||
%lang(es) %dir %{_kde4_htmldir}/es/kile
|
||||
%lang(es) %{_kde4_htmldir}/es/kile/*
|
||||
%lang(fr) %dir %{_kde4_htmldir}/fr/kile
|
||||
%lang(fr) %{_kde4_htmldir}/fr/kile/*
|
||||
%lang(it) %dir %{_kde4_htmldir}/it/kile
|
||||
%lang(it) %{_kde4_htmldir}/it/kile/*
|
||||
%lang(nl) %dir %{_kde4_htmldir}/nl/kile
|
||||
%lang(nl) %{_kde4_htmldir}/nl/kile/*
|
||||
#%lang(pt) %dir %{_kde4_htmldir}/pt/kile
|
||||
#%lang(pt) %{_kde4_htmldir}/pt/kile/*
|
||||
%lang(pt_BR) %dir %{_kde4_htmldir}/pt_BR/kile
|
||||
%lang(pt_BR) %{_kde4_htmldir}/pt_BR/kile/*
|
||||
%lang(sv) %dir %{_kde4_htmldir}/sv/kile
|
||||
%lang(sv) %{_kde4_htmldir}/sv/kile/*
|
||||
%lang(uk) %dir %{_kde4_htmldir}/uk/kile
|
||||
%lang(uk) %{_kde4_htmldir}/uk/kile/*
|
||||
%{_sysconfdir}/xdg/kile.categories
|
||||
%{_kde5_bindir}/kile
|
||||
%{_kde5_datadir}/kile
|
||||
%{_kde5_icondir}/hicolor/*/apps/kile.png
|
||||
%{_kde5_icondir}/hicolor/scalable/apps/kile.svgz
|
||||
%{_kde5_kcfgdir}/kile.kcfg
|
||||
%{_kde5_kconfupdatedir}/kile.upd
|
||||
%{_kde5_kconfupdatedir}/kile*upd.pl
|
||||
%{_kde5_xdgmimedir}/kile.xml
|
||||
%{_libdir}/libkdeinit5_kile.so
|
||||
%{_datadir}/applications/org.kde.kile.desktop
|
||||
%{_datadir}/metainfo/org.kde.kile.appdata.xml
|
||||
%{_datadir}/dbus-1/interfaces/net.sourceforge.kile.main.xml
|
||||
%doc %lang(en) %{_kde4_htmldir}/en/kile
|
||||
%doc AUTHORS ChangeLog kile-remote-control.txt README*
|
||||
%doc %lang(en) %{_kde5_htmldir}/en/kile
|
||||
%doc AUTHORS COPYING ChangeLog kile-remote-control.txt README*
|
||||
|
||||
%changelog
|
||||
* Thu May 29 2014 Automatic Build System <autodist@mambasoft.it> 2.1.3-1mamba
|
||||
- automatic update by autodist
|
||||
|
||||
* Sat Jul 21 2012 Davide Madrisan <davide.madrisan@gmail.com> 2.1.2-1mamba
|
||||
- update to 2.1.2
|
||||
|
||||
* Sun Jan 15 2012 Davide Madrisan <davide.madrisan@gmail.com> 2.1-2mamba
|
||||
- rebuilt to remove the setgid access right from all the directories
|
||||
|
||||
* Wed Oct 19 2011 Automatic Build System <autodist@mambasoft.it> 2.1-1mamba
|
||||
- update to 2.1
|
||||
* Sat Dec 23 2017 Silvan Calarco <silvan.calarco@mambasoft.it> 2.9.91-1mamba
|
||||
- update to 2.9.91
|
||||
|
||||
* Tue Feb 15 2011 Davide Madrisan <davide.madrisan@gmail.com> 2.1b5-1mamba
|
||||
- update to 2.1b5
|
||||
|
Loading…
Reference in New Issue
Block a user