diff options
4 files changed, 63 insertions, 0 deletions
diff --git a/xfce-extra/thunar-vcs-plugin/ChangeLog b/xfce-extra/thunar-vcs-plugin/ChangeLog new file mode 100644 index 000000000000..c0fe924f715c --- /dev/null +++ b/xfce-extra/thunar-vcs-plugin/ChangeLog @@ -0,0 +1,11 @@ +# ChangeLog for xfce-extra/thunar-vcs-plugin +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/xfce-extra/thunar-vcs-plugin/ChangeLog,v 1.1 2009/09/30 08:37:29 ssuominen Exp $ + +*thunar-vcs-plugin-0.0.3-r2 (30 Sep 2009) + + 30 Sep 2009; Samuli Suominen <ssuominen@gentoo.org> + +thunar-vcs-plugin-0.0.3-r2.ebuild, + +files/thunar-vcs-plugin-0.0.3-subversion-1.6.patch: + Rename from xfce-extra/thunar-svn-plugin (by upstream). + diff --git a/xfce-extra/thunar-vcs-plugin/files/thunar-vcs-plugin-0.0.3-subversion-1.6.patch b/xfce-extra/thunar-vcs-plugin/files/thunar-vcs-plugin-0.0.3-subversion-1.6.patch new file mode 100644 index 000000000000..d3172b740ad3 --- /dev/null +++ b/xfce-extra/thunar-vcs-plugin/files/thunar-vcs-plugin-0.0.3-subversion-1.6.patch @@ -0,0 +1,20 @@ +--- tsp-svn-helper/tsh-common.c.orig 2009-04-30 23:03:34.037702354 -0500 ++++ tsp-svn-helper/tsh-common.c 2009-04-30 23:03:59.114952043 -0500 +@@ -34,6 +34,7 @@ + #include <subversion-1/svn_pools.h> + #include <subversion-1/svn_fs.h> + #include <subversion-1/svn_time.h> ++#include <subversion-1/svn_props.h> + + #include "tsh-dialog-common.h" + #include "tsh-login-dialog.h" +--- tsp-svn-helper/tsh-properties-dialog.c.orig 2009-05-07 22:13:48.000000000 +0200 ++++ tsp-svn-helper/tsh-properties-dialog.c 2009-05-07 22:13:00.000000000 +0200 +@@ -25,6 +25,7 @@ + #include <gtk/gtk.h> + + #include <subversion-1/svn_client.h> ++#include <subversion-1/svn_props.h> + + #include "tsh-common.h" + #include "tsh-properties-dialog.h" diff --git a/xfce-extra/thunar-vcs-plugin/metadata.xml b/xfce-extra/thunar-vcs-plugin/metadata.xml new file mode 100644 index 000000000000..d56729e92f8e --- /dev/null +++ b/xfce-extra/thunar-vcs-plugin/metadata.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>xfce</herd> +</pkgmetadata> diff --git a/xfce-extra/thunar-vcs-plugin/thunar-vcs-plugin-0.0.3-r2.ebuild b/xfce-extra/thunar-vcs-plugin/thunar-vcs-plugin-0.0.3-r2.ebuild new file mode 100644 index 000000000000..d860d6f3a7b2 --- /dev/null +++ b/xfce-extra/thunar-vcs-plugin/thunar-vcs-plugin-0.0.3-r2.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/xfce-extra/thunar-vcs-plugin/thunar-vcs-plugin-0.0.3-r2.ebuild,v 1.1 2009/09/30 08:37:29 ssuominen Exp $ + +EAPI=2 +inherit xfconf + +DESCRIPTION="adds Subversion actions to the context menu of thunar" +HOMEPAGE="http://goodies.xfce.org/projects/thunar-plugins/thunar-svn-plugin" +SRC_URI="http://goodies.xfce.org/releases/${PN/vcs/svn}/${P/vcs/svn}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="amd64 x86" +IUSE="debug" + +RDEPEND=">=dev-util/subversion-1.5 + xfce-base/thunar" +DEPEND="${RDEPEND}" + +S=${WORKDIR}/${P/vcs/svn} + +pkg_setup() { + DOCS="AUTHORS ChangeLog NEWS README" + PATCHES=( "${FILESDIR}/${P}-subversion-1.6.patch" ) + XFCONF="$(use_enable debug)" +} |