diff options
author | Mamoru Komachi <usata@gentoo.org> | 2004-06-05 19:36:17 +0000 |
---|---|---|
committer | Mamoru Komachi <usata@gentoo.org> | 2004-06-05 19:36:17 +0000 |
commit | a5ec916efce8b91c9b28477a98aab1f1a2aa9a57 (patch) | |
tree | eff0e93ef882163164138d01682b675926d60589 /x11-wm/wmi | |
parent | new version on cpan (Manifest recommit) (diff) | |
download | gentoo-2-a5ec916efce8b91c9b28477a98aab1f1a2aa9a57.tar.gz gentoo-2-a5ec916efce8b91c9b28477a98aab1f1a2aa9a57.tar.bz2 gentoo-2-a5ec916efce8b91c9b28477a98aab1f1a2aa9a57.zip |
Initial import. Thanks to John Nilsson <john@milsson.nu> and Michael Kohl <citizen428@cargal.org>, closing bug #51336
Diffstat (limited to 'x11-wm/wmi')
-rw-r--r-- | x11-wm/wmi/ChangeLog | 10 | ||||
-rw-r--r-- | x11-wm/wmi/Manifest | 2 | ||||
-rw-r--r-- | x11-wm/wmi/files/digest-wmi-7 | 1 | ||||
-rw-r--r-- | x11-wm/wmi/metadata.xml | 9 | ||||
-rw-r--r-- | x11-wm/wmi/wmi-7.ebuild | 25 |
5 files changed, 47 insertions, 0 deletions
diff --git a/x11-wm/wmi/ChangeLog b/x11-wm/wmi/ChangeLog new file mode 100644 index 000000000000..29d7df28e8d7 --- /dev/null +++ b/x11-wm/wmi/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for x11-wm/wmi +# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-wm/wmi/ChangeLog,v 1.1 2004/06/05 19:36:17 usata Exp $ + +*wmi-7 (06 Jun 2004) + + 06 Jun 2004; Mamoru KOMACHI <usata@gentoo.org> +wmi-7.ebuild: + Initial import. Thanks to John Nilsson <john@milsson.nu> and + Michael Kohl <citizen428@cargal.org>, closing bug #51336 + diff --git a/x11-wm/wmi/Manifest b/x11-wm/wmi/Manifest new file mode 100644 index 000000000000..07c2f5d8519c --- /dev/null +++ b/x11-wm/wmi/Manifest @@ -0,0 +1,2 @@ +MD5 a967cfc3374f4bb71cf261a54d3dca37 wmi-7.ebuild 896 +MD5 7e7e0f0cf7b852e02aad5dfe5dbc5946 files/digest-wmi-7 57 diff --git a/x11-wm/wmi/files/digest-wmi-7 b/x11-wm/wmi/files/digest-wmi-7 new file mode 100644 index 000000000000..b86773c6681e --- /dev/null +++ b/x11-wm/wmi/files/digest-wmi-7 @@ -0,0 +1 @@ +MD5 45e3cceac5071f80196b8bf824137a47 wmi-7.tar.gz 166812 diff --git a/x11-wm/wmi/metadata.xml b/x11-wm/wmi/metadata.xml new file mode 100644 index 000000000000..4627b33b9737 --- /dev/null +++ b/x11-wm/wmi/metadata.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<maintainer> + <email>john@milsson.nu</email> + <description>John Nilsson isn't Gentoo official developer but will help us maintain x11-wm/wmi ebuilds.</description> +</maintainer> +<herd>desptop-wm</herd> +</pkgmetadata> diff --git a/x11-wm/wmi/wmi-7.ebuild b/x11-wm/wmi/wmi-7.ebuild new file mode 100644 index 000000000000..8935af707c6b --- /dev/null +++ b/x11-wm/wmi/wmi-7.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-wm/wmi/wmi-7.ebuild,v 1.1 2004/06/05 19:36:17 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.berlios.de/" +LICENSE="as-is" +DEPEND="virtual/x11 + dev-libs/STLport" +KEYWORDS="~x86" +SLOT="0" + +src_install () { + make DESTDIR=${D} install || die + dodoc AUTHORS ChangeLog INSTALL NEWS README TODO + docinto examples + dodoc examples/* + docinto themes + dodoc examples/themes/* + + echo -e "#!/bin/sh\n/usr/bin/wmi" > ${T}/wmi + exeinto /etc/X11/Sessions + doexe ${T}/wmi +} |