blob: c37b6ea59f91da85dfc8b5c40f24cb1355f5e9bb (
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
32
33
34
35
36
37
38
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/xmmsctrl/xmmsctrl-1.7.ebuild,v 1.8 2004/09/15 19:42:29 eradicator Exp $
IUSE=""
inherit eutils
DESCRIPTION="A small program to control xmms from a shell script."
SRC_URI="http://www.docs.uu.se/~adavid/utils/${P}.tar.gz"
HOMEPAGE="http://user.it.uu.se/~adavid/utils/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ppc sparc ~alpha ~hppa amd64"
RDEPEND=">=media-sound/xmms-1.2.7-r16"
DEPEND="${RDEPEND}
>=sys-apps/portage-2.0.48"
src_unpack() {
unpack ${A} || die
cd ${S}
epatch ${FILESDIR}/xmmsctrl-jump.patch
}
src_compile() {
emake || die
}
src_install () {
dobin xmmsctrl
dodoc README HELP
docinto samples
dodoc samples/*
}
|