summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Palimaka <kensington@gentoo.org>2015-11-23 22:58:10 +1100
committerMichael Palimaka <kensington@gentoo.org>2015-11-23 22:58:10 +1100
commit296d6177a2d8cca1ddfeccb8b0c911315279c596 (patch)
treebb9806c88a253d22e88271364889641e3487da27 /x11-wm/blackbox
parentmedia-gfx/argyllcms: fix patch application, bug #566476 (diff)
downloadgentoo-296d6177a2d8cca1ddfeccb8b0c911315279c596.tar.gz
gentoo-296d6177a2d8cca1ddfeccb8b0c911315279c596.tar.bz2
gentoo-296d6177a2d8cca1ddfeccb8b0c911315279c596.zip
x11-wm/blackbox: remove old
Package-Manager: portage-2.2.25
Diffstat (limited to 'x11-wm/blackbox')
-rw-r--r--x11-wm/blackbox/blackbox-0.70.1.ebuild57
1 files changed, 0 insertions, 57 deletions
diff --git a/x11-wm/blackbox/blackbox-0.70.1.ebuild b/x11-wm/blackbox/blackbox-0.70.1.ebuild
deleted file mode 100644
index ee0d2f947287..000000000000
--- a/x11-wm/blackbox/blackbox-0.70.1.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-inherit autotools eutils
-
-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 arm 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}
- virtual/pkgconfig
- >=sys-apps/sed-4
- x11-proto/xextproto"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
-
- epatch "${FILESDIR}/${P}-gcc-4.3.patch" \
- "${FILESDIR}/${P}-asneeded.patch"
- if has_version ">=x11-libs/libX11-1.4.0"; then
- sed -i -e "s/_XUTIL_H_/_X11&/" lib/Util.hh || die #348556
- fi
- sed -e "s/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/" -i configure.ac || die
- eautoreconf
-}
-
-src_compile() {
- econf \
- --sysconfdir=/etc/X11/${PN} \
- $(use_enable debug) \
- $(use_enable nls) \
- $(use_enable truetype xft)
- emake || die "emake failed"
-}
-
-src_install() {
- dodir /etc/X11/Sessions
- echo "/usr/bin/blackbox" > "${D}/etc/X11/Sessions/${PN}"
- fperms a+x /etc/X11/Sessions/${PN}
-
- insinto /usr/share/xsessions
- doins "${FILESDIR}/${PN}.desktop"
-
- emake DESTDIR="${D}" install || die "emake install failed"
- dodoc AUTHORS ChangeLog* COMPLIANCE README* TODO || die
-}