diff options
Diffstat (limited to 'xfce-extra/thunar-vcs-plugin')
-rw-r--r-- | xfce-extra/thunar-vcs-plugin/ChangeLog | 9 | ||||
-rw-r--r-- | xfce-extra/thunar-vcs-plugin/thunar-vcs-plugin-0.1.4.ebuild | 17 |
2 files changed, 20 insertions, 6 deletions
diff --git a/xfce-extra/thunar-vcs-plugin/ChangeLog b/xfce-extra/thunar-vcs-plugin/ChangeLog index 774c72e340a0..69c1a3326fa6 100644 --- a/xfce-extra/thunar-vcs-plugin/ChangeLog +++ b/xfce-extra/thunar-vcs-plugin/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for xfce-extra/thunar-vcs-plugin -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/xfce-extra/thunar-vcs-plugin/ChangeLog,v 1.18 2012/11/28 12:18:36 ssuominen Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/xfce-extra/thunar-vcs-plugin/ChangeLog,v 1.19 2013/04/11 10:11:41 ssuominen Exp $ + + 11 Apr 2013; Samuli Suominen <ssuominen@gentoo.org> + thunar-vcs-plugin-0.1.4.ebuild: + Import 4 missing translation files from git. Thanks to Agostino Sarubbo for + noticing. 28 Nov 2012; Samuli Suominen <ssuominen@gentoo.org> thunar-vcs-plugin-0.1.4.ebuild: diff --git a/xfce-extra/thunar-vcs-plugin/thunar-vcs-plugin-0.1.4.ebuild b/xfce-extra/thunar-vcs-plugin/thunar-vcs-plugin-0.1.4.ebuild index 0d3d3f9c84ab..3328070c9ef5 100644 --- a/xfce-extra/thunar-vcs-plugin/thunar-vcs-plugin-0.1.4.ebuild +++ b/xfce-extra/thunar-vcs-plugin/thunar-vcs-plugin-0.1.4.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2013 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.4.ebuild,v 1.6 2012/11/28 12:18:36 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/xfce-extra/thunar-vcs-plugin/thunar-vcs-plugin-0.1.4.ebuild,v 1.7 2013/04/11 10:11:41 ssuominen Exp $ EAPI=5 inherit xfconf @@ -8,7 +8,11 @@ inherit xfconf DESCRIPTION="adds Subversion and GIT actions to the context menu of thunar" HOMEPAGE="http://goodies.xfce.org/projects/thunar-plugins/thunar-vcs-plugin" SRC_URI="mirror://xfce/src/thunar-plugins/${PN}/${PV%.*}/${P}.tar.bz2 - mirror://gentoo/${P}-ru.po.bz2" + http://dev.gentoo.org/~ssuominen/${P}-el.po.bz2 + http://dev.gentoo.org/~ssuominen/${P}-eu.po.bz2 + mirror://gentoo/${P}-ru.po.bz2 + http://dev.gentoo.org/~ssuominen/${P}-ug.po.bz2 + http://dev.gentoo.org/~ssuominen/${P}-uk.po.bz2" LICENSE="GPL-2" SLOT="0" @@ -40,6 +44,11 @@ pkg_setup() { } src_prepare() { - mv -vf "${WORKDIR}"/${P}-ru.po po/ru.po || die + # This won't be required for next release anymore, thanks to the following commit: + # http://git.xfce.org/thunar-plugins/thunar-vcs-plugin/commit/?id=e87584f7b87627a322f6e41025e5e52d65ebb4d8 + local lang + for lang in el eu ru ug uk; do + mv "${WORKDIR}"/${P}-${lang}.po po/${lang}.po || die + done xfconf_src_prepare } |