# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ inherit eutils DESCRIPTION="workspace pager dockapp, particularly useful with the Fluxbox window manager" HOMEPAGE="http://www.isomedia.com/homes/stevencooper/" SRC_URI="http://www.isomedia.com/homes/stevencooper/files/${P}.tar.gz http://www.zendurl.com/l/luancarv/newer_themes_compatibility.patch.tar.gz" IUSE="X" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~hppa ~ppc ~x86 ~x86-fbsd" DEPEND="virtual/blackbox X? ( >=x11-libs/libX11-1.0.3 )" src_unpack() { unpack ${A} cd "${S}" # This patch solves the file-theme-only limitation. It also allows #RRGGBB colors. epatch "${WORKDIR}/newer_themes_compatibility.patch" } src_compile() { econf \ --datadir=/usr/share \ $(use_enable X) \ || die "Error: econf failed!" emake || die } src_install() { make DESTDIR=${D} install || die dodoc README COPYING AUTHORS ChangeLog NEWS README TODO }