diff options
author | Gilles Dartiguelongue <eva@gentoo.org> | 2010-09-27 21:59:49 +0000 |
---|---|---|
committer | Gilles Dartiguelongue <eva@gentoo.org> | 2010-09-27 21:59:49 +0000 |
commit | b963fcf39da6d0434f851e6077ff48675d94e981 (patch) | |
tree | e7f40bedc6bd0c288bb0bc48533916ab3fdb9a2e /x11-libs/libwnck | |
parent | Version bump. sftp: fix for openssh 5.6, bug #335316. iphone: support for iOS... (diff) | |
download | gentoo-2-b963fcf39da6d0434f851e6077ff48675d94e981.tar.gz gentoo-2-b963fcf39da6d0434f851e6077ff48675d94e981.tar.bz2 gentoo-2-b963fcf39da6d0434f851e6077ff48675d94e981.zip |
Version bump. introspection adjustements. Fix a regression in pager from 2.30.4. Translation updates.
(Portage version: 2.2_rc86/cvs/Linux x86_64)
Diffstat (limited to 'x11-libs/libwnck')
-rw-r--r-- | x11-libs/libwnck/ChangeLog | 9 | ||||
-rw-r--r-- | x11-libs/libwnck/libwnck-2.30.5.ebuild | 53 |
2 files changed, 61 insertions, 1 deletions
diff --git a/x11-libs/libwnck/ChangeLog b/x11-libs/libwnck/ChangeLog index 11c0565d209a..bb5b0b8e7525 100644 --- a/x11-libs/libwnck/ChangeLog +++ b/x11-libs/libwnck/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for x11-libs/libwnck # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/libwnck/ChangeLog,v 1.248 2010/09/15 21:54:15 eva Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libwnck/ChangeLog,v 1.249 2010/09/27 21:59:49 eva Exp $ + +*libwnck-2.30.5 (27 Sep 2010) + + 27 Sep 2010; Gilles Dartiguelongue <eva@gentoo.org> + +libwnck-2.30.5.ebuild: + Version bump. introspection adjustements. Fix a regression in pager from + 2.30.4. Translation updates. *libwnck-2.30.4 (15 Sep 2010) diff --git a/x11-libs/libwnck/libwnck-2.30.5.ebuild b/x11-libs/libwnck/libwnck-2.30.5.ebuild new file mode 100644 index 000000000000..6bf9e504d69b --- /dev/null +++ b/x11-libs/libwnck/libwnck-2.30.5.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libwnck/libwnck-2.30.5.ebuild,v 1.1 2010/09/27 21:59:49 eva Exp $ + +EAPI="2" +GCONF_DEBUG="no" + +inherit gnome2 + +DESCRIPTION="A window navigation construction kit" +HOMEPAGE="http://www.gnome.org/" + +LICENSE="LGPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris" + +IUSE="doc +introspection startup-notification" + +RDEPEND=">=x11-libs/gtk+-2.19.7[introspection?] + >=dev-libs/glib-2.16.0 + x11-libs/libX11 + x11-libs/libXres + x11-libs/libXext + introspection? ( >=dev-libs/gobject-introspection-0.6.14 ) + startup-notification? ( >=x11-libs/startup-notification-0.4 )" +DEPEND="${RDEPEND} + sys-devel/gettext + >=dev-util/pkgconfig-0.9 + >=dev-util/intltool-0.40 + doc? ( >=dev-util/gtk-doc-1.9 ) + x86-interix? ( sys-libs/itx-bind )" +# eautoreconf needs +# dev-util/gtk-doc-am +# gnome-base/gnome-common + +DOCS="AUTHORS ChangeLog HACKING NEWS README" + +pkg_setup() { + G2CONF="${G2CONF} + --disable-static + $(use_enable introspection) + $(use_enable startup-notification)" +} + +src_prepare() { + gnome2_src_prepare + + if use x86-interix; then + # activate the itx-bind package... + append-flags "-I${EPREFIX}/usr/include/bind" + append-ldflags "-L${EPREFIX}/usr/lib/bind" + fi +} |