blob: e316f2a13a372e19c860187baf2b126331d9bf4e (
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
30
31
|
# Copyright 2002, Jens Schittenhelm
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/media-plugins/xmms-kjofol/xmms-kjofol-0.95.ebuild,v 1.2 2003/07/12 18:40:47 aliz Exp $
S=${WORKDIR}/${PN/ofol}
DESCRIPTION="A xmms remote that allows users to use K-Jofol skins"
SRC_URI="http://www.dgs.monash.edu.au/~timf/kint_xmms-${PV}.tar.gz"
HOMEPAGE="http://www.csse.monash.edu.au/~timf/xmms.html"
DEPEND="media-sound/xmms"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86"
src_compile() {
emake || die
}
src_install() {
dobin kj
dodir /usr/share/xmms/kjofol
cp *.zip ${D}usr/share/xmms/kjofol
dodoc readme.txt COPYING
}
pkg_postinst() {
einfo "This plugin works as a remote for XMMS. Start XMMS before"
einfo "using this plugin with kj"
einfo "Place K-Jofol skins in ~/.xmms/kjofol/"
}
|