summaryrefslogtreecommitdiff
blob: 7975ee2098dfb38530f4249903edbea68e2e7888 (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 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/livetools/livetools-1.2.3.ebuild,v 1.3 2004/06/24 22:22:59 agriffis Exp $

DESCRIPTION="A small set of utilities to allow easy access to Creative's SoundBlaster Live!Drive IR's remote control."
HOMEPAGE="http://www.clarkson.edu/~evanchsa/software/livetools/"
SRC_URI="http://www.clarkson.edu/~evanchsa/software/livetools/${PV}/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE=""

# Currently, this is only functional as a XMMS plugin
# so it makes no sense to run it without XMMS. When it
# becomes more generalized we can remove the XMMS dep.
DEPEND="media-sound/xmms"

src_compile() {
	./configure \
		--host=${CHOST} \
		--prefix=/usr \
		--infodir=/usr/share/info \
		--mandir=/usr/share/man \
		--sysconfdir=/etc || die "./configure failed"
	emake || die
}

src_install() {
	make DESTDIR=${D} install || die
	dodoc AUTHORS ChangeLog NEWS README TODO
}