blob: 211dedd18bef0d6055a9691096e11445006f3268 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/bplay/bplay-0.991.ebuild,v 1.11 2004/06/24 23:53:09 agriffis Exp $
IUSE=""
DESCRIPTION="No-frills command-line buffered player and recorder."
HOMEPAGE="http://www.amberdata.demon.co.uk/bplay/"
SRC_URI="http://www.amberdata.demon.co.uk/bplay/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 hppa ~amd64"
DEPEND="virtual/glibc"
src_compile() {
emake CFLAGS="${CFLAGS} -Wall -DUSEBUFFLOCK" bplay || die
}
src_install () {
dobin bplay || die
dosym /usr/bin/bplay /usr/bin/brec
doman bplay.1 brec.1
dodoc README
}
|