# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ DESCRIPTION="An interactive Imlib2 console for the X Window system" HOMEPAGE="http://adesklets.sf.net/" SRC_URI="mirror://sourceforge/adesklets/${P}.tar.bz2" SLOT="0" LICENSE="GPL-2" KEYWORDS="x86 ~ppc ~sparc ~mips ~alpha ~arm ~hppa ~amd64 ~ia64" IUSE="X python" RDEPEND="virtual/libc sys-libs/readline >=media-libs/imlib2-1.1.2 X? (virtual/x11) python? (>=dev-lang/python-2.2)" DEPEND="$RDEPEND" src_unpack() { unpack ${P}.tar.bz2 } src_compile() { local myconf="" use X || myconf="--without-x" use python || myconf="${myconf} --without-python-support" econf ${myconf} || die emake || die } src_install() { make DESTDIR=${D} install || die doman doc/adesklets.1 dodoc ChangeLog INSTALL NEWS TODO AUTHORS dohtml -r . }