mirror of
https://github.com/gryf/gryf-overlay.git
synced 2025-12-27 17:02:30 +01:00
38 lines
799 B
Bash
38 lines
799 B
Bash
# Copyright 1999-2005 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/media-sound/xmmsctrl/xmmsctrl-1.8.ebuild,v 1.4 2005/09/15 20:04:29 agriffis Exp $
|
|
|
|
IUSE=""
|
|
|
|
inherit eutils bash-completion
|
|
|
|
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="alpha amd64 ~hppa ppc sparc x86"
|
|
|
|
DEPEND="media-sound/xmms"
|
|
|
|
src_unpack() {
|
|
unpack ${A} || die
|
|
cd ${S}
|
|
epatch ${FILESDIR}/${P}-jump.patch
|
|
}
|
|
|
|
src_compile() {
|
|
emake || die
|
|
}
|
|
|
|
src_install () {
|
|
dobin xmmsctrl
|
|
dodoc README HELP
|
|
|
|
docinto samples
|
|
dodoc samples/*
|
|
|
|
dobashcompletion ${FILESDIR}/${PN}.bash-completion ${PN}
|
|
}
|