+++ /dev/null
-diff --git a/scripts/Makefile.am b/scripts/Makefile.am
-index 4da529c..ec49cba 100644
---- a/scripts/Makefile.am
-+++ b/scripts/Makefile.am
-@@ -3,7 +3,8 @@
- wrapperdir = $(libexecdir)/thunar-archive-plugin
- wrapper_SCRIPTS = \
- ark.tap \
-- file-roller.tap
-+ file-roller.tap \
-+ engrampa.tap
-
- # Install symlink to 'gnome-file-roller.tap'
- install-exec-hook:
-diff --git a/scripts/engrampa.tap b/scripts/engrampa.tap
-index e69de29..a9d9c10 100755
---- a/scripts/engrampa.tap
-+++ b/scripts/engrampa.tap
-@@ -0,0 +1,48 @@
-+#!/bin/sh
-+#
-+# engrampa.tap - Wrapper script to create and extract archive files
-+# in Thunar, via the thunar-archive-plugin, using the
-+# engrampa archive manager.
-+#
-+# $Id$
-+#
-+# Copyright (c) 2006 Benedikt Meurer <benny@xfce.org>.
-+#
-+# This program is free software; you can redistribute it and/or modify it
-+# under the terms of the GNU General Public License as published by the Free
-+# Software Foundation; either version 2 of the License, or (at your option)
-+# any later version.
-+#
-+# This program is distributed in the hope that it will be useful, but WITHOUT
-+# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-+# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
-+# more details.
-+#
-+# You should have received a copy of the GNU General Public License along with
-+# this program; if not, write to the Free Software Foundation, Inc., 59 Temple
-+# Place, Suite 330, Boston, MA 02111-1307 USA.
-+#
-+
-+# determine the action and the folder, $@ then contains only the files
-+action=$1; shift;
-+folder=$1; shift;
-+
-+# check the action
-+case $action in
-+create)
-+ exec engrampa "--default-dir=$folder" --add "$@"
-+ ;;
-+
-+extract-here)
-+ exec engrampa "--extract-to=$folder" --force "$@"
-+ ;;
-+
-+extract-to)
-+ exec engrampa --extract "$@"
-+ ;;
-+
-+*)
-+ echo "Unsupported action '$action'" >&2
-+ exit 1
-+esac
-+
-
+++ /dev/null
-diff -ur thunar-archive-plugin-0.3.1.old/scripts/Makefile.am thunar-archive-plugin-0.3.1/scripts/Makefile.am
---- thunar-archive-plugin-0.3.1.old/scripts/Makefile.am 2013-05-11 13:48:30.000000000 +0400
-+++ thunar-archive-plugin-0.3.1/scripts/Makefile.am 2015-07-05 12:55:32.052090677 +0400
-@@ -9,8 +9,9 @@
- install-exec-hook:
- $(mkinstalldirs) $(DESTDIR)$(wrapperdir)
- -( cd $(DESTDIR)$(wrapperdir) ; \
-- test -f gnome-file-roller.tap \
-- || ln -sf file-roller.tap gnome-file-roller.tap )
-+ ln -sf ark.tap kde4-ark.tap; \
-+ ln -sf file-roller.tap gnome-file-roller.tap; \
-+ ln -sf file-roller.tap org.gnome.FileRoller.tap; )
-
- EXTRA_DIST = \
- $(wrapper_SCRIPTS) \
+++ /dev/null
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools gnome2-utils
-
-DESCRIPTION="Archive plug-in for the Thunar filemanager"
-HOMEPAGE="https://goodies.xfce.org/projects/thunar-plugins/thunar-archive-plugin"
-SRC_URI="https://archive.xfce.org/src/thunar-plugins/${PN}/${PV%.*}/${P}.tar.bz2"
-
-LICENSE="LGPL-2"
-SLOT="0"
-KEYWORDS="alpha amd64 arm ~ia64 ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux"
-IUSE=""
-
-RDEPEND=">=xfce-base/libxfce4util-4.8:=
- >=xfce-base/exo-0.6:=
- <xfce-base/thunar-1.7:="
-# dev-util/xfce4-dev-tools for eautoreconf
-DEPEND="${RDEPEND}
- dev-util/intltool
- dev-util/xfce4-dev-tools
- sys-devel/gettext
- virtual/pkgconfig"
-
-PATCHES=(
- "${FILESDIR}"/0.3.1-add-engrampa-support.patch
- "${FILESDIR}"/0.3.1-fix-kde-ark.patch
- "${FILESDIR}"/0.3.1-add-support-symlinks.patch
- )
-DOCS=( AUTHORS ChangeLog NEWS README THANKS )
-
-src_prepare() {
- default
- local AT_M4DIR=${EPREFIX}/usr/share/xfce4/dev-tools/m4macros
- eautoreconf
-}
-
-src_install() {
- default
- find "${D}" -name '*.la' -delete || die
-}
-
-pkg_postinst() {
- gnome2_icon_cache_update
-}
-
-pkg_postrm() {
- gnome2_icon_cache_update
-}