diff options
author | 2015-06-06 13:04:15 +0000 | |
---|---|---|
committer | 2015-06-06 13:04:15 +0000 | |
commit | 22bff9fbcf497d2d60be4cda1d87ccaff5a43e02 (patch) | |
tree | 27ff097bfd1ccf770b6d2dcb361a9b3c74ec9db9 /x11-libs | |
parent | Drop obsolete glade support (#551290) (diff) | |
download | gentoo-2-22bff9fbcf497d2d60be4cda1d87ccaff5a43e02.tar.gz gentoo-2-22bff9fbcf497d2d60be4cda1d87ccaff5a43e02.tar.bz2 gentoo-2-22bff9fbcf497d2d60be4cda1d87ccaff5a43e02.zip |
Drop obsolete glade support (#551292)
(Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
Diffstat (limited to 'x11-libs')
-rw-r--r-- | x11-libs/mx/ChangeLog | 9 | ||||
-rw-r--r-- | x11-libs/mx/mx-1.4.7-r2.ebuild | 57 |
2 files changed, 64 insertions, 2 deletions
diff --git a/x11-libs/mx/ChangeLog b/x11-libs/mx/ChangeLog index 826246db41b0..43b561a4fff4 100644 --- a/x11-libs/mx/ChangeLog +++ b/x11-libs/mx/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for x11-libs/mx -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/mx/ChangeLog,v 1.21 2014/04/18 08:37:51 pacho Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/mx/ChangeLog,v 1.22 2015/06/06 13:04:15 pacho Exp $ + +*mx-1.4.7-r2 (06 Jun 2015) + + 06 Jun 2015; Pacho Ramos <pacho@gentoo.org> +mx-1.4.7-r2.ebuild: + Drop obsolete glade support (#551292) 18 Apr 2014; Pacho Ramos <pacho@gentoo.org> -mx-1.4.7.ebuild: Drop old diff --git a/x11-libs/mx/mx-1.4.7-r2.ebuild b/x11-libs/mx/mx-1.4.7-r2.ebuild new file mode 100644 index 000000000000..9056643dab9f --- /dev/null +++ b/x11-libs/mx/mx-1.4.7-r2.ebuild @@ -0,0 +1,57 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/mx/mx-1.4.7-r2.ebuild,v 1.1 2015/06/06 13:04:15 pacho Exp $ + +EAPI=5 +GCONF_DEBUG="yes" + +inherit gnome2 eutils + +DESCRIPTION="A widget toolkit using Clutter" +HOMEPAGE="http://clutter-project.org/" +SRC_URI="mirror://github/clutter-project/${PN}/${P}.tar.xz" + +LICENSE="LGPL-2.1" +SLOT="1.0" +KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="dbus +gtk +introspection startup-notification" + +RDEPEND=" + >=dev-libs/glib-2.28.0:2 + >=media-libs/clutter-1.7.91:1.0 + media-libs/cogl:= + >=x11-apps/xrandr-1.2.0 + + x11-libs/gdk-pixbuf:2[introspection?] + + dbus? ( >=dev-libs/dbus-glib-0.82 ) + gtk? ( >=x11-libs/gtk+-2.20:2[introspection?] ) + introspection? ( >=dev-libs/gobject-introspection-0.6.4:= ) + startup-notification? ( >=x11-libs/startup-notification-0.9 ) +" +DEPEND="${RDEPEND} + >=dev-util/gtk-doc-am-1.14 + >=dev-util/intltool-0.35.0 + sys-devel/gettext + virtual/pkgconfig +" + +src_prepare() { + # Tests are interactive, no use for us + sed -e 's/^\(SUBDIRS .*\)tests\(.*\)/\1 \2/g' \ + -i Makefile.am -i Makefile.in || die + # In 1.4.8 + epatch "${FILESDIR}/${P}-gl-types.patch" + + gnome2_src_prepare +} + +src_configure() { + gnome2_src_configure \ + --with-winsys=x11 \ + --without-glade \ + $(use_enable gtk gtk-widgets) \ + $(use_enable introspection) \ + $(use_with dbus) \ + $(use_with startup-notification) +} |