diff options
author | Justin Lecher <jlec@gentoo.org> | 2013-03-13 12:23:35 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2013-03-13 12:23:35 +0000 |
commit | 5f60198636560d5bb3ea1008c22a5bf342be0f2d (patch) | |
tree | 2eb3873123724cb8291c282ac84596bfb4639ad3 /x11-terms | |
parent | Rename mysql connector to mariadb per upstream and do not define python var a... (diff) | |
download | gentoo-2-5f60198636560d5bb3ea1008c22a5bf342be0f2d.tar.gz gentoo-2-5f60198636560d5bb3ea1008c22a5bf342be0f2d.tar.bz2 gentoo-2-5f60198636560d5bb3ea1008c22a5bf342be0f2d.zip |
x11-terms/terminator: Handle linguas, #461552, thanks hasufell for the patch
(Portage version: 2.2.0_alpha166/cvs/Linux x86_64, signed Manifest commit with key 70EB7916)
Diffstat (limited to 'x11-terms')
-rw-r--r-- | x11-terms/terminator/ChangeLog | 7 | ||||
-rw-r--r-- | x11-terms/terminator/terminator-0.96-r3.ebuild | 61 |
2 files changed, 67 insertions, 1 deletions
diff --git a/x11-terms/terminator/ChangeLog b/x11-terms/terminator/ChangeLog index 351a7145aac8..4912f6e14554 100644 --- a/x11-terms/terminator/ChangeLog +++ b/x11-terms/terminator/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for x11-terms/terminator # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-terms/terminator/ChangeLog,v 1.27 2013/02/25 14:09:55 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-terms/terminator/ChangeLog,v 1.28 2013/03/13 12:23:35 jlec Exp $ + +*terminator-0.96-r3 (13 Mar 2013) + + 13 Mar 2013; Justin Lecher <jlec@gentoo.org> +terminator-0.96-r3.ebuild: + Handle linguas, #461552, thanks hasufell for the patch *terminator-0.96-r2 (25 Feb 2013) diff --git a/x11-terms/terminator/terminator-0.96-r3.ebuild b/x11-terms/terminator/terminator-0.96-r3.ebuild new file mode 100644 index 000000000000..5ce003e140c2 --- /dev/null +++ b/x11-terms/terminator/terminator-0.96-r3.ebuild @@ -0,0 +1,61 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-terms/terminator/terminator-0.96-r3.ebuild,v 1.1 2013/03/13 12:23:35 jlec Exp $ + +EAPI=5 + +PYTHON_COMPAT=( python{2_6,2_7} ) +DISTUTILS_NO_PARALLEL_BUILD=true + +inherit gnome2 distutils-r1 + +DESCRIPTION="Multiple GNOME terminals in one window" +HOMEPAGE="http://www.tenshu.net/p/terminator.html" +SRC_URI="http://launchpad.net/${PN}/trunk/${PV}/+download/${PN}_${PV}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="dbus gnome +libnotify" + +RDEPEND=" + dev-libs/keybinder:0[python] + x11-libs/vte:0[python] + dbus? ( sys-apps/dbus ) + gnome? ( + dev-python/gconf-python + dev-python/libgnome-python + dev-python/pygobject:2[${PYTHON_USEDEP}] + dev-python/pygtk:2[${PYTHON_USEDEP}] + ) + libnotify? ( dev-python/notify-python[${PYTHON_USEDEP}] )" +DEPEND="dev-util/intltool" + +python_prepare_all() { + local PATCHES=( + "${FILESDIR}"/0.90-without-icon-cache.patch + "${FILESDIR}"/0.94-session.patch + ) + + local i p + if [[ -n "${LINGUAS+x}" ]] ; then + pushd "${S}"/po > /dev/null + strip-linguas -i . + for i in *.po; do + if ! has ${i%.po} ${LINGUAS} ; then + rm ${i} || die + fi + done + popd > /dev/null + fi + + distutils-r1_python_prepare_all +} + +pkg_postinst() { + gnome2_pkg_postinst +} + +pkg_postrm() { + gnome2_pkg_postrm +} |