Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 1051 - alsa-utils-0.9.0_beta12.ebuild
Summary: alsa-utils-0.9.0_beta12.ebuild
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: x86 Linux
: High enhancement (vote)
Assignee: Arcady Genkin (RETIRED)
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2002-03-10 13:54 UTC by Mark Rickard
Modified: 2003-02-04 19:42 UTC (History)
1 user (show)

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Mark Rickard 2002-03-10 13:54:41 UTC
This ebuild updates the ALSA utils to 0.9.0beta12.  It is a modified
version of the previous alsa-utils-0.9.0.1_beta10.ebuild. 
alsa-utils-0.9.0_beta12.ebuild is dependent on alsa-driver-0.9.0_beta12.
Comment 1 Mark Rickard 2002-03-10 13:55:21 UTC
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Author Achim Gottinger <achim@gentoo.org> 
# /home/cvsroot/gentoo-x86/media-sound/alsa-utils/alsa-utils-0.5.10-r6.ebuild,v
1.1 2001/10/02 20:34:44 woodchip Exp

#transform P to match tarball versioning
MYPV=${PV/_beta/beta}
MYP="${PN}-${MYPV}"
KV=""

S=${WORKDIR}/${MYP}

DESCRIPTION="Advanced Linux Sound Architecture Utils"

#SRC_URI="ftp://ftp.alsa-project.org/pub/utils/${MYP}.tar.bz2"
SRC_URI="http://www.alsa-project.org/alsa/ftp/utils/${MYP}.tar.bz2"

HOMEPAGE="http://www.alsa-project.org/"

DEPEND="virtual/glibc
	>=sys-libs/ncurses-5.1
	=media-libs/alsa-lib-0.9.0_beta12"


src_compile() {

	./configure \
		--host=${CHOST} \
		--prefix=/usr \
		--mandir=/usr/share/man \
		|| die "./configure failed"
	
	emake || die "Parallel Make Failed"

}

src_install() {
	
	ALSA_UTILS_DOCS="COPYING ChangeLog README TODO 
			seq/aconnect/README.aconnect 
			seq/aseqnet/README.aseqnet"
	
	make DESTDIR=${D} install || die "Installation Failed"
	
	dodoc ${ALSA_UTILS_DOCS}
	newdoc alsamixer/README README.alsamixer
	exeinto /etc/init.d 
	newexe ${FILESDIR}/alsa.rc6 alsa

}