diff options
author | Pacho Ramos <pacho@gentoo.org> | 2010-06-13 15:51:46 +0000 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2010-06-13 15:51:46 +0000 |
commit | 0203b81b08bc9076fab48d4cdb34bc022b862b20 (patch) | |
tree | 706d5dcc71e0ed9b382cd531d9eac763d361c050 /x11-libs/libwnck | |
parent | Add new version for Gnome 2.30 (diff) | |
download | gentoo-2-0203b81b08bc9076fab48d4cdb34bc022b862b20.tar.gz gentoo-2-0203b81b08bc9076fab48d4cdb34bc022b862b20.tar.bz2 gentoo-2-0203b81b08bc9076fab48d4cdb34bc022b862b20.zip |
Add new version for Gnome 2.30
(Portage version: 2.1.8.3/cvs/Linux x86_64)
Diffstat (limited to 'x11-libs/libwnck')
-rw-r--r-- | x11-libs/libwnck/ChangeLog | 7 | ||||
-rw-r--r-- | x11-libs/libwnck/libwnck-2.30.0.ebuild | 69 |
2 files changed, 75 insertions, 1 deletions
diff --git a/x11-libs/libwnck/ChangeLog b/x11-libs/libwnck/ChangeLog index 3715e1d2688b..c950d9289e28 100644 --- a/x11-libs/libwnck/ChangeLog +++ b/x11-libs/libwnck/ChangeLog @@ -1,6 +1,11 @@ # 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.234 2010/06/04 19:52:51 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libwnck/ChangeLog,v 1.235 2010/06/13 15:51:46 pacho Exp $ + +*libwnck-2.30.0 (13 Jun 2010) + + 13 Jun 2010; Pacho Ramos <pacho@gentoo.org> +libwnck-2.30.0.ebuild: + Add new version for Gnome 2.30. 04 Jun 2010; Markus Meier <maekke@gentoo.org> libwnck-2.28.0.ebuild: x86 stable, bug #314899 diff --git a/x11-libs/libwnck/libwnck-2.30.0.ebuild b/x11-libs/libwnck/libwnck-2.30.0.ebuild new file mode 100644 index 000000000000..cf4782e01f8a --- /dev/null +++ b/x11-libs/libwnck/libwnck-2.30.0.ebuild @@ -0,0 +1,69 @@ +# 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.0.ebuild,v 1.1 2010/06/13 15:51:46 pacho Exp $ + +EAPI="2" +GCONF_DEBUG="no" + +inherit autotools gnome2 eutils + +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" + +# FIXME: introspection support disabled for now +IUSE="doc startup-notification" + +RDEPEND=">=x11-libs/gtk+-2.19.7 + >=dev-libs/glib-2.16.0 + x11-libs/libX11 + x11-libs/libXres + x11-libs/libXext + startup-notification? ( >=x11-libs/startup-notification-0.4 )" +# introspection? ( dev-libs/gobject-introspection )" +DEPEND="${RDEPEND} + sys-devel/gettext + >=dev-util/pkgconfig-0.9 + >=dev-util/intltool-0.40 + dev-util/gtk-doc-am + gnome-base/gnome-common + doc? ( >=dev-util/gtk-doc-1.9 ) + x86-interix? ( + sys-libs/itx-bind + )" + +DOCS="AUTHORS ChangeLog HACKING NEWS README" + +pkg_setup() { + G2CONF="${G2CONF} + --disable-static + --disable-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 + + if has_version '<sys-devel/libtool-2.2.6b'; then + intltoolize --force --copy --automake || die "intltoolize failed" + + # Make it libtool-1 compatible, bug #280876 + rm -v m4/lt* m4/libtool.m4 || die "removing libtool macros failed" + + AT_M4DIR="m4" eautoreconf + fi + + # Fix intltoolize broken file, see upstream #577133 + sed "s:'\^\$\$lang\$\$':\^\$\$lang\$\$:g" -i po/Makefile.in.in \ + || die "sed failed" + +} |