diff options
author | 2010-09-10 17:25:15 +0000 | |
---|---|---|
committer | 2010-09-10 17:25:15 +0000 | |
commit | 723386c37a172c65ea57d4fb1497a8b8d14334b9 (patch) | |
tree | 8594c4300128a517b19aafe0a70f93741d596664 | |
parent | rm (diff) | |
download | gentoo-2-723386c37a172c65ea57d4fb1497a8b8d14334b9.tar.gz gentoo-2-723386c37a172c65ea57d4fb1497a8b8d14334b9.tar.bz2 gentoo-2-723386c37a172c65ea57d4fb1497a8b8d14334b9.zip |
Port thunar-archive-plugin to thunarx-2 API wrt upstream #6093.
(Portage version: 2.2_rc78/cvs/Linux x86_64)
-rw-r--r-- | xfce-extra/thunar-archive-plugin/ChangeLog | 6 | ||||
-rw-r--r-- | xfce-extra/thunar-archive-plugin/thunar-archive-plugin-0.2.4-r2.ebuild | 15 |
2 files changed, 16 insertions, 5 deletions
diff --git a/xfce-extra/thunar-archive-plugin/ChangeLog b/xfce-extra/thunar-archive-plugin/ChangeLog index 8adaca586851..2590f50eef97 100644 --- a/xfce-extra/thunar-archive-plugin/ChangeLog +++ b/xfce-extra/thunar-archive-plugin/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for xfce-extra/thunar-archive-plugin # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/xfce-extra/thunar-archive-plugin/ChangeLog,v 1.11 2010/08/29 17:58:21 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/xfce-extra/thunar-archive-plugin/ChangeLog,v 1.12 2010/09/10 17:25:15 ssuominen Exp $ + + 10 Sep 2010; Samuli Suominen <ssuominen@gentoo.org> + thunar-archive-plugin-0.2.4-r2.ebuild: + Port thunar-archive-plugin to thunarx-2 API wrt upstream #6093. 29 Aug 2010; Raúl Porcel <armin76@gentoo.org> thunar-archive-plugin-0.2.4-r2.ebuild: diff --git a/xfce-extra/thunar-archive-plugin/thunar-archive-plugin-0.2.4-r2.ebuild b/xfce-extra/thunar-archive-plugin/thunar-archive-plugin-0.2.4-r2.ebuild index 689cfec8331d..e42fe0d86ce9 100644 --- a/xfce-extra/thunar-archive-plugin/thunar-archive-plugin-0.2.4-r2.ebuild +++ b/xfce-extra/thunar-archive-plugin/thunar-archive-plugin-0.2.4-r2.ebuild @@ -1,20 +1,22 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/xfce-extra/thunar-archive-plugin/thunar-archive-plugin-0.2.4-r2.ebuild,v 1.9 2010/09/06 20:34:20 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/xfce-extra/thunar-archive-plugin/thunar-archive-plugin-0.2.4-r2.ebuild,v 1.10 2010/09/10 17:25:15 ssuominen Exp $ EAPI=3 +EAUTORECONF=yes inherit xfconf DESCRIPTION="Thunar archive plugin" HOMEPAGE="http://www.foo-projects.org/~benny/projects/thunar-archive-plugin" -SRC_URI="mirror://xfce/src/thunar-plugins/${PN}/0.2/${P}.tar.bz2" +SRC_URI="mirror://xfce/src/thunar-plugins/${PN}/0.2/${P}.tar.bz2 + http://dev.gentoo.org/~ssuominen/${P}-thunarx-2.patch.bz2" LICENSE="LGPL-2" SLOT="0" KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux" IUSE="debug" -COMMON_DEPEND="<xfce-base/thunar-1.1.0" +COMMON_DEPEND="xfce-base/thunar" RDEPEND="${COMMON_DEPEND} || ( app-arch/xarchiver kde-base/ark @@ -25,8 +27,13 @@ DEPEND="${COMMON_DEPEND} dev-util/pkgconfig" pkg_setup() { + PATCHES=( "${FILESDIR}"/${P}-7zlzmaxz.patch ) + + if has_version ">=xfce-base/thunar-1.1.0"; then + PATCHES+=( "${WORKDIR}"/${P}-thunarx-2.patch ) + fi + XFCONF="--disable-dependency-tracking $(xfconf_use_debug)" DOCS="AUTHORS ChangeLog NEWS README THANKS" - PATCHES=( "${FILESDIR}/${P}-7zlzmaxz.patch" ) } |