# Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # Distributed under the terms of the GNU General Public License v2 # $Header: $ inherit eutils DESCRIPTION="tools for the monkey's audio format (ape)" HOMEPAGE="http://monkeysaudio.com/" SRC_URI="http://mrttt.nm.ru/${P}-linux.tar.bz2" LICENSE="free-noncomm" SLOT="0" KEYWORDS="~x86" IUSE="xmms" DEPEND="sys-devel/automake sys-devel/autoconf dev-lang/nasm xmms? ( media-sound/xmms )" src_compile() { epatch "${FILESDIR}/${PF}.patch" econf || die "Configure failed" emake || die "Make failed" if use xmms ; then cd ${S}/src/XMMS-Plugin emake build || die "Makeing xmms-plugin failed" fi } src_install() { einstall || die "Install failed" dodoc AUTHORS COPYING ChangeLog License.htm README if use xmms ; then cd ${S}/src/XMMS-Plugin insinto /usr/lib/xmms/Input doins libmacinput.so fi }