diff options
author | 2010-09-05 16:05:08 +0000 | |
---|---|---|
committer | 2010-09-05 16:05:08 +0000 | |
commit | ed3875e6e37faf3fdf0a405fe482155520bf5f26 (patch) | |
tree | 035f2a46c9944ecec01bc9b8e98a256a40bdc496 /x11-terms/guake/guake-0.4.2.ebuild | |
parent | alpha/ia64/sh/sparc stable wrt #329963 (diff) | |
download | gentoo-2-ed3875e6e37faf3fdf0a405fe482155520bf5f26.tar.gz gentoo-2-ed3875e6e37faf3fdf0a405fe482155520bf5f26.tar.bz2 gentoo-2-ed3875e6e37faf3fdf0a405fe482155520bf5f26.zip |
Version bump wrt #336068 by "Florian".
(Portage version: 2.2_rc69/cvs/Linux x86_64)
Diffstat (limited to 'x11-terms/guake/guake-0.4.2.ebuild')
-rw-r--r-- | x11-terms/guake/guake-0.4.2.ebuild | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/x11-terms/guake/guake-0.4.2.ebuild b/x11-terms/guake/guake-0.4.2.ebuild new file mode 100644 index 000000000000..e6ef433bac17 --- /dev/null +++ b/x11-terms/guake/guake-0.4.2.ebuild @@ -0,0 +1,60 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-terms/guake/guake-0.4.2.ebuild,v 1.1 2010/09/05 16:05:08 ssuominen Exp $ + +EAPI=2 + +GCONF_DEBUG=no +PYTHON_DEPEND="2:2.6" + +inherit eutils gnome2 python multilib + +DESCRIPTION="A dropdown terminal made for the GNOME desktop" +HOMEPAGE="http://guake.org/" +SRC_URI="mirror://debian/pool/main/g/${PN}/${PN}_${PV}.orig.tar.gz" +#SRC_URI="http://guake.org/files/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="nls" + +RDEPEND=">=x11-libs/gtk+-2.10:2 + dev-python/pygtk + x11-libs/vte[python] + dev-python/notify-python + dev-python/gconf-python + dev-python/dbus-python + >=gnome-base/gconf-2" +DEPEND="${RDEPEND} + dev-util/pkgconfig + nls? ( dev-util/intltool )" + +pkg_setup() { + DOCS="AUTHORS ChangeLog NEWS README TODO" + G2CONF="--disable-static + --disable-dependency-tracking + $(use_enable nls)" + python_set_active_version 2 +} + +src_prepare() { + epatch "${FILESDIR}"/${P}-int-ssl-port.patch \ + "${FILESDIR}"/${P}-prefs-spinbox.patch + gnome2_src_prepare +} + +src_install() { + gnome2_src_install + find "${D}" -name '*.la' -delete +} + +pkg_postinst() { + gnome2_pkg_postinst + python_mod_optimize /usr/$(get_libdir)/${PN} +} + +pkg_postrm() { + gnome2_pkg_postrm + python_mod_cleanup /usr/$(get_libdir)/${PN} +} |