blob: c1f5f7474a04f36de73d0e31d0cf1c6a9954b243 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/vsound/vsound-0.6.ebuild,v 1.5 2006/06/16 21:15:53 flameeyes Exp $
IUSE=""
inherit
DESCRIPTION="A virtual audio loopback cable"
HOMEPAGE="http://www.zorg.org/${PN}/"
LICENSE="GPL-2"
DEPEND=">=media-sound/sox-12.17.1"
KEYWORDS="x86 amd64 sparc ~ppc"
SLOT="0"
SRC_URI="http://www.zorg.org/${PN}/${P}.tar.gz"
src_install() {
make DESTDIR="${D}" install || die
dodoc AUTHORS Changelog NEWS README
}
pkg_postinst() {
einfo
einfo "To use this program to, for instance, record audio from realplayer:"
einfo " vsound realplay realmediafile.rm"
einfo
einfo "Or, to listen to realmediafile.rm at the same time:"
einfo " vsound -d realplay realmediafile.rm"
einfo
einfo "See ${HOMEPAGE} or /usr/share/doc/${PF}/README.gz for more info"
einfo
}
|