# Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/x11-libs/xosd/xosd-2.2.2.ebuild,v 1.5 2003/08/15 11:10:39 lanius Exp $ DESCRIPTION="Library for overlaying text/glyphs in X-Windows \ X-On-Screen-Display plus binary for sending text from command line." HOMEPAGE="http://www.ignavus.net/" SRC_URI="http://www.ignavus.net/${P}.tar.gz" IUSE="xmms" SLOT="0" LICENSE="GPL-2" KEYWORDS="~x86 ~sparc ~ppc" DEPEND="virtual/x11 xmms? ( media-sound/xmms >=media-libs/gdk-pixbuf-0.22.0 )" src_compile() { local myconf if [ "`use xmms`" ]; then myconf="--with-plugindir=/usr/lib/xmms" else myconf="--without-plugindir" fi econf || die emake || die } src_install() { make DESTDIR=${D} install || die dodoc AUTHORS ChangeLog NEWS COPYING README }