blob: c15cec576844af43bd2c3094c73c399c1501c50e (
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.12 2004/07/01 07:54:59 eradicator 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/libc"
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
}
|