Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 1050 - alsa-tools-0.9.0_beta12.ebuild version of the previous alsa-driver-0.9.0_bet
Summary: alsa-tools-0.9.0_beta12.ebuild version of the previous alsa-driver-0.9.0_bet
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:47 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:47:58 UTC
This ebuild updates the ALSA tools to 0.9.0beta12.  It is a modified
version of the previous alsa-tools-0.9.0_beta10-r1.ebuild. 
alsa-tools-0.9.0_beta12 is dependent on alsa-driver-0.9.0_beta12 and
alsa-lib-0.9.0_beta12.
Comment 1 Mark Rickard 2002-03-10 13:48:38 UTC
# Copyright 1999-2001 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Arcady Genkin <agenkin@thpoon.com>
#
/space/gentoo/cvsroot/gentoo-x86/media-sound/alsa-tools/alsa-tools-0.9.0_beta10-r1.ebuild,v
1.1 2002/02/17 18:07:07 agenkin Exp

DESCRIPTION="Advanced Linux Sound Architecture tools"
HOMEPAGE="http://www.alsa-project.org"
DEPEND="virtual/glibc 
        ~media-libs/alsa-lib-0.9.0_beta12
        >=x11-libs/gtk+-1.0.1"

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

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

# This is a list of the tools in the package.
ALSA_TOOLS="ac3dec as10k1 envy24control sb16_csp seq/sbiload"

src_compile() {
    # Some of the tools don't make proper use of CFLAGS, even though
    # all of them seem to use autoconf.  This needs to be fixed.
    local f
    for f in ${ALSA_TOOLS}
    do
        cd "${S}/${f}"
        ./configure --host="${CHOST}" --prefix=/usr || die "./configure failed"
        emake || die "Parallel Make Failed"
    done
}

src_install() {
    local f
    for f in ${ALSA_TOOLS}
    do
        # Install the main stuff
        cd "${S}/${f}"
        make DESTDIR="${D}" install || die

        # Install the text documentation
        local doc
        for doc in README TODO ChangeLog COPYING AUTHORS
        do
            if [ -f "${doc}" ]
            then
                mv "${doc}" "${doc}.`basename ${f}`"
                dodoc "${doc}.`basename ${f}`"
            fi
        done
    done
}
Comment 2 Brent Cook 2002-03-11 13:47:57 UTC
This goes for all of the alsa ebuilds that have dependencies on other alsa
packages. Why not change:

DEPEND="virtual/glibc 
        ~media-libs/alsa-lib-0.9.0_beta12
        >=x11-libs/gtk+-1.0.1"
to
DEPEND="virtual/glibc 
        ~media-libs/alsa-lib-${PV}
        >=x11-libs/gtk+-1.0.1"

If the ebuild goes to the trouble of transforming $PV into the correct archive
name, I guess so that one can create a new ebuild simply by renaming it, why not
have the dependencies work the same way?
Comment 3 Tod M. Neidt (RETIRED) gentoo-dev 2002-03-15 07:55:24 UTC
good point on the dependencies