diff options
author | Mamoru Komachi <usata@gentoo.org> | 2004-10-07 17:49:35 +0000 |
---|---|---|
committer | Mamoru Komachi <usata@gentoo.org> | 2004-10-07 17:49:35 +0000 |
commit | 2ce0128275dfa0add96131e1fe340b2947b49efd (patch) | |
tree | 4f7229b939bce239ff61be23718083eff67ea1e8 /x11-wm | |
parent | Stable on sparc wrt #66647 (Manifest recommit) (diff) | |
download | gentoo-2-2ce0128275dfa0add96131e1fe340b2947b49efd.tar.gz gentoo-2-2ce0128275dfa0add96131e1fe340b2947b49efd.tar.bz2 gentoo-2-2ce0128275dfa0add96131e1fe340b2947b49efd.zip |
Version bumped. This closes bug #66443.
Diffstat (limited to 'x11-wm')
-rw-r--r-- | x11-wm/wmi/ChangeLog | 7 | ||||
-rw-r--r-- | x11-wm/wmi/Manifest | 2 | ||||
-rw-r--r-- | x11-wm/wmi/files/digest-wmi-10 | 1 | ||||
-rw-r--r-- | x11-wm/wmi/wmi-10.ebuild | 40 |
4 files changed, 49 insertions, 1 deletions
diff --git a/x11-wm/wmi/ChangeLog b/x11-wm/wmi/ChangeLog index 8646967a9001..895f4e05eb44 100644 --- a/x11-wm/wmi/ChangeLog +++ b/x11-wm/wmi/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for x11-wm/wmi # Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-wm/wmi/ChangeLog,v 1.8 2004/09/27 02:55:40 usata Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-wm/wmi/ChangeLog,v 1.9 2004/10/07 17:49:35 usata Exp $ + +*wmi-10 (08 Oct 2004) + + 08 Oct 2004; Mamoru KOMACHI <usata@gentoo.org> +wmi-10.ebuild: + Version bumped. This closes bug #66443. 27 Sep 2004; Mamoru KOMACHI <usata@gentoo.org> wmi-7.ebuild, wmi-8.ebuild, wmi-9.ebuild: diff --git a/x11-wm/wmi/Manifest b/x11-wm/wmi/Manifest index 86568a1a9387..92187eb31bfc 100644 --- a/x11-wm/wmi/Manifest +++ b/x11-wm/wmi/Manifest @@ -3,7 +3,9 @@ MD5 3113eb62900633d059d2bcbad0ef8f7e metadata.xml 343 MD5 d2d9fe1afa78aacf3ae6ec8442d024c2 wmi-7.ebuild 784 MD5 83f6c87f2f00d47ac6328c805c15b9a5 wmi-8.ebuild 899 MD5 52dfd2f30501eecf59fb99dac167c5db wmi-9.ebuild 1045 +MD5 c704fcf090699edec14d5c839b184506 wmi-10.ebuild 1048 MD5 f7f19525d1f04d7c2f698e824bca26b8 files/digest-wmi-9 57 MD5 7e7e0f0cf7b852e02aad5dfe5dbc5946 files/digest-wmi-7 57 MD5 e2f23f9622809956fd3bab1ca3ab5464 files/digest-wmi-8 57 MD5 607f0418f6681898ac8da1fbe4e8b6e7 files/wmi.desktop 112 +MD5 1bc69f6a689f8553a641ce0309ac1311 files/digest-wmi-10 58 diff --git a/x11-wm/wmi/files/digest-wmi-10 b/x11-wm/wmi/files/digest-wmi-10 new file mode 100644 index 000000000000..e99d2b817324 --- /dev/null +++ b/x11-wm/wmi/files/digest-wmi-10 @@ -0,0 +1 @@ +MD5 6728ae28aaa172db3df1e3c2bc483b23 wmi-10.tar.gz 193148 diff --git a/x11-wm/wmi/wmi-10.ebuild b/x11-wm/wmi/wmi-10.ebuild new file mode 100644 index 000000000000..716f635b922a --- /dev/null +++ b/x11-wm/wmi/wmi-10.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-wm/wmi/wmi-10.ebuild,v 1.1 2004/10/07 17:49:35 usata Exp $ + +DESCRIPTION="WMI is a new window manager for X11, which combines the best features of larswm, ion, evilwm and ratpoison into one window manager." +SRC_URI="http://download.berlios.de/wmi/${P}.tar.gz" +HOMEPAGE="http://wmi.modprobe.de/" +LICENSE="as-is" +DEPEND="virtual/x11 + dev-libs/expat + media-libs/fontconfig + media-libs/freetype" +KEYWORDS="~x86 ~ppc" +SLOT="0" +IUSE="" + +src_compile() { + econf --with-slot-support --with-xft-support || die + emake || die +} + +src_install () { + make install DESTDIR=${D} || die + + dodoc AUTHORS BUGS CONTRIB COPYING ChangeLog FAQ INSTALL LICENSE.txt \ + NEWS README TODO + + docinto examples + dodoc examples/* + + docinto examples/themes + dodoc examples/themes/* + + echo -e "#!/bin/sh\n/usr/bin/wmi" > ${T}/wmi + exeinto /etc/X11/Sessions + doexe ${T}/wmi + + insinto /usr/share/xsessions + doins ${FILESDIR}/wmi.desktop +} |