diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2009-09-30 08:52:28 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2009-09-30 08:52:28 +0000 |
commit | 0fd0f9956d227542009f0312e4ce23dd6b8a2f04 (patch) | |
tree | 80fe1d1e4e3aa17ebe7a41710580c54c76301ea3 | |
parent | stable x86, security bug 258592 (diff) | |
download | gentoo-2-0fd0f9956d227542009f0312e4ce23dd6b8a2f04.tar.gz gentoo-2-0fd0f9956d227542009f0312e4ce23dd6b8a2f04.tar.bz2 gentoo-2-0fd0f9956d227542009f0312e4ce23dd6b8a2f04.zip |
Version bump.
(Portage version: 2.2_rc42/cvs/Linux x86_64)
-rw-r--r-- | xfce-extra/thunar-vcs-plugin/ChangeLog | 8 | ||||
-rw-r--r-- | xfce-extra/thunar-vcs-plugin/metadata.xml | 3 | ||||
-rw-r--r-- | xfce-extra/thunar-vcs-plugin/thunar-vcs-plugin-0.1.0.ebuild | 32 |
3 files changed, 42 insertions, 1 deletions
diff --git a/xfce-extra/thunar-vcs-plugin/ChangeLog b/xfce-extra/thunar-vcs-plugin/ChangeLog index c0fe924f715c..e3e625adafad 100644 --- a/xfce-extra/thunar-vcs-plugin/ChangeLog +++ b/xfce-extra/thunar-vcs-plugin/ChangeLog @@ -1,6 +1,12 @@ # 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 $ +# $Header: /var/cvsroot/gentoo-x86/xfce-extra/thunar-vcs-plugin/ChangeLog,v 1.2 2009/09/30 08:52:28 ssuominen Exp $ + +*thunar-vcs-plugin-0.1.0 (30 Sep 2009) + + 30 Sep 2009; Samuli Suominen <ssuominen@gentoo.org> + +thunar-vcs-plugin-0.1.0.ebuild: + Version bump. *thunar-vcs-plugin-0.0.3-r2 (30 Sep 2009) diff --git a/xfce-extra/thunar-vcs-plugin/metadata.xml b/xfce-extra/thunar-vcs-plugin/metadata.xml index d56729e92f8e..60fee1f57a3e 100644 --- a/xfce-extra/thunar-vcs-plugin/metadata.xml +++ b/xfce-extra/thunar-vcs-plugin/metadata.xml @@ -2,4 +2,7 @@ <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> <pkgmetadata> <herd>xfce</herd> + <use> + <flag name='git'>Enable <pkg>dev-util/git</pkg> support</flag> + </use> </pkgmetadata> diff --git a/xfce-extra/thunar-vcs-plugin/thunar-vcs-plugin-0.1.0.ebuild b/xfce-extra/thunar-vcs-plugin/thunar-vcs-plugin-0.1.0.ebuild new file mode 100644 index 000000000000..6b3808189b20 --- /dev/null +++ b/xfce-extra/thunar-vcs-plugin/thunar-vcs-plugin-0.1.0.ebuild @@ -0,0 +1,32 @@ +# 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.1.0.ebuild,v 1.1 2009/09/30 08:52:28 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="mirror://xfce/src/thunar-plugins/${PN}/0.1/${P}.tar.bz2" + +LICENSE="LGPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="debug git subversion" + +RDEPEND=">=xfce-base/thunar-0.4 + >=x11-libs/gtk+-2.6:2 + >=dev-libs/glib-2.6:2 + git? ( dev-util/git ) + subversion? ( >=dev-libs/apr-0.9.7 + >=dev-util/subversion-1.5 )" +DEPEND="${RDEPEND} + dev-util/pkgconfig" + +pkg_setup() { + DOCS="AUTHORS ChangeLog NEWS README" + XFCONF="--disable-dependency-tracking + $(use_enable subversion) + $(use_enable git) + $(use_enable debug)" +} |