# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ inherit eutils MY_PV="3.99-u4-b4" DESCRIPTION="Codec and console-tool for lossless Monkey's Audio (.ape)" HOMEPAGE="http://sourceforge.net/projects/mac-port/" SRC_URI="mirror://sourceforge/mac-port/${PN}-${MY_PV}.tar.gz" LICENSE="LGPL-2" SLOT="0" KEYWORDS="~x86" IUSE="compability" DEPEND=">=dev-lang/nasm-0.98.39" S="${WORKDIR}/${PN}-${MY_PV}" src_unpack() { unpack ${A} cd "${S}" epatch "${FILESDIR}/gentoo-executable-stack.patch" } src_compile() { econf \ --disable-dependency-tracking \ $( use_enable compability backward ) \ || die "econf failed" emake || die "emake failed" } src_install() { make DESTDIR=${D} install || die dodoc AUTHORS ChangeLog README NEWS TODO }