From 70f654dab2bc203a82725c61f6f5c54348341bfa Mon Sep 17 00:00:00 2001 From: David Shakaryan Date: Thu, 28 Dec 2006 07:32:42 +0000 Subject: Major version bump and add myself as maintainer. (bug #117143) (Portage version: 2.1.2_rc4-r1) --- x11-wm/wmii/ChangeLog | 6 ++++- x11-wm/wmii/files/digest-wmii-3.5.1 | 3 +++ x11-wm/wmii/files/wmii.desktop | 1 - x11-wm/wmii/metadata.xml | 26 ++++++++++----------- x11-wm/wmii/wmii-3.5.1.ebuild | 46 +++++++++++++++++++++++++++++++++++++ 5 files changed, 67 insertions(+), 15 deletions(-) create mode 100644 x11-wm/wmii/files/digest-wmii-3.5.1 create mode 100644 x11-wm/wmii/wmii-3.5.1.ebuild (limited to 'x11-wm/wmii') diff --git a/x11-wm/wmii/ChangeLog b/x11-wm/wmii/ChangeLog index 971340d57380..47117274770f 100644 --- a/x11-wm/wmii/ChangeLog +++ b/x11-wm/wmii/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for x11-wm/wmii # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-wm/wmii/ChangeLog,v 1.12 2006/07/14 16:23:59 tove Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-wm/wmii/ChangeLog,v 1.13 2006/12/28 07:32:42 omp Exp $ + + 28 Dec 2006; David Shakaryan files/wmii.desktop, + metadata.xml, +wmii-3.5.1.ebuild: + Major version bump and add myself as maintainer. (bug #117143) 14 Jul 2006; Torsten Veller wmii-2.ebuild: Added x11-apps/xdpyinfo to RDEPEND. Reported by Michael P. in bug #138756. diff --git a/x11-wm/wmii/files/digest-wmii-3.5.1 b/x11-wm/wmii/files/digest-wmii-3.5.1 new file mode 100644 index 000000000000..24d7bacdbecf --- /dev/null +++ b/x11-wm/wmii/files/digest-wmii-3.5.1 @@ -0,0 +1,3 @@ +MD5 26705a7b59945b7d269921b45ac15cdf wmii-3.5.1.tar.gz 41658 +RMD160 6a89d8deab3716d10f45c20e8538856f9e5ef44e wmii-3.5.1.tar.gz 41658 +SHA256 6ce10c0805c2ff05952f7566b9af134ae76fdeb518dc7d9c413f0dd58635e6d1 wmii-3.5.1.tar.gz 41658 diff --git a/x11-wm/wmii/files/wmii.desktop b/x11-wm/wmii/files/wmii.desktop index c96756c5db16..ac938fa5833b 100644 --- a/x11-wm/wmii/files/wmii.desktop +++ b/x11-wm/wmii/files/wmii.desktop @@ -4,6 +4,5 @@ Name=wmii Comment=window manager improved 2 Exec=wmii TryExec=wmii -# no icon yet, only the top three are currently used Icon= Type=Application diff --git a/x11-wm/wmii/metadata.xml b/x11-wm/wmii/metadata.xml index caa4e2bfa633..11fcb322d17a 100644 --- a/x11-wm/wmii/metadata.xml +++ b/x11-wm/wmii/metadata.xml @@ -1,18 +1,18 @@ - no-herd - - tove@gentoo.org - Torsten Veller - - - wmii is a dynamic window manager for X11. It is highly customizable and - usable with keyboard and mouse. It supports conventional, tabbed and - tiled window management and has a small memory footprint. It is highly - modularized and uses an inter-process communication interface which - conforms to the 9P2000 protocol introduced by the Plan 9 operating - system. - + desktop-wm + + omp@gentoo.org + David Shakaryan + + + wmii is a dynamic window manager for X11. It is highly customizable and + usable with keyboard and mouse. It supports conventional, tabbed and + tiled window management and has a small memory footprint. It is highly + modularized and uses an inter-process communication interface which + conforms to the 9P2000 protocol introduced by the Plan 9 operating + system. + diff --git a/x11-wm/wmii/wmii-3.5.1.ebuild b/x11-wm/wmii/wmii-3.5.1.ebuild new file mode 100644 index 000000000000..d0aae3672b2f --- /dev/null +++ b/x11-wm/wmii/wmii-3.5.1.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-wm/wmii/wmii-3.5.1.ebuild,v 1.1 2006/12/28 07:32:42 omp Exp $ + +inherit toolchain-funcs + +DESCRIPTION="A dynamic window manager for X11" +HOMEPAGE="http://wmii.suckless.org/" +SRC_URI="http://suckless.org/download/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="sys-libs/libixp + x11-libs/libX11" +RDEPEND="${DEPEND} + x11-misc/dmenu" + +src_unpack() { + unpack ${A} + cd "${S}" + + sed -i \ + -e "/^PREFIX/s/=.*/= \/usr/" \ + -e "/^CONFPREFIX/s/=.*/= \/etc/" \ + -e "/^X11INC/s/=.*/= \/usr\/include/" \ + -e "/^X11LIB/s/=.*/= \/usr\/lib/" \ + -e "/^CFLAGS/s/= -Os/+=/" \ + -e "/^LDFLAGS/s/=/+=/" \ + -e "/^CC/s/=.*/= $(tc-getCC)/" \ + config.mk || die "sed failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + dodoc LICENSE + + echo -e "#!/bin/sh\n/usr/bin/wmii" > "${T}/${PN}" + exeinto /etc/X11/Sessions + doexe "${T}/${PN}" + + insinto /usr/share/xsessions + doins "${FILESDIR}/${PN}.desktop" +} -- cgit v1.2.3-65-gdbad