diff options
author | Jeroen Roovers <jer@gentoo.org> | 2014-09-13 08:06:04 +0000 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2014-09-13 08:06:04 +0000 |
commit | 42f0b38032dbd2d44985e922c1568ed6fd70337c (patch) | |
tree | 0316d36086019bc523329a08e18c9d29fb16d336 /x11-terms | |
parent | Initial commit (bug #499576). (diff) | |
download | gentoo-2-42f0b38032dbd2d44985e922c1568ed6fd70337c.tar.gz gentoo-2-42f0b38032dbd2d44985e922c1568ed6fd70337c.tar.bz2 gentoo-2-42f0b38032dbd2d44985e922c1568ed6fd70337c.zip |
Version bump.
(Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key A792A613)
Diffstat (limited to 'x11-terms')
-rw-r--r-- | x11-terms/guake/ChangeLog | 9 | ||||
-rw-r--r-- | x11-terms/guake/guake-0.5.0.ebuild | 58 |
2 files changed, 65 insertions, 2 deletions
diff --git a/x11-terms/guake/ChangeLog b/x11-terms/guake/ChangeLog index 682809037394..e92153c2a2cd 100644 --- a/x11-terms/guake/ChangeLog +++ b/x11-terms/guake/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for x11-terms/guake -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-terms/guake/ChangeLog,v 1.29 2013/06/10 12:50:58 ssuominen Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-terms/guake/ChangeLog,v 1.30 2014/09/13 08:06:04 jer Exp $ + +*guake-0.5.0 (13 Sep 2014) + + 13 Sep 2014; Jeroen Roovers <jer@gentoo.org> +guake-0.5.0.ebuild: + Version bump. 10 Jun 2013; Samuli Suominen <ssuominen@gentoo.org> -files/guake-0.4.2-glib2.32.patch, -files/guake-0.4.2-int-ssl-port.patch, diff --git a/x11-terms/guake/guake-0.5.0.ebuild b/x11-terms/guake/guake-0.5.0.ebuild new file mode 100644 index 000000000000..349093903ad2 --- /dev/null +++ b/x11-terms/guake/guake-0.5.0.ebuild @@ -0,0 +1,58 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-terms/guake/guake-0.5.0.ebuild,v 1.1 2014/09/13 08:06:04 jer Exp $ + +EAPI=5 + +GCONF_DEBUG=no +GNOME2_LA_PUNT=yes +PYTHON_COMPAT=( python2_7 ) + +inherit autotools gnome2 python-single-r1 + +DESCRIPTION="A dropdown terminal made for the GTK+ desktops" +HOMEPAGE="http://guake.org/" +SRC_URI="mirror://debian/pool/main/${PN:0:1}/${PN}/${PN}_${PV}.orig.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~x86" + +RDEPEND=" + dev-python/dbus-python + dev-python/gconf-python + dev-python/notify-python + dev-python/pygtk + dev-python/pyxdg + x11-libs/gtk+:2 + x11-libs/libX11 + x11-libs/vte:0[python] +" +DEPEND=" + ${RDEPEND} + dev-util/intltool + virtual/pkgconfig +" + +DOCS=( AUTHORS ChangeLog NEWS README.rst ) + +S=${WORKDIR}/${PN}-${P} + +src_prepare() { + eautoreconf + + # python_fix_shebang does not handle this? + sed -i -e '/^PYTHON=/s|python|'${EPYTHON}'|' src/guake-prefs || die + + gnome2_src_prepare + + G2CONF="--disable-static" +} + +pkg_postinst() { + gnome2_pkg_postinst +} + +pkg_postrm() { + gnome2_pkg_postrm +} |