blob: d02ac00c635107465461a43a007da796a610b85a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-irc/audacious-show/audacious-show-1.2.0.ebuild,v 1.4 2007/02/09 23:19:37 welp Exp $
inherit multilib
DESCRIPTION="XChat plugin to control audacious and to show whatever you're
currently playing to others"
HOMEPAGE="http://nedudu.hu/"
SRC_URI="http://nedudu.hu/downloads/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~x86"
IUSE=""
DEPEND="
media-sound/audacious
>=net-irc/xchat-2.4
"
src_compile() {
emake || die "emake failed"
}
src_install() {
insinto /usr/$(get_libdir)/xchat/plugins/
newins audacious-show-1.2.0.so audacious-show.so
}
|