Merge branch 'master' of http://scm.trinitydesktop.org/scm/git/tde-packaging
commit
a454a01a5e
@ -0,0 +1,123 @@
|
|||||||
|
# Default version for this component
|
||||||
|
%define kdecomp basket
|
||||||
|
%define version 1.0.3.1
|
||||||
|
%define release 1
|
||||||
|
|
||||||
|
# If TDE is built in a specific prefix (e.g. /opt/trinity), the release will be suffixed with ".opt".
|
||||||
|
%if "%{?_prefix}" != "/usr"
|
||||||
|
%define _variant .opt
|
||||||
|
%define _docdir %{_prefix}/share/doc
|
||||||
|
%endif
|
||||||
|
|
||||||
|
# TDE 3.5.13 specific building variables
|
||||||
|
BuildRequires: autoconf automake libtool m4
|
||||||
|
%define tde_docdir %{_docdir}/kde
|
||||||
|
%define tde_includedir %{_includedir}/kde
|
||||||
|
%define tde_libdir %{_libdir}/trinity
|
||||||
|
|
||||||
|
|
||||||
|
Name: trinity-%{kdecomp}
|
||||||
|
Summary: Taking care of your ideas.
|
||||||
|
Version: %{?version}
|
||||||
|
Release: %{?release}%{?dist}%{?_variant}
|
||||||
|
|
||||||
|
License: GPLv2+
|
||||||
|
Group: Applications/Utilities
|
||||||
|
|
||||||
|
Vendor: Trinity Project
|
||||||
|
Packager: Francois Andriot <francois.andriot@free.fr>
|
||||||
|
URL: http://www.trinitydesktop.org/
|
||||||
|
|
||||||
|
Prefix: %{_prefix}
|
||||||
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||||
|
|
||||||
|
Source0: %{kdecomp}-3.5.13.tar.gz
|
||||||
|
|
||||||
|
BuildRequires: tqtinterface-devel
|
||||||
|
BuildRequires: trinity-kdelibs-devel
|
||||||
|
BuildRequires: trinity-kdebase-devel
|
||||||
|
BuildRequires: desktop-file-utils
|
||||||
|
|
||||||
|
BuildRequires: gpgme-devel
|
||||||
|
BuildRequires: trinity-kdepim-devel
|
||||||
|
|
||||||
|
%description
|
||||||
|
This application is mainly an all-purpose notes taker. It provide several baskets where
|
||||||
|
to drop every sort of items: text, rich text, links, images, sounds, files, colors,
|
||||||
|
application launcher... Objects can be edited, copied, dragged... So, you can arrange
|
||||||
|
them as you want ! This application can be used to quickly drop web objects (link, text,
|
||||||
|
images...) or notes, as well as to free your clutered desktop (if any). It is also useful
|
||||||
|
to collect informations for a report. Those data can be shared with co-workers by exporting
|
||||||
|
baskets to HTML.
|
||||||
|
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q -n applications/%{kdecomp}
|
||||||
|
|
||||||
|
# Ugly hack to modify TQT include directory inside autoconf files.
|
||||||
|
# If TQT detection fails, it fallbacks to TQT4 instead of TQT3 !
|
||||||
|
%__sed -i admin/acinclude.m4.in \
|
||||||
|
-e "s,/usr/include/tqt,%{_includedir}/tqt,g" \
|
||||||
|
-e "s,kde_htmldir='.*',kde_htmldir='%{tde_docdir}/HTML',g"
|
||||||
|
|
||||||
|
%__cp -f "/usr/share/aclocal/libtool.m4" "admin/libtool.m4.in"
|
||||||
|
%__cp -f "/usr/share/libtool/config/ltmain.sh" "admin/ltmain.sh"
|
||||||
|
%__make -f "admin/Makefile.common"
|
||||||
|
|
||||||
|
|
||||||
|
%build
|
||||||
|
export PATH="%{_bindir}:${PATH}"
|
||||||
|
export LDFLAGS="-L%{_libdir} -I%{_includedir}"
|
||||||
|
|
||||||
|
%configure \
|
||||||
|
--disable-rpath \
|
||||||
|
--with-extra-includes=%{_includedir}/tqt
|
||||||
|
|
||||||
|
%__make %{?_smp_mflags}
|
||||||
|
|
||||||
|
|
||||||
|
%install
|
||||||
|
export PATH="%{_bindir}:${PATH}"
|
||||||
|
%__rm -rf %{buildroot}
|
||||||
|
%__make install DESTDIR=%{buildroot}
|
||||||
|
|
||||||
|
|
||||||
|
%clean
|
||||||
|
%__rm -rf %{buildroot}
|
||||||
|
|
||||||
|
|
||||||
|
%post
|
||||||
|
touch --no-create %{_datadir}/icons/hicolor || :
|
||||||
|
gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
|
||||||
|
/sbin/ldconfig
|
||||||
|
|
||||||
|
%postun
|
||||||
|
touch --no-create %{_datadir}/icons/hicolor || :
|
||||||
|
gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
|
||||||
|
/sbin/ldconfig
|
||||||
|
|
||||||
|
|
||||||
|
%files
|
||||||
|
%defattr(-,root,root,-)
|
||||||
|
%doc AUTHORS COPYING
|
||||||
|
%{_bindir}/*
|
||||||
|
%{_datadir}/applications/*/*.desktop
|
||||||
|
%{_datadir}/apps/*/
|
||||||
|
%{_datadir}/icons/*/*/*/*
|
||||||
|
%{_datadir}/locale/*/*/*.mo
|
||||||
|
%{tde_docdir}/HTML/en/*/
|
||||||
|
%{_datadir}/services/*.desktop
|
||||||
|
%{_datadir}/mimelnk/application/*.desktop
|
||||||
|
%{_datadir}/services/*/*.desktop
|
||||||
|
%{_datadir}/config/magic/*.magic
|
||||||
|
%{_libdir}/*.so
|
||||||
|
%{_libdir}/*.la
|
||||||
|
%{tde_libdir}/*.so
|
||||||
|
%{tde_libdir}/*.la
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
%Changelog
|
||||||
|
* Mon Aug 22 2011 Francois Andriot <francois.andriot@free.fr> - 1.0.3.1-1
|
||||||
|
- Initial build for RHEL 5, RHEL 6, Fedora 15, Fedora 16
|
||||||
|
|
@ -0,0 +1,111 @@
|
|||||||
|
# Default version for this component
|
||||||
|
%define kdecomp filelight-l10n
|
||||||
|
%define version 1.0
|
||||||
|
%define release 1
|
||||||
|
|
||||||
|
%define debug_package %{nil}
|
||||||
|
|
||||||
|
|
||||||
|
# If TDE is built in a specific prefix (e.g. /opt/trinity), the release will be suffixed with ".opt".
|
||||||
|
%if "%{?_prefix}" != "/usr"
|
||||||
|
%define _variant .opt
|
||||||
|
%define _docdir %{_prefix}/share/doc
|
||||||
|
%endif
|
||||||
|
|
||||||
|
# TDE 3.5.13 specific building variables
|
||||||
|
BuildRequires: autoconf automake libtool m4
|
||||||
|
%define tde_docdir %{_docdir}/kde
|
||||||
|
%define tde_includedir %{_includedir}/kde
|
||||||
|
%define tde_libdir %{_libdir}/trinity
|
||||||
|
|
||||||
|
|
||||||
|
Name: trinity-%{kdecomp}
|
||||||
|
Summary: Localization (l10n) for Filelight, disk space usage tool [Trinity]
|
||||||
|
Version: %{?version}
|
||||||
|
Release: %{?release}%{?dist}%{?_variant}
|
||||||
|
|
||||||
|
License: GPLv2+
|
||||||
|
Group: Applications/Utilities
|
||||||
|
%if 0%{?fedora} > 0 || 0%{?rhel} >= 6
|
||||||
|
BuildArch: noarch
|
||||||
|
%endif
|
||||||
|
|
||||||
|
Vendor: Trinity Project
|
||||||
|
Packager: Francois Andriot <francois.andriot@free.fr>
|
||||||
|
URL: http://www.trinitydesktop.org/
|
||||||
|
|
||||||
|
Prefix: %{_prefix}
|
||||||
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||||
|
|
||||||
|
Source0: %{kdecomp}-3.5.13.tar.gz
|
||||||
|
|
||||||
|
BuildRequires: tqtinterface-devel
|
||||||
|
BuildRequires: trinity-kdelibs-devel
|
||||||
|
BuildRequires: trinity-kdebase-devel
|
||||||
|
BuildRequires: desktop-file-utils
|
||||||
|
BuildRequires: gettext
|
||||||
|
|
||||||
|
Requires: trinity-filelight
|
||||||
|
|
||||||
|
%description
|
||||||
|
This package provides localization(l10n) files (translations and docs) for
|
||||||
|
Filelight, Filelight allows you to understand your disk usage by graphically
|
||||||
|
representing your filesystem as a set of concentric, segmented rings.
|
||||||
|
|
||||||
|
See the 'filelight' package description for more information.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q -n applications/%{kdecomp}
|
||||||
|
|
||||||
|
# Ugly hack to modify TQT include directory inside autoconf files.
|
||||||
|
# If TQT detection fails, it fallbacks to TQT4 instead of TQT3 !
|
||||||
|
%__sed -i admin/acinclude.m4.in \
|
||||||
|
-e "s,/usr/include/tqt,%{_includedir}/tqt,g" \
|
||||||
|
-e "s,kde_htmldir='.*',kde_htmldir='%{tde_docdir}/HTML',g"
|
||||||
|
|
||||||
|
%__cp -f "/usr/share/aclocal/libtool.m4" "admin/libtool.m4.in"
|
||||||
|
%__cp -f "/usr/share/libtool/config/ltmain.sh" "admin/ltmain.sh"
|
||||||
|
%__make -f "admin/Makefile.common"
|
||||||
|
|
||||||
|
|
||||||
|
%build
|
||||||
|
export PATH="%{_bindir}:${PATH}"
|
||||||
|
export LDFLAGS="-L%{_libdir} -I%{_includedir}"
|
||||||
|
|
||||||
|
%configure \
|
||||||
|
--disable-rpath \
|
||||||
|
--with-extra-includes=%{_includedir}/tqt
|
||||||
|
|
||||||
|
%__make %{?_smp_mflags}
|
||||||
|
|
||||||
|
|
||||||
|
%install
|
||||||
|
export PATH="%{_bindir}:${PATH}"
|
||||||
|
%__rm -rf %{buildroot}
|
||||||
|
%__make install DESTDIR=%{buildroot}
|
||||||
|
|
||||||
|
|
||||||
|
%clean
|
||||||
|
%__rm -rf %{buildroot}
|
||||||
|
|
||||||
|
|
||||||
|
%post
|
||||||
|
touch --no-create %{_datadir}/icons/hicolor || :
|
||||||
|
gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
|
||||||
|
|
||||||
|
%postun
|
||||||
|
touch --no-create %{_datadir}/icons/hicolor || :
|
||||||
|
gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
|
||||||
|
|
||||||
|
|
||||||
|
%files
|
||||||
|
%defattr(-,root,root,-)
|
||||||
|
%{tde_docdir}/HTML/*/filelight
|
||||||
|
%{_datadir}/locale/*/LC_MESSAGES/filelight.mo
|
||||||
|
|
||||||
|
|
||||||
|
%Changelog
|
||||||
|
* Fri Nov 25 2011 Francois Andriot <francois.andriot@free.fr> - 1.0-1
|
||||||
|
- Initial build for RHEL 5, RHEL 6, Fedora 15, Fedora 16
|
@ -0,0 +1,125 @@
|
|||||||
|
# Default version for this component
|
||||||
|
%define kdecomp katapult
|
||||||
|
%define version 0.3.2.1
|
||||||
|
%define release 3
|
||||||
|
|
||||||
|
# If TDE is built in a specific prefix (e.g. /opt/trinity), the release will be suffixed with ".opt".
|
||||||
|
%if "%{?_prefix}" != "/usr"
|
||||||
|
%define _variant .opt
|
||||||
|
%define _docdir %{_prefix}/share/doc
|
||||||
|
%endif
|
||||||
|
|
||||||
|
# TDE 3.5.13 specific building variables
|
||||||
|
BuildRequires: autoconf automake libtool m4
|
||||||
|
%define tde_docdir %{_docdir}/kde
|
||||||
|
%define tde_includedir %{_includedir}/kde
|
||||||
|
%define tde_libdir %{_libdir}/trinity
|
||||||
|
|
||||||
|
|
||||||
|
Name: trinity-%{kdecomp}
|
||||||
|
Summary: Faster access to applications, bookmarks, and other items.
|
||||||
|
Version: %{?version}
|
||||||
|
Release: %{?release}%{?dist}%{?_variant}
|
||||||
|
|
||||||
|
License: GPLv2+
|
||||||
|
Group: Applications/Utilities
|
||||||
|
|
||||||
|
Vendor: Trinity Project
|
||||||
|
Packager: Francois Andriot <francois.andriot@free.fr>
|
||||||
|
URL: http://www.trinitydesktop.org/
|
||||||
|
|
||||||
|
Prefix: %{_prefix}
|
||||||
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||||
|
|
||||||
|
Source0: %{kdecomp}-3.5.13.tar.gz
|
||||||
|
|
||||||
|
|
||||||
|
BuildRequires: tqtinterface-devel
|
||||||
|
BuildRequires: trinity-kdelibs-devel
|
||||||
|
BuildRequires: trinity-kdebase-devel
|
||||||
|
BuildRequires: desktop-file-utils
|
||||||
|
|
||||||
|
%description
|
||||||
|
Katapult is an application for KDE, designed to allow faster access to
|
||||||
|
applications, bookmarks, and other items. It is plugin-based, so it can
|
||||||
|
launch anything that is has a plugin for. Its display is driven by
|
||||||
|
plugins as well, so its appearance is completely customizable. It was
|
||||||
|
inspired by Quicksilver for OS X.
|
||||||
|
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q -n applications/%{kdecomp}
|
||||||
|
|
||||||
|
# Ugly hack to modify TQT include directory inside autoconf files.
|
||||||
|
# If TQT detection fails, it fallbacks to TQT4 instead of TQT3 !
|
||||||
|
%__sed -i admin/acinclude.m4.in \
|
||||||
|
-e "s,/usr/include/tqt,%{_includedir}/tqt,g" \
|
||||||
|
-e "s,kde_htmldir='.*',kde_htmldir='%{tde_docdir}/HTML',g"
|
||||||
|
|
||||||
|
%__cp -f "/usr/share/aclocal/libtool.m4" "admin/libtool.m4.in"
|
||||||
|
%__cp -f "/usr/share/libtool/config/ltmain.sh" "admin/ltmain.sh"
|
||||||
|
%__make -f "admin/Makefile.common"
|
||||||
|
|
||||||
|
|
||||||
|
%build
|
||||||
|
export PATH="%{_bindir}:${PATH}"
|
||||||
|
export LDFLAGS="-L%{_libdir} -I%{_includedir}"
|
||||||
|
|
||||||
|
%configure \
|
||||||
|
--disable-rpath \
|
||||||
|
--with-extra-includes=%{_includedir}/tqt \
|
||||||
|
--enable-closure
|
||||||
|
|
||||||
|
%__make %{?_smp_mflags}
|
||||||
|
|
||||||
|
|
||||||
|
%install
|
||||||
|
export PATH="%{_bindir}:${PATH}"
|
||||||
|
%__rm -rf %{buildroot}
|
||||||
|
%__make install DESTDIR=%{buildroot}
|
||||||
|
|
||||||
|
|
||||||
|
%clean
|
||||||
|
%__rm -rf %{buildroot}
|
||||||
|
|
||||||
|
|
||||||
|
%post
|
||||||
|
touch --no-create %{_datadir}/icons/hicolor || :
|
||||||
|
gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
|
||||||
|
/sbin/ldconfig
|
||||||
|
|
||||||
|
%postun
|
||||||
|
touch --no-create %{_datadir}/icons/hicolor || :
|
||||||
|
gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
|
||||||
|
/sbin/ldconfig
|
||||||
|
|
||||||
|
|
||||||
|
%files
|
||||||
|
%defattr(-,root,root,-)
|
||||||
|
%doc AUTHORS COPYING
|
||||||
|
%{_bindir}/*
|
||||||
|
%{_datadir}/applications/*/*.desktop
|
||||||
|
%{_datadir}/icons/*/*/*/*
|
||||||
|
%{_datadir}/locale/*/*/*.mo
|
||||||
|
%{_datadir}/services/*.desktop
|
||||||
|
%{_datadir}/servicetypes/*.desktop
|
||||||
|
%{tde_libdir}/*.so
|
||||||
|
%{tde_libdir}/*.la
|
||||||
|
%{_libdir}/*.so.*
|
||||||
|
%{tde_docdir}/HTML/en/katapult
|
||||||
|
|
||||||
|
|
||||||
|
%exclude %{_libdir}/*.so
|
||||||
|
%exclude %{_libdir}/*.la
|
||||||
|
|
||||||
|
%Changelog
|
||||||
|
* Fri Nov 25 2011 Francois Andriot <francois.andriot@free.fr> - 0.3.2.1-3
|
||||||
|
- Fix HTML directory location
|
||||||
|
|
||||||
|
* Sun Oct 30 2011 Francois Andriot <francois.andriot@free.fr> - 0.3.2.1-2
|
||||||
|
- Rebuilt for TDE 3.5.13 on RHEL 6, RHEL 5 and Fedora 15
|
||||||
|
|
||||||
|
* Tue Sep 14 2011 Francois Andriot <francois.andriot@free.fr> - 0.3.2.1-1
|
||||||
|
- Initial build for RHEL 6.0
|
||||||
|
- Import to GIT
|
||||||
|
|
@ -0,0 +1,6 @@
|
|||||||
|
# provided by tdelibs
|
||||||
|
kdmtheme: desktop-command-not-in-package ./usr/share/applications/kde/kdmtheme.desktop kcmshell
|
||||||
|
# kcontrol module
|
||||||
|
kdmtheme: desktop-entry-invalid-category X-KDE-settings-system ./usr/share/applications/kde/kdmtheme.desktop
|
||||||
|
kdmtheme: desktop-entry-lacks-main-category ./usr/share/applications/kde/kdmtheme.desktop
|
||||||
|
|
@ -0,0 +1,108 @@
|
|||||||
|
# Default version for this component
|
||||||
|
%define kdecomp kdmtheme
|
||||||
|
%define version 1.2.2
|
||||||
|
%define release 1
|
||||||
|
|
||||||
|
# If TDE is built in a specific prefix (e.g. /opt/trinity), the release will be suffixed with ".opt".
|
||||||
|
%if "%{?_prefix}" != "/usr"
|
||||||
|
%define _variant .opt
|
||||||
|
%define _docdir %{_prefix}/share/doc
|
||||||
|
%endif
|
||||||
|
|
||||||
|
# TDE 3.5.13 specific building variables
|
||||||
|
BuildRequires: autoconf automake libtool m4
|
||||||
|
%define tde_docdir %{_docdir}/kde
|
||||||
|
%define tde_includedir %{_includedir}/kde
|
||||||
|
%define tde_libdir %{_libdir}/trinity
|
||||||
|
|
||||||
|
|
||||||
|
Name: trinity-%{kdecomp}
|
||||||
|
Summary: theme manager for KDM [Trinity]
|
||||||
|
Version: %{?version}
|
||||||
|
Release: %{?release}%{?dist}%{?_variant}
|
||||||
|
|
||||||
|
License: GPLv2+
|
||||||
|
Group: Applications/Utilities
|
||||||
|
|
||||||
|
Vendor: Trinity Project
|
||||||
|
Packager: Francois Andriot <francois.andriot@free.fr>
|
||||||
|
URL: http://beta.smileaf.org/projects
|
||||||
|
|
||||||
|
Prefix: %{_prefix}
|
||||||
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||||
|
|
||||||
|
Source0: %{kdecomp}-3.5.13.tar.gz
|
||||||
|
Source1: kdmtheme.lintian-overrides
|
||||||
|
|
||||||
|
BuildRequires: tqtinterface-devel
|
||||||
|
BuildRequires: trinity-kdelibs-devel
|
||||||
|
BuildRequires: trinity-kdebase-devel
|
||||||
|
BuildRequires: desktop-file-utils
|
||||||
|
BuildRequires: gettext
|
||||||
|
|
||||||
|
|
||||||
|
%description
|
||||||
|
kdmtheme is a theme manager for KDM. It provides a KDE Control Module (KCM)
|
||||||
|
that allows you to easily install, remove and change your KDM themes.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q -n applications/%{kdecomp}
|
||||||
|
|
||||||
|
# Ugly hack to modify TQT include directory inside autoconf files.
|
||||||
|
# If TQT detection fails, it fallbacks to TQT4 instead of TQT3 !
|
||||||
|
%__sed -i admin/acinclude.m4.in \
|
||||||
|
-e "s,/usr/include/tqt,%{_includedir}/tqt,g" \
|
||||||
|
-e "s,kde_htmldir='.*',kde_htmldir='%{tde_docdir}/HTML',g"
|
||||||
|
|
||||||
|
%__cp -f "/usr/share/aclocal/libtool.m4" "admin/libtool.m4.in"
|
||||||
|
%__cp -f "/usr/share/libtool/config/ltmain.sh" "admin/ltmain.sh"
|
||||||
|
%__make -f "admin/Makefile.common"
|
||||||
|
|
||||||
|
|
||||||
|
%build
|
||||||
|
export PATH="%{_bindir}:${PATH}"
|
||||||
|
export LDFLAGS="-L%{_libdir} -I%{_includedir}"
|
||||||
|
|
||||||
|
%configure \
|
||||||
|
--disable-rpath \
|
||||||
|
--with-extra-includes=%{_includedir}/tqt
|
||||||
|
|
||||||
|
%__make %{?_smp_mflags}
|
||||||
|
|
||||||
|
|
||||||
|
%install
|
||||||
|
export PATH="%{_bindir}:${PATH}"
|
||||||
|
%__rm -rf %{buildroot}
|
||||||
|
%__make install DESTDIR=%{buildroot}
|
||||||
|
|
||||||
|
%__install -D -p -m644 %{SOURCE1} %{buildroot}%{_datadir}/lintian/overrides/kdmtheme-trinity
|
||||||
|
|
||||||
|
%clean
|
||||||
|
%__rm -rf %{buildroot}
|
||||||
|
|
||||||
|
|
||||||
|
%post
|
||||||
|
touch --no-create %{_datadir}/icons/hicolor || :
|
||||||
|
gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
|
||||||
|
|
||||||
|
%postun
|
||||||
|
touch --no-create %{_datadir}/icons/hicolor || :
|
||||||
|
gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
|
||||||
|
|
||||||
|
|
||||||
|
%files
|
||||||
|
%defattr(-,root,root,-)
|
||||||
|
%{tde_libdir}/kcm_kdmtheme.la
|
||||||
|
%{tde_libdir}/kcm_kdmtheme.so
|
||||||
|
%{_datadir}/applications/kde/kdmtheme.desktop
|
||||||
|
%{tde_docdir}/HTML/en/kdmtheme/common
|
||||||
|
%{tde_docdir}/HTML/en/kdmtheme/index.cache.bz2
|
||||||
|
%{tde_docdir}/HTML/en/kdmtheme/index.docbook
|
||||||
|
%{_datadir}/lintian/overrides/kdmtheme-trinity
|
||||||
|
|
||||||
|
|
||||||
|
%Changelog
|
||||||
|
* Fri Nov 25 2011 Francois Andriot <francois.andriot@free.fr> - 1.2.2-1
|
||||||
|
- Initial build for RHEL 5, RHEL 6, Fedora 15, Fedora 16
|
@ -0,0 +1,109 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
|
||||||
|
"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd" [
|
||||||
|
]>
|
||||||
|
<refentry>
|
||||||
|
<refentryinfo>
|
||||||
|
<author>
|
||||||
|
<firstname>Jonathan Patrick</firstname>
|
||||||
|
<surname>Davies</surname>
|
||||||
|
<email>jpatrick@ubuntu.com</email>
|
||||||
|
</author>
|
||||||
|
<copyright>
|
||||||
|
<year>2006</year>
|
||||||
|
<holder>Jonathan Patrick Davies</holder>
|
||||||
|
</copyright>
|
||||||
|
<!-- XXX IMPORTANT XXX -->
|
||||||
|
<!-- Keep this date up to date: -->
|
||||||
|
<date>2006-03-26</date>
|
||||||
|
<!-- ^^^^^^^^^^ -->
|
||||||
|
</refentryinfo>
|
||||||
|
<refmeta>
|
||||||
|
<refentrytitle>kerry</refentrytitle>
|
||||||
|
<manvolnum>1</manvolnum>
|
||||||
|
</refmeta>
|
||||||
|
<refnamediv>
|
||||||
|
<refname>kerry</refname>
|
||||||
|
<refpurpose>a Beagle frontend for KDE</refpurpose>
|
||||||
|
</refnamediv>
|
||||||
|
<refsynopsisdiv>
|
||||||
|
<cmdsynopsis>
|
||||||
|
<command>kautoclick</command>
|
||||||
|
<arg choice="opt">
|
||||||
|
<option><replaceable>Qt-options</replaceable></option>
|
||||||
|
</arg>
|
||||||
|
<arg choice="opt">
|
||||||
|
<option><replaceable>KDE-options</replaceable></option>
|
||||||
|
</arg>
|
||||||
|
</cmdsynopsis>
|
||||||
|
</refsynopsisdiv>
|
||||||
|
<refsect1>
|
||||||
|
<title>DESCRIPTION</title>
|
||||||
|
<para>
|
||||||
|
Kerry is a frontend for Beagle for the <productname>KDE</productname> desktop.
|
||||||
|
</para>
|
||||||
|
</refsect1>
|
||||||
|
<refsect1>
|
||||||
|
<title>OPTIONS</title>
|
||||||
|
<para>
|
||||||
|
All <productname>KDE</productname> and <productname>Qt</productname>
|
||||||
|
programs accept a some common command-line options. Kerry has no
|
||||||
|
application-specific options.
|
||||||
|
</para>
|
||||||
|
<para>
|
||||||
|
<variablelist>
|
||||||
|
<title>Generic options:</title>
|
||||||
|
<varlistentry>
|
||||||
|
<term> <option>--help</option> </term>
|
||||||
|
<listitem> <para>Show help about options</para> </listitem>
|
||||||
|
</varlistentry>
|
||||||
|
<varlistentry>
|
||||||
|
<term> <option>--help-qt</option> </term>
|
||||||
|
<listitem> <para>Show Qt specific options</para> </listitem>
|
||||||
|
</varlistentry>
|
||||||
|
<varlistentry>
|
||||||
|
<term> <option>--help-kde</option> </term>
|
||||||
|
<listitem> <para>Show KDE specific options</para> </listitem>
|
||||||
|
</varlistentry>
|
||||||
|
<varlistentry>
|
||||||
|
<term> <option>--help-all</option> </term>
|
||||||
|
<listitem> <para>Show all options</para> </listitem>
|
||||||
|
</varlistentry>
|
||||||
|
<varlistentry>
|
||||||
|
<term> <option>--author</option> </term>
|
||||||
|
<listitem> <para>Show author information</para> </listitem>
|
||||||
|
</varlistentry>
|
||||||
|
<varlistentry>
|
||||||
|
<term> <option>-v</option>, <option>--version</option> </term>
|
||||||
|
<listitem> <para>Show version information</para> </listitem>
|
||||||
|
</varlistentry>
|
||||||
|
<varlistentry>
|
||||||
|
<term> <option>--license</option> </term>
|
||||||
|
<listitem> <para>Show license information</para> </listitem>
|
||||||
|
</varlistentry>
|
||||||
|
<varlistentry>
|
||||||
|
<term> <option>--</option> </term>
|
||||||
|
<listitem> <para>Indicates end of options</para> </listitem>
|
||||||
|
</varlistentry>
|
||||||
|
</variablelist>
|
||||||
|
<!-- TODO * add all the rest of the options, but maybe find an automated
|
||||||
|
way to keep it up to date -->
|
||||||
|
</para>
|
||||||
|
</refsect1>
|
||||||
|
<refsect1>
|
||||||
|
<title>COPYRIGHT</title>
|
||||||
|
<para>
|
||||||
|
This manual page was written by Jonathan Patrick Davies
|
||||||
|
<email>jpatrick@ubuntu.com</email> for the
|
||||||
|
<productname>Ubuntu</productname> system (but may be used by others).
|
||||||
|
Permission is granted to copy, distribute and/or modify this document
|
||||||
|
under the terms of the <acronym>GNU</acronym> General Public License,
|
||||||
|
Version 2 or any later version published by the Free Software Foundation.
|
||||||
|
</para>
|
||||||
|
<para>
|
||||||
|
On Debian systems, the complete text of the GNU General Public
|
||||||
|
License can be found in
|
||||||
|
<filename>/usr/share/common-licenses/GPL</filename>.
|
||||||
|
</para>
|
||||||
|
</refsect1>
|
||||||
|
</refentry>
|
@ -0,0 +1,127 @@
|
|||||||
|
# Default version for this component
|
||||||
|
%define kdecomp kerry
|
||||||
|
%define version 0.2.1
|
||||||
|
%define release 1
|
||||||
|
|
||||||
|
# If TDE is built in a specific prefix (e.g. /opt/trinity), the release will be suffixed with ".opt".
|
||||||
|
%if "%{?_prefix}" != "/usr"
|
||||||
|
%define _variant .opt
|
||||||
|
%define _docdir %{_prefix}/share/doc
|
||||||
|
%endif
|
||||||
|
|
||||||
|
# TDE 3.5.13 specific building variables
|
||||||
|
BuildRequires: autoconf automake libtool m4
|
||||||
|
%define tde_docdir %{_docdir}/kde
|
||||||
|
%define tde_includedir %{_includedir}/kde
|
||||||
|
%define tde_libdir %{_libdir}/trinity
|
||||||
|
|
||||||
|
|
||||||
|
Name: trinity-%{kdecomp}
|
||||||
|
Summary: a KDE frontend for the Beagle desktop search daemon [Trinity]
|
||||||
|
Version: %{?version}
|
||||||
|
Release: %{?release}%{?dist}%{?_variant}
|
||||||
|
|
||||||
|
License: GPLv2+
|
||||||
|
Group: Applications/Utilities
|
||||||
|
|
||||||
|
Vendor: Trinity Project
|
||||||
|
Packager: Francois Andriot <francois.andriot@free.fr>
|
||||||
|
URL: http://en.opensuse.org/Kerry
|
||||||
|
|
||||||
|
Prefix: %{_prefix}
|
||||||
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||||
|
|
||||||
|
Source0: %{kdecomp}-3.5.13.tar.gz
|
||||||
|
Source1: kerry.1.docbook
|
||||||
|
|
||||||
|
BuildRequires: tqtinterface-devel
|
||||||
|
BuildRequires: trinity-kdelibs-devel
|
||||||
|
BuildRequires: trinity-kdebase-devel
|
||||||
|
BuildRequires: desktop-file-utils
|
||||||
|
BuildRequires: gettext
|
||||||
|
|
||||||
|
BuildRequires: libbeagle-devel >= 0.3.0
|
||||||
|
#BuildRequires: docbook-utils
|
||||||
|
BuildRequires: docbook2X
|
||||||
|
|
||||||
|
%description
|
||||||
|
Kerry is a Trinity frontend for the Beagle desktop search daemon.
|
||||||
|
|
||||||
|
A program for indexing and searching user's data. At the moment, it can index
|
||||||
|
filesystems, chat logs, mail and data, RSS and other.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q -n applications/%{kdecomp}
|
||||||
|
|
||||||
|
# Ugly hack to modify TQT include directory inside autoconf files.
|
||||||
|
# If TQT detection fails, it fallbacks to TQT4 instead of TQT3 !
|
||||||
|
sed -i admin/acinclude.m4.in \
|
||||||
|
-e "s,/usr/include/tqt,%{_includedir}/tqt,g"
|
||||||
|
|
||||||
|
%__cp -f "/usr/share/aclocal/libtool.m4" "admin/libtool.m4.in"
|
||||||
|
%__cp -f "/usr/share/libtool/config/ltmain.sh" "admin/ltmain.sh"
|
||||||
|
%__make -f "admin/Makefile.common"
|
||||||
|
|
||||||
|
|
||||||
|
%build
|
||||||
|
export PATH="%{_bindir}:${PATH}"
|
||||||
|
export LDFLAGS="-L%{_libdir} -I%{_includedir}"
|
||||||
|
|
||||||
|
%configure \
|
||||||
|
--disable-rpath \
|
||||||
|
--with-extra-includes=%{_includedir}/tqt
|
||||||
|
|
||||||
|
%__make %{?_smp_mflags}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
%install
|
||||||
|
export PATH="%{_bindir}:${PATH}"
|
||||||
|
%__rm -rf %{buildroot}
|
||||||
|
%__make install DESTDIR=%{buildroot}
|
||||||
|
|
||||||
|
#%__install -D -m 644 %{SOURCE1} %{buildroot}%{_mandir}/man1/kerry.1.docbook
|
||||||
|
#docbook2man %{buildroot}%{_mandir}/man1/kerry.1.docbook
|
||||||
|
|
||||||
|
%find_lang %{kdecomp}
|
||||||
|
|
||||||
|
%clean
|
||||||
|
%__rm -rf %{buildroot}
|
||||||
|
|
||||||
|
|
||||||
|
%post
|
||||||
|
/sbin/ldconfig
|
||||||
|
touch --no-create %{_datadir}/icons/hicolor || :
|
||||||
|
gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
|
||||||
|
|
||||||
|
%postun
|
||||||
|
/sbin/ldconfig
|
||||||
|
touch --no-create %{_datadir}/icons/hicolor || :
|
||||||
|
gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
|
||||||
|
|
||||||
|
|
||||||
|
%files -f %{kdecomp}.lang
|
||||||
|
%defattr(-,root,root,-)
|
||||||
|
%{_datadir}/locale/*/LC_MESSAGES/kcmbeagle.mo
|
||||||
|
%{_bindir}/beagled-shutdown
|
||||||
|
%{_bindir}/kerry
|
||||||
|
%{_libdir}/libkdeinit_kerry.la
|
||||||
|
%{_libdir}/libkdeinit_kerry.so
|
||||||
|
%{tde_libdir}/kcm_beagle.la
|
||||||
|
%{tde_libdir}/kcm_beagle.so
|
||||||
|
%{tde_libdir}/kerry.la
|
||||||
|
%{tde_libdir}/kerry.so
|
||||||
|
%{_datadir}/applications/kde/kcmbeagle.desktop
|
||||||
|
%{_datadir}/applications/kde/kerry.desktop
|
||||||
|
%{_datadir}/applnk/.hidden/kcmkerry.desktop
|
||||||
|
%{_datadir}/apps/kerry/search-running.mng
|
||||||
|
%{_datadir}/autostart/beagled.desktop
|
||||||
|
%{_datadir}/autostart/kerry.autostart.desktop
|
||||||
|
%{_datadir}/icons/hicolor/*/*/*
|
||||||
|
|
||||||
|
|
||||||
|
%Changelog
|
||||||
|
* Fri Nov 25 2011 Francois Andriot <francois.andriot@free.fr> - 0.2.1-1
|
||||||
|
- Initial build for RHEL 5, RHEL 6, Fedora 15, Fedora 16
|
@ -0,0 +1,176 @@
|
|||||||
|
/* XPM */
|
||||||
|
static char *kile[] = {
|
||||||
|
/* columns rows colors chars-per-pixel */
|
||||||
|
"32 32 138 2",
|
||||||
|
" c black",
|
||||||
|
". c #015FBC",
|
||||||
|
"X c #1067BE",
|
||||||
|
"o c #005DC0",
|
||||||
|
"O c #0063C3",
|
||||||
|
"+ c #006BC9",
|
||||||
|
"@ c #0A6EC9",
|
||||||
|
"# c #0071CC",
|
||||||
|
"$ c #0E76CE",
|
||||||
|
"% c #0076D0",
|
||||||
|
"& c #007BD2",
|
||||||
|
"* c #0978D0",
|
||||||
|
"= c #1467C0",
|
||||||
|
"- c #1468C1",
|
||||||
|
"; c #136FC9",
|
||||||
|
": c #1A6AC1",
|
||||||
|
"> c #1372CA",
|
||||||
|
", c #1C7BCE",
|
||||||
|
"< c #1B7DD0",
|
||||||
|
"1 c #267ACD",
|
||||||
|
"2 c #2878C6",
|
||||||
|
"3 c #2C7ECE",
|
||||||
|
"4 c #207ED0",
|
||||||
|
"5 c #3D7BC1",
|
||||||
|
"6 c #3F83BB",
|
||||||
|
"7 c #0080D6",
|
||||||
|
"8 c #0086DA",
|
||||||
|
"9 c #008ADC",
|
||||||
|
"0 c #0A85D8",
|
||||||
|
"q c #0C8BDB",
|
||||||
|
"w c #1A81D2",
|
||||||
|
"e c #2F81D0",
|
||||||
|
"r c #2B89D4",
|
||||||
|
"t c #2A98D9",
|
||||||
|
"y c #3D80C2",
|
||||||
|
"u c #3D8ACB",
|
||||||
|
"i c #328BD5",
|
||||||
|
"p c #3985D0",
|
||||||
|
"a c #3A89D3",
|
||||||
|
"s c #3D90CF",
|
||||||
|
"d c #3296DC",
|
||||||
|
"f c #3D92D0",
|
||||||
|
"g c #399CDF",
|
||||||
|
"h c #399EE0",
|
||||||
|
"j c #20A0E4",
|
||||||
|
"k c #4981C2",
|
||||||
|
"l c #468DD3",
|
||||||
|
"z c #4C8DD2",
|
||||||
|
"x c #4891D6",
|
||||||
|
"c c #518EC8",
|
||||||
|
"v c #5C8EC5",
|
||||||
|
"b c #5B9ECF",
|
||||||
|
"n c #5493D5",
|
||||||
|
"m c #519CD1",
|
||||||
|
"M c #549ADA",
|
||||||
|
"N c #5D98D7",
|
||||||
|
"B c #5F9AD8",
|
||||||
|
"V c #4FA2DF",
|
||||||
|
"C c #53A0DD",
|
||||||
|
"Z c #5BA4D2",
|
||||||
|
"A c #5BA3DE",
|
||||||
|
"S c #40A7E4",
|
||||||
|
"D c #4DA4E1",
|
||||||
|
"F c #53A9E3",
|
||||||
|
"G c #629CD9",
|
||||||
|
"H c #7999C3",
|
||||||
|
"J c #6DA2DB",
|
||||||
|
"K c #79A8CD",
|
||||||
|
"L c #71A5DC",
|
||||||
|
"P c #73A8DD",
|
||||||
|
"I c #7AABDE",
|
||||||
|
"U c #6DADE2",
|
||||||
|
"Y c #63B2E6",
|
||||||
|
"T c #77AEE1",
|
||||||
|
"R c #75B4E5",
|
||||||
|
"E c #7EB3E3",
|
||||||
|
"W c #79BAE8",
|
||||||
|
"Q c #829DC4",
|
||||||
|
"! c #82A2C7",
|
||||||
|
"~ c #82A7CA",
|
||||||
|
"^ c #89B6D8",
|
||||||
|
"/ c #88BCDF",
|
||||||
|
"( c #92A6C5",
|
||||||
|
") c #92AECA",
|
||||||
|
"_ c #91B3CF",
|
||||||
|
"` c #96B6D0",
|
||||||
|
"' c #9BBCD5",
|
||||||
|
"] c #84B2E1",
|
||||||
|
"[ c #8EB7E3",
|
||||||
|
"{ c #8EBBE5",
|
||||||
|
"} c #92BAE5",
|
||||||
|
"| c #98BEE6",
|
||||||
|
" . c #A1BED5",
|
||||||
|
".. c #B6B6C5",
|
||||||
|
"X. c #87C9EF",
|
||||||
|
"o. c #95C2E9",
|
||||||
|
"O. c #9CC0E7",
|
||||||
|
"+. c #9AC5EA",
|
||||||
|
"@. c #ADC2D6",
|
||||||
|
"#. c #BEC1CF",
|
||||||
|
"$. c #B2C2D4",
|
||||||
|
"%. c #B6C4DA",
|
||||||
|
"&. c #BDC8D7",
|
||||||
|
"*. c #A4C5E9",
|
||||||
|
"=. c #A1C8E3",
|
||||||
|
"-. c #ABCBEB",
|
||||||
|
";. c #AAD0EF",
|
||||||
|
":. c #AAD3F0",
|
||||||
|
">. c #B1CDEC",
|
||||||
|
",. c #B5D0ED",
|
||||||
|
"<. c #BDD5ED",
|
||||||
|
"1. c #B7D6F1",
|
||||||
|
"2. c #B4D8F2",
|
||||||
|
"3. c #BBD7F0",
|
||||||
|
"4. c #BFE6F9",
|
||||||
|
"5. c #C0C9D7",
|
||||||
|
"6. c #C1CCDD",
|
||||||
|
"7. c #C0D6EF",
|
||||||
|
"8. c #C6DBEC",
|
||||||
|
"9. c #C8D2E0",
|
||||||
|
"0. c #C0D7F0",
|
||||||
|
"q. c #C3DAF0",
|
||||||
|
"w. c #C9DDF2",
|
||||||
|
"e. c #D1DEEC",
|
||||||
|
"r. c #C6E8FA",
|
||||||
|
"t. c #CDE0F3",
|
||||||
|
"y. c #D2E3F4",
|
||||||
|
"u. c #D4EBF9",
|
||||||
|
"i. c #DBE8F6",
|
||||||
|
"p. c #DBEDF9",
|
||||||
|
"a. c #E1ECF7",
|
||||||
|
"s. c #E5EEF8",
|
||||||
|
"d. c #E6F1F9",
|
||||||
|
"f. c #E9F3FB",
|
||||||
|
"g. c #F1F6FB",
|
||||||
|
"h. c #F6F9FD",
|
||||||
|
"j. c #FEFEFE",
|
||||||
|
"k. c None",
|
||||||
|
/* pixels */
|
||||||
|
"k.k.k.k.k.k.k.k.k.k.k.k.k.k.k.k.k.k.k.k.k.k.k.k.k.k.k.k.k.k.k.k.",
|
||||||
|
"k.k.k.k.k.k.k.k.k.k.k.k.k.k.k.k.k.k.k.k.k.k.k.k.k.k.k.k.k.k.k.k.",
|
||||||
|
"k.k.k.k.k.k.k.k.k.k.k... .%.&.&.&.&.@.' ....k.k.k.k.k.k.k.k.k.k.",
|
||||||
|
"k.k.k.k.k.k.k.k.k.....9.r.p.f.f.f.f.u.4.<.$...k.k.k.k.k.k.k.k.k.",
|
||||||
|
"k.k.k.k.k.k.k...#.e.s.s.s.s.s.s.f.d.s.s.d.s.8.%.....k.k.k.k.k.k.",
|
||||||
|
"k.k.k.k.k.k...6.e.i.i.i.i.i.i.i.i.i.i.i.i.i.p.y.=.` k.k.k.k.k.k.",
|
||||||
|
"k.k.k.k.k...6.t.y.w.w.y.y.w.w.y.t.t.t.y.t.w.y.w.w.X._ ..k.k.k.k.",
|
||||||
|
"k.k.k.k...%.7.7.q.8.0.8.7.w.w.0.7.w.q.7.8.q.7.8.8.3./ ..k.k.k.k.",
|
||||||
|
"k.k.k...^ 1.y.t.t.<.>.,.>.7.w.y.i.y.y.0.>.>.>.1.>.1.+.j ..k.k.k.",
|
||||||
|
"k.k.k...Y s.j.j.j.w.-.-.-.-.g.j.j.j.s.>.>.-.>.-.-.-.*.S Z ..k.k.",
|
||||||
|
"k.k._ t R i.j.j.j.7.*.| *.i.j.j.j.g.>.*.O.O.| | | O.| F t ) k.k.",
|
||||||
|
"k.k.K q U i.j.j.j.>.} } 7.h.j.j.h.0.| } } } } } } } } D 9 K k.k.",
|
||||||
|
"k...m 9 C y.j.j.j.-.^ O.h.j.j.h.>.] ] ] ^ ] ] } -.=.o.W 9 9 ..k.",
|
||||||
|
"k...8 8 d t.j.j.j.*.[ s.j.j.h.q.] ] ] ] I I ] w.j.a.O.f.q 8 N ..",
|
||||||
|
"..~ 7 7 0 2.j.j.j.*.y.j.j.j.>.^ ] I I G J J | f.-.y.C r.h 7 s ..",
|
||||||
|
"..f 7 7 7 :.j.j.j.i.j.j.j.i.I P L L G G G G | s.] 8.d u.h 7 s ..",
|
||||||
|
"..f & & & :.j.j.j.j.j.j.j.s.J G G N N n n n L s.y.i.y.p.& & f ..",
|
||||||
|
"..u & & & :.j.j.j.j.j.j.j.j.<.G n n n n l z l U i.j.y.D & & u ..",
|
||||||
|
"..u % % % -.j.j.j.q.o.h.j.j.h.*.z z l p e < * % % % % % % % u ..",
|
||||||
|
"..u # % # :.j.j.j.F w 1.j.j.j.g.M 1 , $ r +.:.:.:.:.-.:.# % u ..",
|
||||||
|
"k...# # # -.j.j.j.C # < p.j.j.j.y.i # # r ,.t.q.q.t.q.t.# # u ..",
|
||||||
|
"k.k.c + # -.j.j.j.M + + B d.j.j.j.;.+ + # < < < w < < < + + ! ..",
|
||||||
|
"k.k.H + + -.j.j.j.M + + @ T j.j.j.j.] @ , E a E { { { { + H k.k.",
|
||||||
|
"k.k.( 2 O -.j.j.j.M + O + @ 7.j.j.j.s.x a s.P s.j.h.j.j.+ H k.k.",
|
||||||
|
"k.k...v O 1 a p p ; O O O + ; a a a a 3 O O O O O O O O 5 6 k.k.",
|
||||||
|
"k.k.k...O O o . O o o O o o O + O + O O O o O O O O O o ....k.k.",
|
||||||
|
"k.k.k.k...5 . o o . o o o O O + O O o o . o o o . o - Q k.k.k.k.",
|
||||||
|
"k.k.k.k...Q o o o o o o o o o o o o o o o o o o . o Q ..k.k.k.k.",
|
||||||
|
"k.k.k.k.k.k.Q 5 o o o o o o o o o o o o o o o o 5 Q k.k.k.k.k.k.",
|
||||||
|
"k.k.k.k.k.k.....= o o o o o o o o o o o o o o . ....k.k.k.k.k.k.",
|
||||||
|
"k.k.k.k.k.k.k.k.....Q 5 o o o o o o o o - : ....k.k.k.k.k.k.k.k.",
|
||||||
|
"k.k.k.k.k.k.k.k.k.k.....k H H H H H H k 5 ..k.k.k.k.k.k.k.k.k.k."
|
||||||
|
};
|
@ -0,0 +1,626 @@
|
|||||||
|
# Default version for this component
|
||||||
|
%define kdecomp kile
|
||||||
|
%define version 2.0.2
|
||||||
|
%define release 1
|
||||||
|
|
||||||
|
# If TDE is built in a specific prefix (e.g. /opt/trinity), the release will be suffixed with ".opt".
|
||||||
|
%if "%{?_prefix}" != "/usr"
|
||||||
|
%define _variant .opt
|
||||||
|
%define _docdir %{_prefix}/share/doc
|
||||||
|
%endif
|
||||||
|
|
||||||
|
# TDE 3.5.13 specific building variables
|
||||||
|
BuildRequires: autoconf automake libtool m4
|
||||||
|
%define tde_docdir %{_docdir}/kde
|
||||||
|
%define tde_includedir %{_includedir}/kde
|
||||||
|
%define tde_libdir %{_libdir}/trinity
|
||||||
|
|
||||||
|
|
||||||
|
Name: trinity-%{kdecomp}
|
||||||
|
Summary: KDE Integrated LaTeX Environment [Trinity]
|
||||||
|
Version: %{?version}
|
||||||
|
Release: %{?release}%{?dist}%{?_variant}
|
||||||
|
|
||||||
|
License: GPLv2+
|
||||||
|
Group: Applications/Publishing
|
||||||
|
|
||||||
|
Vendor: Trinity Project
|
||||||
|
Packager: Francois Andriot <francois.andriot@free.fr>
|
||||||
|
URL: http://www.trinitydesktop.org/
|
||||||
|
|
||||||
|
Prefix: %{_prefix}
|
||||||
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||||
|
|
||||||
|
Source0: %{kdecomp}-3.5.13.tar.gz
|
||||||
|
Source1: %{kdecomp}.xpm
|
||||||
|
|
||||||
|
BuildRequires: tqtinterface-devel
|
||||||
|
BuildRequires: trinity-kdelibs-devel
|
||||||
|
BuildRequires: trinity-kdebase-devel
|
||||||
|
BuildRequires: desktop-file-utils
|
||||||
|
BuildRequires: gettext
|
||||||
|
|
||||||
|
%package i18n-ar
|
||||||
|
Group: Applications/Publishing
|
||||||
|
Requires: %{name} >= %{version}
|
||||||
|
Provides: trinity-kile-i18n
|
||||||
|
Summary: Arabic (ar) translations for Kile [Trinity]
|
||||||
|
%description i18n-ar
|
||||||
|
This package contains the Arabic translations for Kile.
|
||||||
|
|
||||||
|
%package i18n-bg
|
||||||
|
Group: Applications/Publishing
|
||||||
|
Requires: %{name} >= %{version}
|
||||||
|
Provides: trinity-kile-i18n
|
||||||
|
Summary: Bulgarian (bg) translations for Kile [Trinity]
|
||||||
|
%description i18n-bg
|
||||||
|
This package contains the Bulgarian translations for Kile.
|
||||||
|
|
||||||
|
%package i18n-br
|
||||||
|
Group: Applications/Publishing
|
||||||
|
Requires: %{name} >= %{version}
|
||||||
|
Provides: trinity-kile-i18n
|
||||||
|
Summary: Brazilian (br) translations for Kile [Trinity]
|
||||||
|
%description i18n-br
|
||||||
|
This package contains the Brazilian translations for Kile.
|
||||||
|
|
||||||
|
%package i18n-ca
|
||||||
|
Group: Applications/Publishing
|
||||||
|
Requires: %{name} >= %{version}
|
||||||
|
Provides: trinity-kile-i18n
|
||||||
|
Summary: Catalan (ca) translations for Kile [Trinity]
|
||||||
|
%description i18n-ca
|
||||||
|
This package contains the Catalan translations for Kile.
|
||||||
|
|
||||||
|
%package i18n-cs
|
||||||
|
Group: Applications/Publishing
|
||||||
|
Requires: %{name} >= %{version}
|
||||||
|
Provides: trinity-kile-i18n
|
||||||
|
Summary: Czech (cs) translations for Kile [Trinity]
|
||||||
|
%description i18n-cs
|
||||||
|
This package contains the Czech translations for Kile.
|
||||||
|
|
||||||
|
%package i18n-cy
|
||||||
|
Group: Applications/Publishing
|
||||||
|
Requires: %{name} >= %{version}
|
||||||
|
Provides: trinity-kile-i18n
|
||||||
|
Summary: Welsh (cy) translations for Kile [Trinity]
|
||||||
|
%description i18n-cy
|
||||||
|
This package contains the Welsh translations for Kile.
|
||||||
|
|
||||||
|
%package i18n-da
|
||||||
|
Group: Applications/Publishing
|
||||||
|
Requires: %{name} >= %{version}
|
||||||
|
Provides: trinity-kile-i18n
|
||||||
|
Summary: Danish (da) translations for Kile [Trinity]
|
||||||
|
%description i18n-da
|
||||||
|
This package contains the Danish translations for Kile.
|
||||||
|
|
||||||
|
%package i18n-de
|
||||||
|
Group: Applications/Publishing
|
||||||
|
Requires: %{name} >= %{version}
|
||||||
|
Provides: trinity-kile-i18n
|
||||||
|
Summary: German (de) translations for Kile [Trinity]
|
||||||
|
%description i18n-de
|
||||||
|
This package contains the German translations for Kile.
|
||||||
|
|
||||||
|
%package i18n-el
|
||||||
|
Group: Applications/Publishing
|
||||||
|
Requires: %{name} >= %{version}
|
||||||
|
Provides: trinity-kile-i18n
|
||||||
|
Summary: Greek (el) translations for Kile [Trinity]
|
||||||
|
%description i18n-el
|
||||||
|
This package contains the greek translations for Kile.
|
||||||
|
|
||||||
|
%package i18n-engb
|
||||||
|
Group: Applications/Publishing
|
||||||
|
Requires: %{name} >= %{version}
|
||||||
|
Provides: trinity-kile-i18n
|
||||||
|
Summary: British English (en_GB) translations for Kile [Trinity]
|
||||||
|
%description i18n-engb
|
||||||
|
This package contains the British English (en_GB) translations for Kile [Trinity].
|
||||||
|
|
||||||
|
%package i18n-es
|
||||||
|
Group: Applications/Publishing
|
||||||
|
Requires: %{name} >= %{version}
|
||||||
|
Provides: trinity-kile-i18n
|
||||||
|
Summary: Spanish (es) translations for Kile [Trinity]
|
||||||
|
%description i18n-es
|
||||||
|
This package contains the Spanish translations for Kile.
|
||||||
|
|
||||||
|
%package i18n-et
|
||||||
|
Group: Applications/Publishing
|
||||||
|
Requires: %{name} >= %{version}
|
||||||
|
Provides: trinity-kile-i18n
|
||||||
|
Summary: Estonian (et) translations for Kile [Trinity]
|
||||||
|
%description i18n-et
|
||||||
|
This package contains the Estonian translations for Kile.
|
||||||
|
|
||||||
|
%package i18n-eu
|
||||||
|
Group: Applications/Publishing
|
||||||
|
Requires: %{name} >= %{version}
|
||||||
|
Provides: trinity-kile-i18n
|
||||||
|
Summary: Basque (eu) translations for Kile [Trinity]
|
||||||
|
%description i18n-eu
|
||||||
|
This package contains the Basque translations for Kile.
|
||||||
|
|
||||||
|
%package i18n-fi
|
||||||
|
Group: Applications/Publishing
|
||||||
|
Requires: %{name} >= %{version}
|
||||||
|
Provides: trinity-kile-i18n
|
||||||
|
Summary: Finnish (fi) translations for Kile [Trinity]
|
||||||
|
%description i18n-fi
|
||||||
|
This package contains the Finnish translations for Kile.
|
||||||
|
|
||||||
|
%package i18n-fr
|
||||||
|
Group: Applications/Publishing
|
||||||
|
Requires: %{name} >= %{version}
|
||||||
|
Provides: trinity-kile-i18n
|
||||||
|
Summary: French (fr) translations for Kile [Trinity]
|
||||||
|
%description i18n-fr
|
||||||
|
This package contains the French translations for Kile.
|
||||||
|
|
||||||
|
%package i18n-ga
|
||||||
|
Group: Applications/Publishing
|
||||||
|
Requires: %{name} >= %{version}
|
||||||
|
Provides: trinity-kile-i18n
|
||||||
|
Summary: Irish Gaelic (ga) translations for Kile [Trinity]
|
||||||
|
%description i18n-ga
|
||||||
|
This package contains the Irish Gaelic translations for Kile.
|
||||||
|
|
||||||
|
%package i18n-gl
|
||||||
|
Group: Applications/Publishing
|
||||||
|
Requires: %{name} >= %{version}
|
||||||
|
Provides: trinity-kile-i18n
|
||||||
|
Summary: Galician (gl) translations for Kile [Trinity]
|
||||||
|
%description i18n-gl
|
||||||
|
This package contains the Galician translations for Kile.
|
||||||
|
|
||||||
|
%package i18n-hi
|
||||||
|
Group: Applications/Publishing
|
||||||
|
Requires: %{name} >= %{version}
|
||||||
|
Provides: trinity-kile-i18n
|
||||||
|
Summary: Hindi (hi) translations for Kile [Trinity]
|
||||||
|
%description i18n-hi
|
||||||
|
This package contains the Hindi translations for Kile.
|
||||||
|
|
||||||
|
%package i18n-hu
|
||||||
|
Group: Applications/Publishing
|
||||||
|
Requires: %{name} >= %{version}
|
||||||
|
Provides: trinity-kile-i18n
|
||||||
|
Summary: Hungarian (hu) translations for Kile [Trinity]
|
||||||
|
%description i18n-hu
|
||||||
|
This package contains the Hungarian translations for Kile.
|
||||||
|
|
||||||
|
%package i18n-is
|
||||||
|
Group: Applications/Publishing
|
||||||
|
Requires: %{name} >= %{version}
|
||||||
|
Provides: trinity-kile-i18n
|
||||||
|
Summary: Icelandic (is) translations for Kile [Trinity]
|
||||||
|
%description i18n-is
|
||||||
|
This package contains the Icelandic translations for Kile.
|
||||||
|
|
||||||
|
%package i18n-it
|
||||||
|
Group: Applications/Publishing
|
||||||
|
Requires: %{name} >= %{version}
|
||||||
|
Provides: trinity-kile-i18n
|
||||||
|
Summary: Italian (it) translations for Kile [Trinity]
|
||||||
|
%description i18n-it
|
||||||
|
This package contains the Italian translations for Kile.
|
||||||
|
|
||||||
|
%package i18n-ja
|
||||||
|
Group: Applications/Publishing
|
||||||
|
Requires: %{name} >= %{version}
|
||||||
|
Provides: trinity-kile-i18n
|
||||||
|
Summary: Japanese (ja) translations for Kile [Trinity]
|
||||||
|
%description i18n-ja
|
||||||
|
This package contains the Japanese translations for Kile.
|
||||||
|
|
||||||
|
%package i18n-lt
|
||||||
|
Group: Applications/Publishing
|
||||||
|
Requires: %{name} >= %{version}
|
||||||
|
Provides: trinity-kile-i18n
|
||||||
|
Summary: Lithuanian (lt) translations for Kile [Trinity]
|
||||||
|
%description i18n-lt
|
||||||
|
This package contains the Lithuanian translations for Kile.
|
||||||
|
|
||||||
|
%package i18n-ms
|
||||||
|
Group: Applications/Publishing
|
||||||
|
Requires: %{name} >= %{version}
|
||||||
|
Provides: trinity-kile-i18n
|
||||||
|
Summary: Malay (ms) translations for Kile [Trinity]
|
||||||
|
%description i18n-ms
|
||||||
|
This package contains the Malay translations for Kile.
|
||||||
|
|
||||||
|
%package i18n-mt
|
||||||
|
Group: Applications/Publishing
|
||||||
|
Requires: %{name} >= %{version}
|
||||||
|
Provides: trinity-kile-i18n
|
||||||
|
Summary: Maltese (mt) translations for Kile [Trinity]
|
||||||
|
%description i18n-mt
|
||||||
|
This package contains the Maltese translations for Kile.
|
||||||
|
|
||||||
|
%package i18n-nb
|
||||||
|
Group: Applications/Publishing
|
||||||
|
Requires: %{name} >= %{version}
|
||||||
|
Provides: trinity-kile-i18n
|
||||||
|
Summary: Norwegian Bookmal (nb) translations for Kile [Trinity]
|
||||||
|
%description i18n-nb
|
||||||
|
This package contains the Norwegian Bookmal translations for Kile.
|
||||||
|
|
||||||
|
%package i18n-nds
|
||||||
|
Group: Applications/Publishing
|
||||||
|
Requires: %{name} >= %{version}
|
||||||
|
Provides: trinity-kile-i18n
|
||||||
|
Summary: Low Saxon (nds) translations for Kile [Trinity]
|
||||||
|
%description i18n-nds
|
||||||
|
This package contains the Low Saxon translations for Kile.
|
||||||
|
|
||||||
|
%package i18n-nl
|
||||||
|
Group: Applications/Publishing
|
||||||
|
Requires: %{name} >= %{version}
|
||||||
|
Provides: trinity-kile-i18n
|
||||||
|
Summary: Dutch (nl) translations for Kile [Trinity]
|
||||||
|
%description i18n-nl
|
||||||
|
This package contains the Dutch translations for Kile.
|
||||||
|
|
||||||
|
%package i18n-nn
|
||||||
|
Group: Applications/Publishing
|
||||||
|
Requires: %{name} >= %{version}
|
||||||
|
Provides: trinity-kile-i18n
|
||||||
|
Summary: Norwegian Nynorsk (nn) translations for Kile [Trinity]
|
||||||
|
%description i18n-nn
|
||||||
|
This package contains the Norwegian Nynorsk translations for Kile.
|
||||||
|
|
||||||
|
%package i18n-pa
|
||||||
|
Group: Applications/Publishing
|
||||||
|
Requires: %{name} >= %{version}
|
||||||
|
Provides: trinity-kile-i18n
|
||||||
|
Summary: Punjabi (pa) translations for Kile [Trinity]
|
||||||
|
%description i18n-pa
|
||||||
|
This package contains the Punjabi translations for Kile.
|
||||||
|
|
||||||
|
%package i18n-pl
|
||||||
|
Group: Applications/Publishing
|
||||||
|
Requires: %{name} >= %{version}
|
||||||
|
Provides: trinity-kile-i18n
|
||||||
|
Summary: Polish (pl) translations for Kile [Trinity]
|
||||||
|
%description i18n-pl
|
||||||
|
This package contains the Polish translations for Kile.
|
||||||
|
|
||||||
|
%package i18n-pt
|
||||||
|
Group: Applications/Publishing
|
||||||
|
Requires: %{name} >= %{version}
|
||||||
|
Provides: trinity-kile-i18n
|
||||||
|
Summary: Portuguese (pt) translations for Kile [Trinity]
|
||||||
|
%description i18n-pt
|
||||||
|
This package contains the Portuguese translations for Kile.
|
||||||
|
|
||||||
|
%package i18n-ptbr
|
||||||
|
Group: Applications/Publishing
|
||||||
|
Requires: %{name} >= %{version}
|
||||||
|
Provides: trinity-kile-i18n
|
||||||
|
Summary: Brazilian Portuguese (pt_BR) translations for Kile [Trinity]
|
||||||
|
%description i18n-ptbr
|
||||||
|
This package contains the Brazilian Portuguese translations for Kile.
|
||||||
|
|
||||||
|
%package i18n-ro
|
||||||
|
Group: Applications/Publishing
|
||||||
|
Requires: %{name} >= %{version}
|
||||||
|
Provides: trinity-kile-i18n
|
||||||
|
Summary: Romanian (ro) translations for Kile [Trinity]
|
||||||
|
%description i18n-ro
|
||||||
|
This package contains the Romanian translations for Kile.
|
||||||
|
|
||||||
|
%package i18n-ru
|
||||||
|
Group: Applications/Publishing
|
||||||
|
Requires: %{name} >= %{version}
|
||||||
|
Provides: trinity-kile-i18n
|
||||||
|
Summary: Russian (ru) translations for Kile [Trinity]
|
||||||
|
%description i18n-ru
|
||||||
|
This package contains the Russian translations for Kile.
|
||||||
|
|
||||||
|
%package i18n-rw
|
||||||
|
Group: Applications/Publishing
|
||||||
|
Requires: %{name} >= %{version}
|
||||||
|
Provides: trinity-kile-i18n
|
||||||
|
Summary: Kinyarwanda (rw) translations for Kile [Trinity]
|
||||||
|
%description i18n-rw
|
||||||
|
This package contains the Kinyarwanda translations for Kile.
|
||||||
|
|
||||||
|
%package i18n-sk
|
||||||
|
Group: Applications/Publishing
|
||||||
|
Requires: %{name} >= %{version}
|
||||||
|
Provides: trinity-kile-i18n
|
||||||
|
Summary: Slovak (sk) translations for Kile [Trinity]
|
||||||
|
%description i18n-sk
|
||||||
|
This package contains the Slovak translations for Kile.
|
||||||
|
|
||||||
|
%package i18n-sr
|
||||||
|
Group: Applications/Publishing
|
||||||
|
Requires: %{name} >= %{version}
|
||||||
|
Provides: trinity-kile-i18n
|
||||||
|
Summary: Serbian (sr) translations for Kile [Trinity]
|
||||||
|
%description i18n-sr
|
||||||
|
This package contains the Serbian translations for Kile.
|
||||||
|
|
||||||
|
%package i18n-srlatin
|
||||||
|
Group: Applications/Publishing
|
||||||
|
Requires: %{name} >= %{version}
|
||||||
|
Provides: trinity-kile-i18n
|
||||||
|
Summary: Latin Serbian (sr@Latn) translations for Kile [Trinity]
|
||||||
|
%description i18n-srlatin
|
||||||
|
This package contains the Latin Serbian translations for Kile.
|
||||||
|
|
||||||
|
%package i18n-sv
|
||||||
|
Group: Applications/Publishing
|
||||||
|
Requires: %{name} >= %{version}
|
||||||
|
Provides: trinity-kile-i18n
|
||||||
|
Summary: Swedish (sv) translations for Kile [Trinity]
|
||||||
|
%description i18n-sv
|
||||||
|
This package contains the Swedish translations for Kile.
|
||||||
|
|
||||||
|
%package i18n-ta
|
||||||
|
Group: Applications/Publishing
|
||||||
|
Requires: %{name} >= %{version}
|
||||||
|
Provides: trinity-kile-i18n
|
||||||
|
Summary: Tamil (ta) translations for Kile [Trinity]
|
||||||
|
%description i18n-ta
|
||||||
|
This package contains the Tamil translations for Kile.
|
||||||
|
|
||||||
|
%package i18n-th
|
||||||
|
Group: Applications/Publishing
|
||||||
|
Requires: %{name} >= %{version}
|
||||||
|
Provides: trinity-kile-i18n
|
||||||
|
Summary: Thai (th) translations for Kile [Trinity]
|
||||||
|
%description i18n-th
|
||||||
|
This package contains the Thai translations for Kile.
|
||||||
|
|
||||||
|
%package i18n-tr
|
||||||
|
Group: Applications/Publishing
|
||||||
|
Requires: %{name} >= %{version}
|
||||||
|
Provides: trinity-kile-i18n
|
||||||
|
Summary: Turkish (tr) translations for Kile [Trinity]
|
||||||
|
%description i18n-tr
|
||||||
|
This package contains the Turkish translations for Kile.
|
||||||
|
|
||||||
|
%package i18n-uk
|
||||||
|
Group: Applications/Publishing
|
||||||
|
Requires: %{name} >= %{version}
|
||||||
|
Provides: trinity-kile-i18n
|
||||||
|
Summary: Ukrainian (uk) translations for Kile [Trinity]
|
||||||
|
%description i18n-uk
|
||||||
|
This package contains the Ukrainian translations for Kile.
|
||||||
|
|
||||||
|
%package i18n-zhcn
|
||||||
|
Group: Applications/Publishing
|
||||||
|
Requires: %{name} >= %{version}
|
||||||
|
Provides: trinity-kile-i18n
|
||||||
|
Summary: Chinese Simplified (zh_CN) translations for Kile [Trinity]
|
||||||
|
%description i18n-zhcn
|
||||||
|
This package contains the Chinese Simplified translations for Kile.
|
||||||
|
|
||||||
|
|
||||||
|
%description
|
||||||
|
Kile is a user-friendly LaTeX source editor and TeX shell for KDE.
|
||||||
|
|
||||||
|
The source editor is a multi-document editor designed for .tex and .bib
|
||||||
|
files. Menus, wizards and auto-completion are provided to assist with
|
||||||
|
tag insertion and code generation. A structural view of the document
|
||||||
|
assists with navigation within source files.
|
||||||
|
|
||||||
|
The TeX shell integrates the various tools required for TeX processing.
|
||||||
|
It assists with LaTeX compilation, DVI and postscript document viewing,
|
||||||
|
generation of bibliographies and indices and other common tasks.
|
||||||
|
|
||||||
|
Kile can support large projects consisting of several smaller files.
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q -n applications/%{kdecomp}
|
||||||
|
|
||||||
|
# Ugly hack to modify TQT include directory inside autoconf files.
|
||||||
|
# If TQT detection fails, it fallbacks to TQT4 instead of TQT3 !
|
||||||
|
%__sed -i admin/acinclude.m4.in \
|
||||||
|
-e "s,/usr/include/tqt,%{_includedir}/tqt,g" \
|
||||||
|
-e "s,kde_htmldir='.*',kde_htmldir='%{tde_docdir}/HTML',g"
|
||||||
|
|
||||||
|
%__cp -f "/usr/share/aclocal/libtool.m4" "admin/libtool.m4.in"
|
||||||
|
%__cp -f "/usr/share/libtool/config/ltmain.sh" "admin/ltmain.sh"
|
||||||
|
%__make -f "admin/Makefile.common"
|
||||||
|
|
||||||
|
|
||||||
|
%build
|
||||||
|
export PATH="%{_bindir}:${PATH}"
|
||||||
|
export LDFLAGS="-L%{_libdir} -I%{_includedir}"
|
||||||
|
|
||||||
|
%configure \
|
||||||
|
--disable-rpath \
|
||||||
|
--with-extra-includes=%{_includedir}/tqt
|
||||||
|
|
||||||
|
%__make %{?_smp_mflags}
|
||||||
|
|
||||||
|
|
||||||
|
%install
|
||||||
|
export PATH="%{_bindir}:${PATH}"
|
||||||
|
%__rm -rf %{buildroot}
|
||||||
|
%__make install DESTDIR=%{buildroot}
|
||||||
|
|
||||||
|
%__install -D -p -m0644 %{SOURCE1} %{buildroot}%{_datadir}/pixmaps/kile.xpm
|
||||||
|
%__chmod +x %{buildroot}%{_datadir}/apps/kile/test/runTests.sh
|
||||||
|
|
||||||
|
%clean
|
||||||
|
%__rm -rf %{buildroot}
|
||||||
|
|
||||||
|
|
||||||
|
%post
|
||||||
|
touch --no-create %{_datadir}/icons/hicolor || :
|
||||||
|
gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
|
||||||
|
|
||||||
|
%postun
|
||||||
|
touch --no-create %{_datadir}/icons/hicolor || :
|
||||||
|
gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
|
||||||
|
|
||||||
|
|
||||||
|
%files
|
||||||
|
%defattr(-,root,root,-)
|
||||||
|
%{_bindir}/kile
|
||||||
|
%{_datadir}/applications/kde/kile.desktop
|
||||||
|
%{_datadir}/apps/katepart/syntax/bibtex.xml
|
||||||
|
%{_datadir}/apps/katepart/syntax/latex.xml
|
||||||
|
%{_datadir}/apps/kconf_update
|
||||||
|
%{_datadir}/apps/kile
|
||||||
|
%{_datadir}/config.kcfg/kile.kcfg
|
||||||
|
%{_datadir}/icons/hicolor/*/apps/kile.png
|
||||||
|
%{_datadir}/icons/hicolor/scalable/apps/kile.svgz
|
||||||
|
%{tde_docdir}/HTML/en/kile
|
||||||
|
%{_datadir}/mimelnk/text/x-kilepr.desktop
|
||||||
|
%{_datadir}/pixmaps/kile.xpm
|
||||||
|
|
||||||
|
%files i18n-da
|
||||||
|
%lang(da) %{tde_docdir}/HTML/da/kile
|
||||||
|
%lang(da) %{_datadir}/locale/da/LC_MESSAGES/kile.mo
|
||||||
|
|
||||||
|
%files i18n-es
|
||||||
|
%lang(es) %{tde_docdir}/HTML/es/kile
|
||||||
|
%lang(es) %{_datadir}/locale/es/LC_MESSAGES/kile.mo
|
||||||
|
|
||||||
|
%files i18n-et
|
||||||
|
%lang(et) %{tde_docdir}/HTML/et/kile
|
||||||
|
%lang(et) %{_datadir}/locale/et/LC_MESSAGES/kile.mo
|
||||||
|
|
||||||
|
%files i18n-it
|
||||||
|
%lang(it) %{tde_docdir}/HTML/it/kile
|
||||||
|
%lang(it) %{_datadir}/locale/it/LC_MESSAGES/kile.mo
|
||||||
|
|
||||||
|
%files i18n-nl
|
||||||
|
%lang(nl) %{tde_docdir}/HTML/nl/kile
|
||||||
|
%lang(nl) %{_datadir}/locale/nl/LC_MESSAGES/kile.mo
|
||||||
|
|
||||||
|
%files i18n-pt
|
||||||
|
%lang(pt) %{tde_docdir}/HTML/pt/kile
|
||||||
|
%lang(pt) %{_datadir}/locale/pt/LC_MESSAGES/kile.mo
|
||||||
|
|
||||||
|
%files i18n-sv
|
||||||
|
%lang(sv) %{tde_docdir}/HTML/sv/kile
|
||||||
|
%lang(sv) %{_datadir}/locale/sv/LC_MESSAGES/kile.mo
|
||||||
|
|
||||||
|
%files i18n-ar
|
||||||
|
%lang(ar) %{_datadir}/locale/ar/LC_MESSAGES/kile.mo
|
||||||
|
|
||||||
|
%files i18n-bg
|
||||||
|
%lang(bg) %{_datadir}/locale/bg/LC_MESSAGES/kile.mo
|
||||||
|
|
||||||
|
%files i18n-br
|
||||||
|
%lang(br) %{_datadir}/locale/br/LC_MESSAGES/kile.mo
|
||||||
|
|
||||||
|
%files i18n-ca
|
||||||
|
%lang(ca) %{_datadir}/locale/ca/LC_MESSAGES/kile.mo
|
||||||
|
|
||||||
|
%files i18n-cs
|
||||||
|
%lang(cs) %{_datadir}/locale/cs/LC_MESSAGES/kile.mo
|
||||||
|
|
||||||
|
%files i18n-cy
|
||||||
|
%lang(cy) %{_datadir}/locale/cy/LC_MESSAGES/kile.mo
|
||||||
|
|
||||||
|
%files i18n-de
|
||||||
|
%lang(de) %{_datadir}/locale/de/LC_MESSAGES/kile.mo
|
||||||
|
|
||||||
|
%files i18n-el
|
||||||
|
%lang(el) %{_datadir}/locale/el/LC_MESSAGES/kile.mo
|
||||||
|
|
||||||
|
%files i18n-engb
|
||||||
|
%lang(en_GB) %{_datadir}/locale/en_GB/LC_MESSAGES/kile.mo
|
||||||
|
|
||||||
|
%files i18n-eu
|
||||||
|
%lang(eu) %{_datadir}/locale/eu/LC_MESSAGES/kile.mo
|
||||||
|
|
||||||
|
%files i18n-fi
|
||||||
|
%lang(fi) %{_datadir}/locale/fi/LC_MESSAGES/kile.mo
|
||||||
|
|
||||||
|
%files i18n-fr
|
||||||
|
%lang(fr) %{_datadir}/locale/fr/LC_MESSAGES/kile.mo
|
||||||
|
|
||||||
|
%files i18n-ga
|
||||||
|
%lang(ga) %{_datadir}/locale/ga/LC_MESSAGES/kile.mo
|
||||||
|
|
||||||
|
%files i18n-gl
|
||||||
|
%lang(gl) %{_datadir}/locale/gl/LC_MESSAGES/kile.mo
|
||||||
|
|
||||||
|
%files i18n-hi
|
||||||
|
%lang(hi) %{_datadir}/locale/hi/LC_MESSAGES/kile.mo
|
||||||
|
|
||||||
|
%files i18n-hu
|
||||||
|
%lang(hu) %{_datadir}/locale/hu/LC_MESSAGES/kile.mo
|
||||||
|
|
||||||
|
%files i18n-is
|
||||||
|
%lang(is) %{_datadir}/locale/is/LC_MESSAGES/kile.mo
|
||||||
|
|
||||||
|
%files i18n-ja
|
||||||
|
%lang(ja) %{_datadir}/locale/ja/LC_MESSAGES/kile.mo
|
||||||
|
|
||||||
|
%files i18n-lt
|
||||||
|
%lang(lt) %{_datadir}/locale/lt/LC_MESSAGES/kile.mo
|
||||||
|
|
||||||
|
%files i18n-ms
|
||||||
|
%lang(ms) %{_datadir}/locale/ms/LC_MESSAGES/kile.mo
|
||||||
|
|
||||||
|
%files i18n-mt
|
||||||
|
%lang(mt) %{_datadir}/locale/mt/LC_MESSAGES/kile.mo
|
||||||
|
|
||||||
|
%files i18n-nb
|
||||||
|
%lang(nb) %{_datadir}/locale/nb/LC_MESSAGES/kile.mo
|
||||||
|
|
||||||
|
%files i18n-nds
|
||||||
|
%lang(nds) %{_datadir}/locale/nds/LC_MESSAGES/kile.mo
|
||||||
|
|
||||||
|
%files i18n-nn
|
||||||
|
%lang(nn) %{_datadir}/locale/nn/LC_MESSAGES/kile.mo
|
||||||
|
|
||||||
|
%files i18n-pa
|
||||||
|
%lang(pa) %{_datadir}/locale/pa/LC_MESSAGES/kile.mo
|
||||||
|
|
||||||
|
%files i18n-pl
|
||||||
|
%lang(pl) %{_datadir}/locale/pl/LC_MESSAGES/kile.mo
|
||||||
|
|
||||||
|
%files i18n-ptbr
|
||||||
|
%lang(pt_BR) %{_datadir}/locale/pt_BR/LC_MESSAGES/kile.mo
|
||||||
|
|
||||||
|
%files i18n-ro
|
||||||
|
%lang(ro) %{_datadir}/locale/ro/LC_MESSAGES/kile.mo
|
||||||
|
|
||||||
|
%files i18n-ru
|
||||||
|
%lang(ru) %{_datadir}/locale/ru/LC_MESSAGES/kile.mo
|
||||||
|
|
||||||
|
%files i18n-rw
|
||||||
|
%lang(rw) %{_datadir}/locale/rw/LC_MESSAGES/kile.mo
|
||||||
|
|
||||||
|
%files i18n-sk
|
||||||
|
%lang(sk) %{_datadir}/locale/sk/LC_MESSAGES/kile.mo
|
||||||
|
|
||||||
|
%files i18n-sr
|
||||||
|
%lang(sr) %{_datadir}/locale/sr/LC_MESSAGES/kile.mo
|
||||||
|
|
||||||
|
%files i18n-srlatin
|
||||||
|
%lang(sr@Latn) %{_datadir}/locale/sr@Latn/LC_MESSAGES/kile.mo
|
||||||
|
|
||||||
|
%files i18n-ta
|
||||||
|
%lang(ta) %{_datadir}/locale/ta/LC_MESSAGES/kile.mo
|
||||||
|
|
||||||
|
%files i18n-th
|
||||||
|
%lang(th) %{_datadir}/locale/th/LC_MESSAGES/kile.mo
|
||||||
|
|
||||||
|
%files i18n-tr
|
||||||
|
%lang(tr) %{_datadir}/locale/tr/LC_MESSAGES/kile.mo
|
||||||
|
|
||||||
|
%files i18n-uk
|
||||||
|
%lang(uk) %{_datadir}/locale/uk/LC_MESSAGES/kile.mo
|
||||||
|
|
||||||
|
%files i18n-zhcn
|
||||||
|
%lang(zh_CN) %{_datadir}/locale/zh_CN/LC_MESSAGES/kile.mo
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
%Changelog
|
||||||
|
* Fri Nov 25 2011 Francois Andriot <francois.andriot@free.fr> - 2.0.2-1
|
||||||
|
- Initial build for RHEL 5, RHEL 6, Fedora 15, Fedora 16
|
@ -0,0 +1,115 @@
|
|||||||
|
# Default version for this component
|
||||||
|
%define kdecomp knemo
|
||||||
|
%define version 0.4.8
|
||||||
|
%define release 1
|
||||||
|
|
||||||
|
# If TDE is built in a specific prefix (e.g. /opt/trinity), the release will be suffixed with ".opt".
|
||||||
|
%if "%{?_prefix}" != "/usr"
|
||||||
|
%define _variant .opt
|
||||||
|
%define _docdir %{_prefix}/share/doc
|
||||||
|
%endif
|
||||||
|
|
||||||
|
# TDE 3.5.13 specific building variables
|
||||||
|
BuildRequires: autoconf automake libtool m4
|
||||||
|
%define tde_docdir %{_docdir}/kde
|
||||||
|
%define tde_includedir %{_includedir}/kde
|
||||||
|
%define tde_libdir %{_libdir}/trinity
|
||||||
|
|
||||||
|
|
||||||
|
Name: trinity-%{kdecomp}
|
||||||
|
Summary: network interfaces monitor for the Trinity systray
|
||||||
|
Version: %{?version}
|
||||||
|
Release: %{?release}%{?dist}%{?_variant}
|
||||||
|
|
||||||
|
License: GPLv2+
|
||||||
|
Group: Applications/Utilities
|
||||||
|
|
||||||
|
Vendor: Trinity Project
|
||||||
|
Packager: Francois Andriot <francois.andriot@free.fr>
|
||||||
|
URL: http://beta.smileaf.org/projects
|
||||||
|
|
||||||
|
Prefix: %{_prefix}
|
||||||
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||||
|
|
||||||
|
Source0: %{kdecomp}-3.5.13.tar.gz
|
||||||
|
|
||||||
|
BuildRequires: tqtinterface-devel
|
||||||
|
BuildRequires: trinity-kdelibs-devel
|
||||||
|
BuildRequires: trinity-kdebase-devel
|
||||||
|
BuildRequires: desktop-file-utils
|
||||||
|
BuildRequires: gettext
|
||||||
|
|
||||||
|
|
||||||
|
%description
|
||||||
|
KNemo displays an icon in the systray for every network interface.
|
||||||
|
Tooltips and an info dialog provide further information about the
|
||||||
|
interface. Passive popups inform about interface changes.
|
||||||
|
A traffic plotter is also integrated.
|
||||||
|
|
||||||
|
knemo polls the network interface status every second using the
|
||||||
|
ifconfig, route and iwconfig tools.
|
||||||
|
|
||||||
|
Homepage: http://extragear.kde.org/apps/knemo/
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q -n applications/%{kdecomp}
|
||||||
|
|
||||||
|
# Ugly hack to modify TQT include directory inside autoconf files.
|
||||||
|
# If TQT detection fails, it fallbacks to TQT4 instead of TQT3 !
|
||||||
|
%__sed -i admin/acinclude.m4.in \
|
||||||
|
-e "s,/usr/include/tqt,%{_includedir}/tqt,g" \
|
||||||
|
-e "s,kde_htmldir='.*',kde_htmldir='%{tde_docdir}/HTML',g"
|
||||||
|
|
||||||
|
%__cp -f "/usr/share/aclocal/libtool.m4" "admin/libtool.m4.in"
|
||||||
|
%__cp -f "/usr/share/libtool/config/ltmain.sh" "admin/ltmain.sh"
|
||||||
|
%__make -f "admin/Makefile.common"
|
||||||
|
|
||||||
|
|
||||||
|
%build
|
||||||
|
export PATH="%{_bindir}:${PATH}"
|
||||||
|
export LDFLAGS="-L%{_libdir} -I%{_includedir}"
|
||||||
|
|
||||||
|
%configure \
|
||||||
|
--disable-rpath \
|
||||||
|
--with-extra-includes=%{_includedir}/tqt
|
||||||
|
|
||||||
|
%__make %{?_smp_mflags}
|
||||||
|
|
||||||
|
|
||||||
|
%install
|
||||||
|
export PATH="%{_bindir}:${PATH}"
|
||||||
|
%__rm -rf %{buildroot}
|
||||||
|
%__make install DESTDIR=%{buildroot}
|
||||||
|
|
||||||
|
%clean
|
||||||
|
%__rm -rf %{buildroot}
|
||||||
|
|
||||||
|
|
||||||
|
%post
|
||||||
|
touch --no-create %{_datadir}/icons/hicolor || :
|
||||||
|
gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
|
||||||
|
|
||||||
|
%postun
|
||||||
|
touch --no-create %{_datadir}/icons/hicolor || :
|
||||||
|
gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
|
||||||
|
|
||||||
|
|
||||||
|
%files
|
||||||
|
%defattr(-,root,root,-)
|
||||||
|
%{tde_libdir}/kcm_knemo.la
|
||||||
|
%{tde_libdir}/kcm_knemo.so
|
||||||
|
%{tde_libdir}/kded_knemod.la
|
||||||
|
%{tde_libdir}/kded_knemod.so
|
||||||
|
%{_datadir}/applications/kde/kcm_knemo.desktop
|
||||||
|
%{_datadir}/apps/knemo/eventsrc
|
||||||
|
%{_datadir}/icons/crystalsvg/*/*/*.png
|
||||||
|
%{_datadir}/locale/*/LC_MESSAGES/knemod.mo
|
||||||
|
%{_datadir}/locale/*/LC_MESSAGES/kcm_knemo.mo
|
||||||
|
%{_datadir}/services/kded/knemod.desktop
|
||||||
|
|
||||||
|
|
||||||
|
%Changelog
|
||||||
|
* Fri Nov 25 2011 Francois Andriot <francois.andriot@free.fr> - 0.4.8-1
|
||||||
|
- Initial build for RHEL 5, RHEL 6, Fedora 15, Fedora 16
|
@ -0,0 +1,15 @@
|
|||||||
|
--- kvirc/admin/acinclude.m4.in.ORI 2011-11-25 19:57:17.296988361 +0100
|
||||||
|
+++ kvirc/admin/acinclude.m4.in 2011-11-25 19:57:47.365665354 +0100
|
||||||
|
@@ -2603,10 +2603,10 @@
|
||||||
|
helpdir="\${globalkvircdir}/help/en"
|
||||||
|
AC_SUBST(helpdir)
|
||||||
|
|
||||||
|
- pluglibdir="\${globalkvircdir}/modules"
|
||||||
|
+ pluglibdir="\${libdir}/kvirc/$SS_DIRTAG/modules"
|
||||||
|
AC_SUBST(pluglibdir)
|
||||||
|
|
||||||
|
- modulelibdir="\${globalkvircdir}/modules"
|
||||||
|
+ modulelibdir="\${libdir}/kvirc/$SS_DIRTAG/modules"
|
||||||
|
AC_SUBST(modulelibdir)
|
||||||
|
|
||||||
|
defscriptdir="\${globalkvircdir}/defscript"
|
@ -0,0 +1,11 @@
|
|||||||
|
--- kvirc/src/kvirc/build/Makefile.am.ORI 2011-11-26 22:37:04.065565368 +0100
|
||||||
|
+++ kvirc/src/kvirc/build/Makefile.am 2011-11-26 22:37:17.139565032 +0100
|
||||||
|
@@ -8,7 +8,7 @@
|
||||||
|
AM_CPPFLAGS = -I$(SS_TOPSRCDIR)/src/kvilib/include/ -I$(SS_TOPSRCDIR)/src/kvirc/include/ \
|
||||||
|
$(SS_INCDIRS) $(SS_CPPFLAGS) -DGLOBAL_KVIRC_DIR=\"$(globalkvircdir)\"
|
||||||
|
|
||||||
|
-kvirc_LDFLAGS = -export-dynamic $(SS_LDFLAGS) $(SS_LIBDIRS) $(SS_RPATH)
|
||||||
|
+kvirc_LDFLAGS = -export-dynamic $(SS_LDFLAGS) $(SS_LIBDIRS) $(SS_RPATH) -lDCOP -lkdefx -lkio
|
||||||
|
kvirc_LDADD = $(SS_LIBLINK) ../../kvilib/build/libkvilib.la
|
||||||
|
|
||||||
|
bin_PROGRAMS = kvirc
|
@ -0,0 +1,185 @@
|
|||||||
|
# Default version for this component
|
||||||
|
%define kdecomp kvirc
|
||||||
|
%define version 3.4.0
|
||||||
|
%define release 1
|
||||||
|
|
||||||
|
# If TDE is built in a specific prefix (e.g. /opt/trinity), the release will be suffixed with ".opt".
|
||||||
|
%if "%{?_prefix}" != "/usr"
|
||||||
|
%define _variant .opt
|
||||||
|
%define _docdir %{_prefix}/share/doc
|
||||||
|
%endif
|
||||||
|
|
||||||
|
# TDE 3.5.13 specific building variables
|
||||||
|
BuildRequires: autoconf automake libtool m4
|
||||||
|
%define tde_docdir %{_docdir}/kde
|
||||||
|
%define tde_includedir %{_includedir}/kde
|
||||||
|
%define tde_libdir %{_libdir}/trinity
|
||||||
|
|
||||||
|
|
||||||
|
Name: trinity-%{kdecomp}
|
||||||
|
Summary: Trinity based next generation IRC client with module support
|
||||||
|
Version: %{?version}
|
||||||
|
Release: %{?release}%{?dist}%{?_variant}
|
||||||
|
|
||||||
|
License: GPLv2+
|
||||||
|
Group: Applications/Utilities
|
||||||
|
|
||||||
|
Vendor: Trinity Project
|
||||||
|
Packager: Francois Andriot <francois.andriot@free.fr>
|
||||||
|
URL: http://kvirc.net/
|
||||||
|
|
||||||
|
Prefix: %{_prefix}
|
||||||
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||||
|
|
||||||
|
Source0: %{kdecomp}-3.5.13.tar.gz
|
||||||
|
Patch0: kvirc-3.5.13-directories.patch
|
||||||
|
Patch1: kvirc-3.5.13-ftbfs.patch
|
||||||
|
|
||||||
|
BuildRequires: tqtinterface-devel
|
||||||
|
BuildRequires: trinity-kdelibs-devel
|
||||||
|
BuildRequires: trinity-kdebase-devel
|
||||||
|
BuildRequires: desktop-file-utils
|
||||||
|
BuildRequires: gettext
|
||||||
|
|
||||||
|
Requires: %{name}-data = %{version}-%{release}
|
||||||
|
|
||||||
|
%description
|
||||||
|
A highly configurable graphical IRC client with an MDI interface,
|
||||||
|
built-in scripting language, support for IRC DCC, drag & drop file
|
||||||
|
browsing, and much more. KVIrc uses the KDE widget set, can be extended
|
||||||
|
using its own scripting language, integrates with KDE, and supports
|
||||||
|
custom plugins.
|
||||||
|
|
||||||
|
If you are a developer and you want to write a custom module for KVIrc,
|
||||||
|
you need to install the kvirc-dev package.
|
||||||
|
|
||||||
|
%package data
|
||||||
|
Group: Applications/Utilities
|
||||||
|
Summary: Data files for KVIrc
|
||||||
|
Requires: %{name} = %{version}-%{release}
|
||||||
|
|
||||||
|
%description data
|
||||||
|
This package contains the architecture-independent data needed by KVIrc in
|
||||||
|
order to run, such as icons and images, language files, and shell scripts.
|
||||||
|
It also contains complete reference guides on scripting and functions
|
||||||
|
within KVIrc in its internal help format. Unless you want to use KVIrc only
|
||||||
|
as a very simple IRC client you are likely to want to write scripts to
|
||||||
|
tailor KVIrc to your needs.
|
||||||
|
|
||||||
|
KVIrc is a graphical IRC client based on the KDE widget set which integrates
|
||||||
|
with the K Desktop Environment version 3.
|
||||||
|
|
||||||
|
%package devel
|
||||||
|
Group: Development/Libraries
|
||||||
|
Summary: Development files for KVIrc
|
||||||
|
Requires: %{name} = %{version}-%{release}
|
||||||
|
|
||||||
|
%description devel
|
||||||
|
This package contains KVIrc libraries and include files you need if you
|
||||||
|
want to develop plugins for KVIrc.
|
||||||
|
|
||||||
|
KVIrc is a graphical IRC client based on the KDE widget set which integrates
|
||||||
|
with the K Desktop Environment version 3.
|
||||||
|
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q -n applications/%{kdecomp}
|
||||||
|
%patch0 -p1
|
||||||
|
%patch1 -p1
|
||||||
|
|
||||||
|
# Ugly hack to modify TQT include directory inside autoconf files.
|
||||||
|
# If TQT detection fails, it fallbacks to TQT4 instead of TQT3 !
|
||||||
|
%__sed -i admin/acinclude.m4.in \
|
||||||
|
-e "s,/usr/include/tqt,%{_includedir}/tqt,g" \
|
||||||
|
-e "s,kde_htmldir='.*',kde_htmldir='%{tde_docdir}/HTML',g"
|
||||||
|
|
||||||
|
# Hardcoded absolute PATH to KDEDIR in source code ! That sucks !
|
||||||
|
%__sed -i src/kvirc/kernel/kvi_app_fs.cpp \
|
||||||
|
-e "s,/opt/kde3/lib,%{_prefix}/%{_lib},g"
|
||||||
|
%__sed -i src/kvirc/kernel/kvi_app_setup.cpp \
|
||||||
|
-e "s,/opt/kde3,%{_prefix},g"
|
||||||
|
|
||||||
|
%__cp -f "/usr/share/aclocal/libtool.m4" "admin/libtool.m4.in"
|
||||||
|
%__cp -f "/usr/share/libtool/config/ltmain.sh" "admin/ltmain.sh"
|
||||||
|
./autogen.sh
|
||||||
|
|
||||||
|
|
||||||
|
%build
|
||||||
|
export PATH="%{_bindir}:${PATH}"
|
||||||
|
export LDFLAGS="-L%{_libdir} -I%{_includedir}"
|
||||||
|
export KDEDIR=%{_prefix}
|
||||||
|
|
||||||
|
%configure \
|
||||||
|
--disable-rpath \
|
||||||
|
--with-fno-rtti --with-aa-fonts --with-big-channels \
|
||||||
|
--enable-perl --with-pic --enable-wall \
|
||||||
|
--with-ix86-asm \
|
||||||
|
--with-qt-moc=%{_bindir}/tmoc \
|
||||||
|
--with-extra-includes=%{_includedir}/tqt \
|
||||||
|
--with-kde-services-dir=%{_datadir}/services \
|
||||||
|
--with-kde-library-dir=%{_libdir} \
|
||||||
|
--with-kde-include-dir=%{_includedir}
|
||||||
|
|
||||||
|
# Symbolic links must exist prior to parallel building
|
||||||
|
%__make symlinks -C src/kvilib/build
|
||||||
|
%__make symlinks -C src/kvirc/build
|
||||||
|
|
||||||
|
%__make %{?_smp_mflags}
|
||||||
|
|
||||||
|
|
||||||
|
%install
|
||||||
|
export PATH="%{_bindir}:${PATH}"
|
||||||
|
%__rm -rf %{buildroot}
|
||||||
|
%__make install DESTDIR=%{buildroot}
|
||||||
|
|
||||||
|
# Debian maintainer has renamed 'COPYING' file to 'EULA', so we do the same ...
|
||||||
|
%__mv \
|
||||||
|
%{?buildroot}%{_datadir}/kvirc/3.4/license/COPYING \
|
||||||
|
%{?buildroot}%{_datadir}/kvirc/3.4/license/EULA
|
||||||
|
|
||||||
|
%clean
|
||||||
|
%__rm -rf %{buildroot}
|
||||||
|
|
||||||
|
|
||||||
|
%post
|
||||||
|
/sbin/ldconfig
|
||||||
|
touch --no-create %{_datadir}/icons/hicolor || :
|
||||||
|
gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
|
||||||
|
|
||||||
|
%postun
|
||||||
|
/sbin/ldconfig
|
||||||
|
touch --no-create %{_datadir}/icons/hicolor || :
|
||||||
|
gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
|
||||||
|
|
||||||
|
|
||||||
|
%files
|
||||||
|
%defattr(-,root,root,-)
|
||||||
|
%doc ChangeLog FAQ README TODO
|
||||||
|
%{_bindir}/kvirc
|
||||||
|
%{_libdir}/*.so.*
|
||||||
|
%{_libdir}/kvirc/*/modules/*.so
|
||||||
|
|
||||||
|
%files data
|
||||||
|
%defattr(-,root,root,-)
|
||||||
|
%{_bindir}/kvi_run_netscape
|
||||||
|
%{_bindir}/kvi_search_help
|
||||||
|
%{_libdir}/kvirc/*/modules/caps/
|
||||||
|
%{_datadir}/applnk/Internet/kvirc.desktop
|
||||||
|
%{_datadir}/icons/hicolor/
|
||||||
|
%{_datadir}/kvirc
|
||||||
|
%{_datadir}/mimelnk/text/*.desktop
|
||||||
|
%{_datadir}/services/*.protocol
|
||||||
|
%{_mandir}/man1/kvirc.1.gz
|
||||||
|
|
||||||
|
%files devel
|
||||||
|
%defattr(-,root,root,-)
|
||||||
|
%{_bindir}/kvirc-config
|
||||||
|
%{_includedir}/kvirc/
|
||||||
|
%{_libdir}/*.la
|
||||||
|
%{_libdir}/*.so
|
||||||
|
%{_libdir}/kvirc/*/modules/*.la
|
||||||
|
|
||||||
|
|
||||||
|
%Changelog
|
||||||
|
* Fri Nov 25 2011 Francois Andriot <francois.andriot@free.fr> - 3.4.0-1
|
||||||
|
- Initial build for RHEL 5, RHEL 6, Fedora 15, Fedora 16
|
Loading…
Reference in new issue