diff options
author | Yuri Vasilevski <yvasilev@gentoo.org> | 2006-06-04 21:47:11 +0000 |
---|---|---|
committer | Yuri Vasilevski <yvasilev@gentoo.org> | 2006-06-04 21:47:11 +0000 |
commit | 6366ffcc8ea2b2be7fa7baf682df5601b5d598bd (patch) | |
tree | b51985f323f0075decaf49e1597397f5d4f64878 /x11-wm/matchbox-window-manager/matchbox-window-manager-1.0.ebuild | |
parent | Version dump. (diff) | |
download | gentoo-2-6366ffcc8ea2b2be7fa7baf682df5601b5d598bd.tar.gz gentoo-2-6366ffcc8ea2b2be7fa7baf682df5601b5d598bd.tar.bz2 gentoo-2-6366ffcc8ea2b2be7fa7baf682df5601b5d598bd.zip |
Version dump.
(Portage version: 2.1_rc3-r5)
Diffstat (limited to 'x11-wm/matchbox-window-manager/matchbox-window-manager-1.0.ebuild')
-rw-r--r-- | x11-wm/matchbox-window-manager/matchbox-window-manager-1.0.ebuild | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/x11-wm/matchbox-window-manager/matchbox-window-manager-1.0.ebuild b/x11-wm/matchbox-window-manager/matchbox-window-manager-1.0.ebuild new file mode 100644 index 000000000000..6c3917f599bd --- /dev/null +++ b/x11-wm/matchbox-window-manager/matchbox-window-manager-1.0.ebuild @@ -0,0 +1,45 @@ +# Copyright 2006-2006 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.0.ebuild,v 1.1 2006/06/04 21:47:11 yvasilev Exp $ + +inherit versionator + +DESCRIPTION="Light weight WM designed for use on PDA computers" +HOMEPAGE="http://projects.o-hand.com/matchbox/" +SRC_URI="http://projects.o-hand.com/matchbox/sources/${PN}/$(get_version_component_range 1-2)/${P}.tar.bz2" +SLOT="0" +LICENSE="GPL-2" + +KEYWORDS="~x86" +IUSE="debug expat gnome session startup-notification xcomposite" + +DEPEND=">=x11-libs/libmatchbox-1.5 + expat? ( dev-libs/expat ) + gnome? ( gnome-base/gconf ) + startup-notification? ( x11-libs/startup-notification ) + session? ( || ( x11-libs/libSM + virtual/x11 ) ) + xcomposite? ( || ( ( x11-libs/libXcomposite + x11-libs/libXdamage ) + virtual/x11 ) )" + +src_compile() { + econf --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) \ + || die "Configuration failed" + + emake || die "Compilation failed" +} + +src_install() { + make DESTDIR="${D}" install || die "Installation failed" + + dodoc AUTHORS ChangeLog INSTALL NEWS README +} |