37 lines
825 B
Bash
37 lines
825 B
Bash
# Copyright 1999-2012 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmauda/wmauda-0.9.ebuild,v 1.1 2012/10/02 15:25:07 voyageur Exp $
|
|
|
|
EAPI=4
|
|
inherit eutils toolchain-funcs
|
|
|
|
DESCRIPTION="Dockable applet for WindowMaker that controls Audacious."
|
|
HOMEPAGE="http://www.netswarm.net"
|
|
SRC_URI="http://www.netswarm.net/misc/${P}.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE=""
|
|
|
|
RDEPEND="dev-libs/dbus-glib
|
|
x11-libs/libX11
|
|
x11-libs/gtk+:2
|
|
>=media-sound/audacious-1.5"
|
|
DEPEND="${RDEPEND}
|
|
x11-proto/xproto
|
|
virtual/pkgconfig"
|
|
|
|
src_prepare() {
|
|
epatch "${FILESDIR}"/${P}-asneeded.patch
|
|
}
|
|
|
|
src_compile() {
|
|
tc-export CC
|
|
emake PREFIX="/usr"
|
|
}
|
|
|
|
src_install () {
|
|
emake DESTDIR="${D}" PREFIX="/usr" install
|
|
dodoc AUTHORS README
|
|
}
|