summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--x11-wm/blackbox/ChangeLog8
-rw-r--r--x11-wm/blackbox/blackbox-0.70.0.ebuild46
2 files changed, 6 insertions, 48 deletions
diff --git a/x11-wm/blackbox/ChangeLog b/x11-wm/blackbox/ChangeLog
index 67e8c7808098..8d3415c97b32 100644
--- a/x11-wm/blackbox/ChangeLog
+++ b/x11-wm/blackbox/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for x11-wm/blackbox
-# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-wm/blackbox/ChangeLog,v 1.61 2008/09/22 13:11:31 omp Exp $
+# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/x11-wm/blackbox/ChangeLog,v 1.62 2009/05/05 05:53:59 fauli Exp $
+
+ 05 May 2009; Christian Faulhammer <fauli@gentoo.org>
+ -blackbox-0.70.0.ebuild:
+ clean up
22 Sep 2008; David Shakaryan <omp@gentoo.org> metadata.xml:
Change herd from commonbox to desktop-wm.
diff --git a/x11-wm/blackbox/blackbox-0.70.0.ebuild b/x11-wm/blackbox/blackbox-0.70.0.ebuild
deleted file mode 100644
index 838faa18ab05..000000000000
--- a/x11-wm/blackbox/blackbox-0.70.0.ebuild
+++ /dev/null
@@ -1,46 +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/blackbox/blackbox-0.70.0.ebuild,v 1.13 2007/07/22 04:11:16 omp Exp $
-
-DESCRIPTION="A small, fast, full-featured window manager for X"
-HOMEPAGE="http://blackboxwm.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}wm/${P}.tar.bz2"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd"
-IUSE="nls truetype debug"
-
-RDEPEND="x11-libs/libXft
- x11-libs/libXt
- nls? ( sys-devel/gettext )
- truetype? ( media-libs/freetype )"
-DEPEND="${RDEPEND}
- x11-proto/xextproto
- dev-util/pkgconfig
- >=sys-apps/sed-4"
-
-PROVIDE="virtual/blackbox"
-
-src_compile() {
- econf \
- --sysconfdir=/etc/X11/${PN} \
- $(use_enable nls) \
- $(use_enable truetype xft) \
- $(use_enable debug) \
- || die "econf failed"
-
- emake || die "emake failed"
-}
-
-src_install() {
- make DESTDIR="${D}" install || die "make install failed"
- dodoc AUTHORS COMPLIANCE ChangeLog* INSTALL LICENSE README* TODO
-
- dodir /etc/X11/Sessions
- echo "/usr/bin/${PN}" > ${D}/etc/X11/Sessions/${PN}
- fperms a+x /etc/X11/Sessions/${PN}
-
- insinto /usr/share/xsessions
- doins ${FILESDIR}/${PN}.desktop
-}