# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/media-plugins/audacious-docklet/audacious-docklet-0.1.1-r1.ebuild,v 1.4 2006/07/05 19:53:36 wolf31o2 Exp $ inherit eutils DESCRIPTION="Audacious plugin that displays an icon in your systemtray" SRC_URI="http://nedudu.hu/downloads/${P}.tar.bz2" HOMEPAGE="http://nedudu.hu/?page_id=11" LICENSE="GPL-2" SLOT="0" KEYWORDS="alpha amd64 x86" IUSE="nls" RDEPEND=">=media-sound/audacious-0.2" DEPEND="${RDEPEND} nls? ( dev-util/intltool )" src_unpack() { unpack ${A} cd ${S} epatch ${FILESDIR}/${PV}-includes.patch } src_compile() { econf $(use_enable nls) || die "econf failed" emake || die "emake failed" } src_install() { make DESTDIR="${D}" install || die "make install failed" dodoc AUTHORS NEWS README TODO }