diff options
author | 2009-05-08 16:28:00 +0000 | |
---|---|---|
committer | 2009-05-08 16:28:00 +0000 | |
commit | e456df4fb9ba5f0acd3da44edaf1212a750f1d86 (patch) | |
tree | 079d99d14853b062a6ea14a35a0dc0471213678f /media-sound/bplay/bplay-0.991.ebuild | |
parent | Remove -Werror from build. (diff) | |
download | historical-e456df4fb9ba5f0acd3da44edaf1212a750f1d86.tar.gz historical-e456df4fb9ba5f0acd3da44edaf1212a750f1d86.tar.bz2 historical-e456df4fb9ba5f0acd3da44edaf1212a750f1d86.zip |
Rename bplay to bplay-bin to avoid file collision with blinkentools since nothing depends on this pkg.
Package-Manager: portage-2.1.6.13/cvs/Linux x86_64
Diffstat (limited to 'media-sound/bplay/bplay-0.991.ebuild')
-rw-r--r-- | media-sound/bplay/bplay-0.991.ebuild | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/media-sound/bplay/bplay-0.991.ebuild b/media-sound/bplay/bplay-0.991.ebuild index f1223fd1d68e..4cf064635fed 100644 --- a/media-sound/bplay/bplay-0.991.ebuild +++ b/media-sound/bplay/bplay-0.991.ebuild @@ -1,11 +1,9 @@ -# Copyright 1999-2006 Gentoo Foundation +# Copyright 1999-2009 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.17 2006/03/07 13:32:09 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/bplay/bplay-0.991.ebuild,v 1.18 2009/05/08 16:28:00 ssuominen Exp $ inherit toolchain-funcs -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" @@ -13,14 +11,17 @@ SRC_URI="http://www.amberdata.demon.co.uk/bplay/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="amd64 hppa ~ppc sparc x86" +IUSE="" src_compile() { - emake CC="$(tc-getCC)" LDFLAGS="${LDFLAGS}" CFLAGS="${CFLAGS} -DUSEBUFFLOCK" bplay || die + emake CC="$(tc-getCC)" LDFLAGS="${LDFLAGS}" \ + CFLAGS="${CFLAGS} -DUSEBUFFLOCK" bplay || die "emake failed" } src_install () { - dobin bplay || die - dosym /usr/bin/bplay /usr/bin/brec - doman bplay.1 brec.1 + newbin bplay bplay-bin || die "dobin failed" + dosym bplay-bin /usr/bin/brec || die "dosym failed" + doman brec.1 + newman bplay.1 bplay-bin.1 dodoc README } |