diff options
author | 2014-07-08 11:39:07 +0000 | |
---|---|---|
committer | 2014-07-08 11:39:07 +0000 | |
commit | d6c445d839fec528c3aa7049b13e2ea0e7f682cf (patch) | |
tree | 7c9c2e62fa0988fa64bcc123fda9db1f0f3f204d /x11-wm/matchbox-window-manager | |
parent | Stable for HPPA (bug #504798). (diff) | |
download | gentoo-2-d6c445d839fec528c3aa7049b13e2ea0e7f682cf.tar.gz gentoo-2-d6c445d839fec528c3aa7049b13e2ea0e7f682cf.tar.bz2 gentoo-2-d6c445d839fec528c3aa7049b13e2ea0e7f682cf.zip |
Use gnome2.eclass better
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
Diffstat (limited to 'x11-wm/matchbox-window-manager')
-rw-r--r-- | x11-wm/matchbox-window-manager/ChangeLog | 11 | ||||
-rw-r--r-- | x11-wm/matchbox-window-manager/matchbox-window-manager-1.2-r1.ebuild | 48 |
2 files changed, 56 insertions, 3 deletions
diff --git a/x11-wm/matchbox-window-manager/ChangeLog b/x11-wm/matchbox-window-manager/ChangeLog index 965af404e910..b80c1e1df66f 100644 --- a/x11-wm/matchbox-window-manager/ChangeLog +++ b/x11-wm/matchbox-window-manager/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for x11-wm/matchbox-window-manager -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-wm/matchbox-window-manager/ChangeLog,v 1.18 2012/06/04 00:25:35 xmw Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-wm/matchbox-window-manager/ChangeLog,v 1.19 2014/07/08 11:39:07 pacho Exp $ + +*matchbox-window-manager-1.2-r1 (08 Jul 2014) + + 08 Jul 2014; Pacho Ramos <pacho@gentoo.org> + +matchbox-window-manager-1.2-r1.ebuild: + Use gnome2.eclass better 04 Jun 2012; Michael Weber <xmw@gentoo.org> matchbox-window-manager-1.2.ebuild: @@ -78,4 +84,3 @@ +matchbox-window-manager-0.9.5.ebuild: - Initial import. Original ebuild by Priit Laes, modifications by Björn Ruberg and Yuri Vasilevski. - diff --git a/x11-wm/matchbox-window-manager/matchbox-window-manager-1.2-r1.ebuild b/x11-wm/matchbox-window-manager/matchbox-window-manager-1.2-r1.ebuild new file mode 100644 index 000000000000..ce8b1d741ceb --- /dev/null +++ b/x11-wm/matchbox-window-manager/matchbox-window-manager-1.2-r1.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-wm/matchbox-window-manager/matchbox-window-manager-1.2-r1.ebuild,v 1.1 2014/07/08 11:39:07 pacho Exp $ + +EAPI="5" +GCONF_DEBUG="no" + +inherit eutils versionator gnome2 + +DESCRIPTION="Light weight WM designed for use on PDA computers" +HOMEPAGE="http://matchbox-project.org/" +SRC_URI="http://matchbox-project.org/sources/${PN}/$(get_version_component_range 1-2)/${P}.tar.bz2" +SLOT="0" +LICENSE="GPL-2" + +KEYWORDS="~amd64 ~arm ~hppa ~ppc ~x86" +IUSE="debug expat gnome session startup-notification xcomposite" + +RDEPEND=" + >=x11-libs/libmatchbox-1.5 + expat? ( dev-libs/expat ) + gnome? ( gnome-base/gconf ) + startup-notification? ( x11-libs/startup-notification ) + session? ( x11-libs/libSM ) + xcomposite? ( + x11-libs/libXcomposite + x11-libs/libXdamage ) +" +DEPEND="${RDEPEND}" + +src_prepare() { + # Allows to build with USE=-png + epatch "${FILESDIR}"/${PN}-1.0-use-nopng.patch + gnome2_src_prepare +} + +src_configure() { + gnome2_src_configure \ + --enable-keyboard \ + --enable-ping-protocol \ + --enable-xrm \ + $(use_enable debug) \ + $(use_enable session) \ + $(use_enable expat) \ + $(use_enable gnome gconf) \ + $(use_enable startup-notification) \ + $(use_enable xcomposite composite) +} |