blob: 199f98e5f375fbb9c3a347e4e94218792ff29c58 (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2
# Maintainer: Arcady Genkin <agenkin@thpoon.com>
# $Header: /var/cvsroot/gentoo-x86/media-sound/bplay/bplay-0.991.ebuild,v 1.1 2002/03/13 06:00:55 agenkin Exp $
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"
S="${WORKDIR}/${P}"
DEPEND="virtual/glibc"
src_compile() {
emake CFLAGS="${CFLAGS} -Wall -DUSEBUFFLOCK" bplay || die
}
src_install () {
exeinto /usr/bin
doexe bplay
dosym /usr/bin/bplay /usr/bin/brec
doman bplay.1 brec.1
dodoc COPYING README
}
|