diff options
author | 2014-04-27 21:48:28 +0000 | |
---|---|---|
committer | 2014-04-27 21:48:28 +0000 | |
commit | aae568a145d9a71870613b98509d4c282a50e0d3 (patch) | |
tree | aa3f5109202c357d7007bdcf5f9d3dedb17c34f7 /x11-libs | |
parent | Version bump for Gnome 3.12. (diff) | |
download | gentoo-2-aae568a145d9a71870613b98509d4c282a50e0d3.tar.gz gentoo-2-aae568a145d9a71870613b98509d4c282a50e0d3.tar.bz2 gentoo-2-aae568a145d9a71870613b98509d4c282a50e0d3.zip |
Version bump for Gnome 3.12.
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key C6085806)
Diffstat (limited to 'x11-libs')
-rw-r--r-- | x11-libs/gnome-pty-helper/ChangeLog | 8 | ||||
-rw-r--r-- | x11-libs/gnome-pty-helper/gnome-pty-helper-0.36.0.ebuild | 33 |
2 files changed, 40 insertions, 1 deletions
diff --git a/x11-libs/gnome-pty-helper/ChangeLog b/x11-libs/gnome-pty-helper/ChangeLog index 6180348c7163..c8fe8be9de8d 100644 --- a/x11-libs/gnome-pty-helper/ChangeLog +++ b/x11-libs/gnome-pty-helper/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for x11-libs/gnome-pty-helper # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/gnome-pty-helper/ChangeLog,v 1.56 2014/04/27 09:13:21 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/gnome-pty-helper/ChangeLog,v 1.57 2014/04/27 21:48:28 eva Exp $ + +*gnome-pty-helper-0.36.0 (27 Apr 2014) + + 27 Apr 2014; Gilles Dartiguelongue <eva@gentoo.org> + +gnome-pty-helper-0.36.0.ebuild: + Version bump for Gnome 3.12. 27 Apr 2014; Pacho Ramos <pacho@gentoo.org> -gnome-pty-helper-0.34.2.ebuild, -gnome-pty-helper-0.34.7.ebuild, -gnome-pty-helper-0.34.8.ebuild: diff --git a/x11-libs/gnome-pty-helper/gnome-pty-helper-0.36.0.ebuild b/x11-libs/gnome-pty-helper/gnome-pty-helper-0.36.0.ebuild new file mode 100644 index 000000000000..c8c3c6a2369a --- /dev/null +++ b/x11-libs/gnome-pty-helper/gnome-pty-helper-0.36.0.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2014 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.36.0.ebuild,v 1.1 2014/04/27 21:48:28 eva 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 +} |