blob: 0627d1325d1d51ccfe4537ae15f4475a805ffd67 [file] [log] [blame]
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-wm/blackbox/blackbox-0.70.1.ebuild,v 1.11 2010/02/22 19:53:22 armin76 Exp $
inherit 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}
dev-util/pkgconfig
>=sys-apps/sed-4
x11-proto/xextproto"
PROVIDE="virtual/blackbox"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${P}-gcc-4.3.patch"
}
src_compile() {
econf \
--sysconfdir=/etc/X11/${PN} \
$(use_enable debug) \
$(use_enable nls) \
$(use_enable truetype xft) \
|| die "econf failed"
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
}