123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222 |
- Name: xarchiver
- Version: 0.5.2
- Release: 5%{?_dist_release}
- Summary: Archive manager for Xfce
- Summary(ja): Xfce のアーカイブマネージャ
- Group: Applications/Archiving
- License: GPLv2+
- URL: http://xarchiver.xfce.org/
- Source0: http://downloads.sourceforge.net/xarchiver/xarchiver-%{version}.tar.bz2
- Patch0: xarchiver-0.5.2-no-donators-menu.patch
- Patch1: xarchiver-0.5.2-default-archive-format.patch
- # add_xz_support.patch by Robby Workman taken from
- # http://slackbuilds.org/slackbuilds/13.1/system/xarchiver/xarchiver-0.5.2-add_xz_support.patch
- # sent upstream through
- # https://sourceforge.net/tracker/?func=detail&aid=2847624&group_id=140153&atid=745600
- Patch2: xarchiver-0.5.2-add_xz_support.patch
- # rpm2cpio.patch by Daniel Hokka Zakrisson
- # taken from https://bugzilla.redhat.com/show_bug.cgi?id=577480
- # sent upstream through
- # https://sourceforge.net/tracker/?func=detail&aid=3310768&group_id=140153&atid=745602
- Patch3: xarchiver-0.5.2-rpm2cpio.patch
- # segfault-open-with.patch by Bastiaan Jacques
- # taken from https://bugzilla.redhat.com/show_bug.cgi?id=690012
- # sent upstream through
- # https://sourceforge.net/tracker/?func=detail&aid=3310778&group_id=140153&atid=745600
- Patch4: xarchiver-0.5.2-segfault-open-with.patch
- # fix-7z-support.patch by taken from
- # https://sourceforge.net/tracker/?func=detail&aid=3137589&group_id=140153&atid=745602
- Patch5: xarchiver-0.5.2-fix_7z_support.patch
- BuildRoot: %{_tmppath}/%{name}-%{version}-root
- BuildRequires: gtk2-devel, libxml2-devel, gettext, desktop-file-utils
- BuildRequires: glib2-devel >= 2.10.0 intltool >= 0.31 libtool
- #BuildRequires: xfce4-dev-tools >= 4.3.90.2
- Requires: binutils, bzip2, cpio, gzip, xdg-utils, tar, unzip, zip
- %description
- Xarchiver is a lightweight GTK2 only frontend for manipulating 7z, bzip2,
- gzip, iso, rar, lha, tar, zip, RPM and deb files. It allows you to create
- archives and add, extract, and delete files from them. Password protected
- archives in the 7z, rar, and zip formats are supported.
- %prep
- %setup -q
- # fix spurious executable permissions of some debug files
- chmod -x src/mime.*
- %patch0 -p2 -b .no-donators-menu
- %patch1 -p1 -b .default-archive-format
- %patch2 -p1 -b .add_xz_support
- %patch3 -p1 -b .rpm2cpio
- %patch4 -p1 -b .segfault-open-with
- %patch5 -p1 -b .fix_7z_support
- %build
- %configure
- make %{?_smp_mflags}
- %install
- rm -rf $RPM_BUILD_ROOT
- make install DESTDIR=$RPM_BUILD_ROOT
- # We need to install xarchiver.tap as fedora-xarchiver.tap, because the name
- # has to match the basename of the desktop-file in %{_datadir}/applications.
- rm $RPM_BUILD_ROOT%{_libexecdir}/thunar-archive-plugin/xarchiver.tap
- install -p -m 755 xarchiver.tap \
- $RPM_BUILD_ROOT%{_libexecdir}/thunar-archive-plugin/vine-xarchiver.tap
- %find_lang %{name}
- desktop-file-install --vendor vine \
- --dir ${RPM_BUILD_ROOT}%{_datadir}/applications \
- --add-category="Utility" \
- --add-mime-type="application/x-xz" \
- --add-mime-type="application/x-xz-compressed-tar" \
- --remove-mime-type="multipart/x-zip" \
- --delete-original \
- ${RPM_BUILD_ROOT}%{_datadir}/applications/%{name}.desktop
- # remove duplicate docs
- rm $RPM_BUILD_ROOT%{_docdir}/%{name}/{AUTHORS,COPYING,ChangeLog,NEWS,README,TODO}
- %post
- touch --no-create %{_datadir}/icons/hicolor
- if [ -x %{_bindir}/gtk-update-icon-cache ] ; then
- %{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
- fi
- update-desktop-database &> /dev/null || :
- %postun
- touch --no-create %{_datadir}/icons/hicolor
- if [ -x %{_bindir}/gtk-update-icon-cache ] ; then
- %{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
- fi
- update-desktop-database &> /dev/null || :
- %clean
- rm -rf $RPM_BUILD_ROOT
- %files -f %{name}.lang
- %defattr(-,root,root,-)
- %doc AUTHORS COPYING ChangeLog NEWS README TODO
- %doc %{_docdir}/%{name}/
- %{_bindir}/%{name}
- %{_datadir}/applications/vine-%{name}.desktop
- %{_datadir}/icons/hicolor/*/apps/%{name}.png
- %{_datadir}/icons/hicolor/scalable/apps/%{name}.svg
- %dir %{_datadir}/pixmaps/%{name}/
- %{_datadir}/pixmaps/%{name}/%{name}*.png
- %dir %{_libexecdir}/thunar-archive-plugin/
- %{_libexecdir}/thunar-archive-plugin/vine-xarchiver.tap
- %changelog
- * Wed Jul 13 2011 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.5.2-5
- - re-imported Fedora development patches
- - fixed desktop-file-install section
- - added mime-type="application/x-xz" and "application/x-xz-compressed-tar"
- - deleted mime-type="multipart/x-zip"
- * Fri Jun 10 2011 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.5.2-4
- - added patch0,1,2,3,4,5 from Fedora development
- - added BuildRequires: libtool
- * Fri May 7 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.5.2-3
- - fixed desktop-file-install --add-category section
- - added BuildRequires: glib2-devel >= 2.10.0 intltool >= 0.31
- * Sun Apr 5 2009 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.5.2-2vl5
- - fixed BuildRoot tag
- * Mon Mar 23 2009 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.5.2-1vl5
- - initial release for VineSeed (import Fedora Package)
- * Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.5.2-3
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
- * Tue Nov 25 2008 Christoph Wickert <cwickert@fedoraproject.org> - 0.5.2-2
- - Include HTML documentation
- * Tue Nov 25 2008 Christoph Wickert <cwickert@fedoraproject.org> - 0.5.2-1
- - Update to 0.5.2
- * Sun Nov 09 2008 Christoph Wickert <cwickert@fedoraproject.org> - 0.5.1-1
- - Update to 0.5.1 stable release
- * Sun Oct 26 2008 Christoph Wickert <cwickert@fedoraproject.org> - 0.5.0-0.1.rc1
- - Update to 0.5.0rc1
- - Fix crash when opening zipped PDF files (#467619)
- - Update gtk-icon-cache scriptlets
- * Sat Oct 11 2008 Christoph Wickert <cwickert@fedoraproject.org> - 0.5.0-0.1.beta2
- - Update to 0.5.0beta2
- * Sun Aug 31 2008 Christoph Wickert <cwickert@fedoraproject.org> - 0.5.0-0.1.beta1
- - Update to 0.5.0beta1
- - Remove xdg-open.patch as xarchiver now uses xdg-open by default
- * Sat Apr 19 2008 Christoph Wickert <cwickert@fedoraproject.org> - 0.4.9-0.6.20070103svn24249
- - Remove additional mime-types from desktop-file-install to make sure we don't break livecds
- * Fri Mar 14 2008 Christoph Wickert <cwickert@fedoraproject.org> - 0.4.9-0.5.20070103svn24249
- - Use xdg-open instead of htmlview (#437554)
- * Mon Feb 18 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 0.4.9-0.4.20070103svn24249
- - Autorebuild for GCC 4.3
- * Tue Aug 28 2007 Christoph Wickert <cwickert@fedoraproject.org> - 0.4.9-0.3.20070103svn24249
- - Rebuild for BuildID feature
- - Update license tag
- * Fri Mar 02 2007 Christoph Wickert <cwickert@fedoraproject.org> - 0.4.9-0.2.20070103svn24249
- - Downgrade to SVN release 24249 in order to fix #230154 temporarily.
- * Sun Jan 28 2007 Christoph Wickert <cwickert@fedoraproject.org> - 0.4.9-0.1.20070128svn24772
- - Update to SVN release 24772 of January 28th 2007.
- * Wed Jan 03 2007 Christoph Wickert <cwickert@fedoraproject.org> - 0.4.9-0.1.20070103svn
- - Update to SVN r24249 of January 3rd 2007.
- - Add mimetype application/x-deb again since opening of debs now is secure.
- * Wed Dec 13 2006 Christoph Wickert <cwickert@fedoraproject.org> - 0.4.9-0.1.20061213svn
- - Update to SVN r24096 of December 13th 2006.
- * Wed Dec 06 2006 Christoph Wickert <cwickert@fedoraproject.org> - 0.4.6-3
- - Add deb.patch to prevent opening of .a files as debs.
- - Don't add mimetype for x-ar (archiver can't handle ar archive).
- * Wed Nov 29 2006 Christoph Wickert <cwickert@fedoraproject.org> - 0.4.6-2
- - Add htmlview.patch.
- * Tue Nov 28 2006 Christoph Wickert <cwickert@fedoraproject.org> - 0.4.6-1
- - Update to 0.4.6.
- - Update %%description.
- - Require binutils, cpio and htmlview.
- - Add mimetypes application/x-ar, application/x-cd-image and application/x-deb.
- * Tue Nov 27 2006 Christoph Wickert <cwickert@fedoraproject.org> - 0.4.4-1
- - Update to 0.4.4.
- * Sat Nov 25 2006 Christoph Wickert <cwickert@fedoraproject.org> - 0.4.2-0.3.rc2
- - Install xarchiver.png also in %%{_datadir}/icons/hicolor/48x48/apps/.
- * Sat Nov 25 2006 Christoph Wickert <cwickert@fedoraproject.org> - 0.4.2-0.2.rc2
- - Drop subpackage and own %%{_libexecdir}/thunar-archive-plugin/ (#198098).
- * Sun Nov 12 2006 Christoph Wickert <cwickert@fedoraproject.org> - 0.4.2-0.1.rc2
- - Update to 0.4.2.RC2.
- * Wed Sep 13 2006 Christoph Wickert <cwickert@fedoraproject.org> - 0.4.0-1
- - Update to 0.4.0.
- * Tue Sep 05 2006 Christoph Wickert <cwickert@fedoraproject.org> - 0.3.9.2-0.beta2
- - Initial package.
|