summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2015-01-26 13:16:20 +0000
committerPacho Ramos <pacho@gentoo.org>2015-01-26 13:16:20 +0000
commita06adfb1999b2716281575585115caf58a73c0cb (patch)
tree7cc13bc26c6c2459c042d3441e6383a54b075f35 /x11-libs
parentRemove old. (diff)
downloadgentoo-2-a06adfb1999b2716281575585115caf58a73c0cb.tar.gz
gentoo-2-a06adfb1999b2716281575585115caf58a73c0cb.tar.bz2
gentoo-2-a06adfb1999b2716281575585115caf58a73c0cb.zip
For some reason arm skipped last vte stabilization
(Portage version: 2.2.15/cvs/Linux x86_64, RepoMan options: --force, signed Manifest commit with key A188FBD4)
Diffstat (limited to 'x11-libs')
-rw-r--r--x11-libs/gnome-pty-helper/ChangeLog7
-rw-r--r--x11-libs/gnome-pty-helper/gnome-pty-helper-0.34.9.ebuild33
2 files changed, 39 insertions, 1 deletions
diff --git a/x11-libs/gnome-pty-helper/ChangeLog b/x11-libs/gnome-pty-helper/ChangeLog
index 50834702af14..afc7eab99aeb 100644
--- a/x11-libs/gnome-pty-helper/ChangeLog
+++ b/x11-libs/gnome-pty-helper/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for x11-libs/gnome-pty-helper
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/gnome-pty-helper/ChangeLog,v 1.70 2015/01/26 13:10:57 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/gnome-pty-helper/ChangeLog,v 1.71 2015/01/26 13:16:20 pacho Exp $
+
+*gnome-pty-helper-0.34.9 (26 Jan 2015)
+
+ 26 Jan 2015; Pacho Ramos <pacho@gentoo.org> +gnome-pty-helper-0.34.9.ebuild:
+ For some reason arm skipped last vte stabilization
*gnome-pty-helper-0.38.3 (26 Jan 2015)
diff --git a/x11-libs/gnome-pty-helper/gnome-pty-helper-0.34.9.ebuild b/x11-libs/gnome-pty-helper/gnome-pty-helper-0.34.9.ebuild
new file mode 100644
index 000000000000..9a78fa1984e2
--- /dev/null
+++ b/x11-libs/gnome-pty-helper/gnome-pty-helper-0.34.9.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/gnome-pty-helper/gnome-pty-helper-0.34.9.ebuild,v 1.14 2015/01/26 13:16:20 pacho Exp $
+
+EAPI="5"
+GCONF_DEBUG="no"
+GNOME_ORG_MODULE="vte"
+
+inherit gnome2
+
+DESCRIPTION="GNOME Setuid helper for opening ptys"
+HOMEPAGE="http://git.gnome.org/browse/vte/"
+# gnome-pty-helper is inside vte
+
+LICENSE="LGPL-2"
+SLOT="0"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux"
+IUSE="+hardened"
+
+# gnome-pty-helper was spit out with 0.27.90
+RDEPEND="!<x11-libs/vte-0.27.90"
+DEPEND=""
+
+S="${WORKDIR}/vte-${PV}/gnome-pty-helper"
+
+src_prepare() {
+ # As recommended by upstream (/usr/libexec/$PN is a setgid binary)
+ if use hardened; then
+ export SUID_CFLAGS="-fPIE ${SUID_CFLAGS}"
+ export SUID_LDFLAGS="-pie ${SUID_LDFLAGS}"
+ fi
+ gnome2_src_prepare
+}