blob: 99bec818e5ad2ec826e79132e29ecf97cb39b037 (
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
|
# Copyright 1999-2006 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.2 2006/03/11 17:33:53 ferdy Exp $
DESCRIPTION="XChat plugin to control audacious and to show whatever you're
currently playing to others"
HOMEPAGE="http://nedudu.hu/?page_id=11"
SRC_URI="http://nedudu.hu/downloads/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~x86"
IUSE=""
DEPEND="
media-sound/audacious
>=net-irc/xchat-2.4
"
src_compile() {
emake || die "emake failed"
}
src_install() {
mv audacious-show-1.2.0.so audacious-show.so
insinto ${ROOT}/usr/lib/xchat/plugins/
doins audacious-show.so
}
|