summaryrefslogtreecommitdiff
path: root/x11-wm
diff options
context:
space:
mode:
authorMichael Palimaka <kensington@gentoo.org>2014-08-24 09:37:16 +0000
committerMichael Palimaka <kensington@gentoo.org>2014-08-24 09:37:16 +0000
commitd111c590db3f6c2b476e650a9299a104697c4341 (patch)
treeae4eaac3e49dd3a78a60acd6e5a9f4e8d193b4d3 /x11-wm
parentRemove old. (diff)
downloadgentoo-2-d111c590db3f6c2b476e650a9299a104697c4341.tar.gz
gentoo-2-d111c590db3f6c2b476e650a9299a104697c4341.tar.bz2
gentoo-2-d111c590db3f6c2b476e650a9299a104697c4341.zip
Remove old.
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0x06B1F38DCA45A1EC!)
Diffstat (limited to 'x11-wm')
-rw-r--r--x11-wm/wm2/ChangeLog5
-rw-r--r--x11-wm/wm2/wm2-4.ebuild53
2 files changed, 4 insertions, 54 deletions
diff --git a/x11-wm/wm2/ChangeLog b/x11-wm/wm2/ChangeLog
index 9b53e8b62b5e..cb07fe51f3d2 100644
--- a/x11-wm/wm2/ChangeLog
+++ b/x11-wm/wm2/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for x11-wm/wm2
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-wm/wm2/ChangeLog,v 1.15 2014/08/09 12:05:06 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-wm/wm2/ChangeLog,v 1.16 2014/08/24 09:37:16 kensington Exp $
+
+ 24 Aug 2014; Michael Palimaka <kensington@gentoo.org> -wm2-4.ebuild:
+ Remove old.
09 Aug 2014; Agostino Sarubbo <ago@gentoo.org> wm2-4-r1.ebuild:
Stable for ppc, wrt bug #393817
diff --git a/x11-wm/wm2/wm2-4.ebuild b/x11-wm/wm2/wm2-4.ebuild
deleted file mode 100644
index 4f3c2c8f7aff..000000000000
--- a/x11-wm/wm2/wm2-4.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-wm/wm2/wm2-4.ebuild,v 1.9 2007/06/30 13:14:15 coldwind Exp $
-
-inherit eutils
-
-DESCRIPTION="Small, unconfigurable window manager"
-HOMEPAGE="http://www.all-day-breakfast.com/wm2/"
-SRC_URI="http://www.all-day-breakfast.com/wm2/${P}.tar.gz"
-
-RDEPEND="x11-libs/libXmu"
-DEPEND="${RDEPEND}
- x11-proto/xextproto"
-
-SLOT="0"
-LICENSE="freedist"
-KEYWORDS="amd64 ppc x86"
-IUSE=""
-
-src_unpack() {
- unpack ${A}
-
- cd "${S}"
- epatch "${FILESDIR}/${PF}-gentoo.patch"
-
- sed 's/^#//' Config.h > wm2.conf
- if [ -e "/etc/wm2.conf" ]; then
- echo "#undef _CONFIG_H_" >> Config.h
- awk '/^[^/]/{print "#" $0}' /etc/wm2.conf >> Config.h
- fi
-}
-
-src_compile() {
- emake CFLAGS="${CFLAGS}" || die "emake failed"
-}
-
-src_install() {
- dobin wm2 || die
- insinto /etc
- doins wm2.conf || die
- dodoc README || die
-}
-
-pkg_postinst() {
- echo
- elog "wm2 is unconfigurable after you have installed. If you want to"
- elog "change settings of wm2, please have a look at /etc/wm2.conf"
- elog "and rewrite it, then emerge wm2 again (wm2 ebuild uses settings"
- elog "from that file automatically). If you think wm2 lacks some important"
- elog "features that you want to use (such as background pixmaps),"
- elog "consider using wmx, written by the same author."
- echo
-}