# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: Exp $ DESCRIPTION="K3b Monkey's Audio Encoder and Decoder plugin" HOMEPAGE="http://www.k3b.org" SRC_URI="mirror://sourceforge/k3b/${PF}.tar.bz2" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="arts" DEPEND="app-cdr/k3b" RDEPEND="app-cdr/k3b" src_compile() { if use arts ; then EXTRA_ECONF="" else EXTRA_ECONF="--without-arts" fi econf || die "econf faild" emake || die "emake failed" } src_install() { emake DESTDIR="${D}" install || die "emake install failed" dodoc AUTHORS ChangeLog README TODO }