blob: b7363ad86fdb6c488932d0affaa1111421918143 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/ltsp-sound/ltsp-sound-3.0.1-r1.ebuild,v 1.5 2004/06/24 23:55:25 agriffis Exp $
IUSE="gnome"
S=${WORKDIR}/ltsp_sound
HOMEPAGE="http://www.ltsp.org"
DESCRIPTION="Sound package for Linux Terminal Server"
SRC_URI="mirror://sourceforge/ltsp/ltsp_sound-${PV}-i386.tgz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86"
DEPEND="=net-misc/ltsp-core-3.0*
media-libs/libaudiooss
media-libs/nas
gnome? ( media-sound/esound )"
src_install() {
cd ${S}
# install client stuff
# since we arent compiling might as well install it all
# no need to nit pick
insinto /opt/ltsp
cp -r i386 ${D}/opt/ltsp
dodoc README COPYING
}
|