media-plugins/audacious-mac/audacious-mac-0.3.10.ebuild

After searching for awhile, I decided to write my own ebuild for audacious-mac plugin, a plugin to play monkey audio files (.ape) with audacious.

Here it is

 

 

[code]# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

DESCRIPTION="Monkey Audio plugin for audacious"
HOMEPAGE="http://www.netswarm.net"
SRC_URI="http://www.netswarm.net/misc/${PN}-${PV}.tar.gz"

KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86"
SLOT="0"

LICENSE="Free"

IUSE=""

RESTRICT="mirror"

RDEPEND="media-libs/mac-port
        >=media-sound/audacious-1.4"

DEPEND="${RDEPEND}"

src_compile() {
        econf || die "econf failed"
        emake || die "emake failed"
}

src_install() {
        emake DESTDIR="${D}" install || die "emake install failed"
}[/code]