diff options
author | Tony Vroon <chainsaw@gentoo.org> | 2012-09-07 13:04:22 +0000 |
---|---|---|
committer | Tony Vroon <chainsaw@gentoo.org> | 2012-09-07 13:04:22 +0000 |
commit | d4f1f240a297760ef77063f0389c889c75abea74 (patch) | |
tree | bb0cff77cb5f90d373d6ff450063c5ad93127e9d /media-sound/alsa-tools | |
parent | Version bump, as announced by Jaroslav Kysela on alsa-devel. (diff) | |
download | gentoo-2-d4f1f240a297760ef77063f0389c889c75abea74.tar.gz gentoo-2-d4f1f240a297760ef77063f0389c889c75abea74.tar.bz2 gentoo-2-d4f1f240a297760ef77063f0389c889c75abea74.zip |
Version bump, as announced by Jaroslav Kysela on alsa-devel.
(Portage version: 2.1.11.13/cvs/Linux x86_64)
Diffstat (limited to 'media-sound/alsa-tools')
-rw-r--r-- | media-sound/alsa-tools/ChangeLog | 7 | ||||
-rw-r--r-- | media-sound/alsa-tools/alsa-tools-1.0.26.ebuild | 148 |
2 files changed, 154 insertions, 1 deletions
diff --git a/media-sound/alsa-tools/ChangeLog b/media-sound/alsa-tools/ChangeLog index eecd13a095ef..64a4e732ca2c 100644 --- a/media-sound/alsa-tools/ChangeLog +++ b/media-sound/alsa-tools/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-sound/alsa-tools # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/alsa-tools/ChangeLog,v 1.206 2012/04/01 15:14:24 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/alsa-tools/ChangeLog,v 1.207 2012/09/07 13:04:22 chainsaw Exp $ + +*alsa-tools-1.0.26 (07 Sep 2012) + + 07 Sep 2012; Tony Vroon <chainsaw@gentoo.org> +alsa-tools-1.0.26.ebuild: + Version bump, as announced by Jaroslav Kysela on alsa-devel. 01 Apr 2012; Raúl Porcel <armin76@gentoo.org> alsa-tools-1.0.25.ebuild: sparc stable wrt #406101 diff --git a/media-sound/alsa-tools/alsa-tools-1.0.26.ebuild b/media-sound/alsa-tools/alsa-tools-1.0.26.ebuild new file mode 100644 index 000000000000..5a6bf24255e2 --- /dev/null +++ b/media-sound/alsa-tools/alsa-tools-1.0.26.ebuild @@ -0,0 +1,148 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/alsa-tools/alsa-tools-1.0.26.ebuild,v 1.1 2012/09/07 13:04:22 chainsaw Exp $ + +EAPI=4 +inherit base flag-o-matic autotools + +MY_P="${P/_rc/rc}" + +DESCRIPTION="Advanced Linux Sound Architecture tools" +HOMEPAGE="http://www.alsa-project.org/" +SRC_URI="mirror://alsaproject/tools/${MY_P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0.9" +KEYWORDS="~amd64 ~mips ~ppc ~ppc64 ~sparc ~x86" + +ECHOAUDIO_CARDS="alsa_cards_darla20 alsa_cards_gina20 +alsa_cards_layla20 alsa_cards_darla24 alsa_cards_gina24 +alsa_cards_layla24 alsa_cards_mona alsa_cards_mia alsa_cards_indigo +alsa_cards_indigoio alsa_cards_echo3g" + +IUSE="fltk gtk alsa_cards_hdsp alsa_cards_hdspm alsa_cards_mixart +alsa_cards_vx222 alsa_cards_usb-usx2y alsa_cards_sb16 alsa_cards_sbawe +alsa_cards_emu10k1 alsa_cards_emu10k1x alsa_cards_ice1712 +alsa_cards_rme32 alsa_cards_rme96 alsa_cards_sscape alsa_cards_pcxhr +${ECHOAUDIO_CARDS}" + +RDEPEND=">=media-libs/alsa-lib-${PV} + >=dev-python/pyalsa-${PV} + fltk? ( >=x11-libs/fltk-1.1.10-r2:1 ) + gtk? ( x11-libs/gtk+:2 )" +DEPEND="${RDEPEND}" + +S="${WORKDIR}/${MY_P}" +PATCHES=( "${FILESDIR}/envy24control-config-dir.patch" ) + +pkg_setup() { + + ALSA_TOOLS="ac3dec seq/sbiload us428control hwmixvolume" + + if use gtk; then + use alsa_cards_ice1712 && \ + ALSA_TOOLS="${ALSA_TOOLS} envy24control" + use alsa_cards_rme32 && use alsa_cards_rme96 && \ + ALSA_TOOLS="${ALSA_TOOLS} rmedigicontrol" + fi + + if use alsa_cards_hdsp || use alsa_cards_hdspm; then + ALSA_TOOLS="${ALSA_TOOLS} hdsploader" + use fltk && ALSA_TOOLS="${ALSA_TOOLS} hdspconf hdspmixer" + fi + + use alsa_cards_mixart && ALSA_TOOLS="${ALSA_TOOLS} mixartloader" + use alsa_cards_vx222 && ALSA_TOOLS="${ALSA_TOOLS} vxloader" + use alsa_cards_usb-usx2y && ALSA_TOOLS="${ALSA_TOOLS} usx2yloader" + use alsa_cards_pcxhr && ALSA_TOOLS="${ALSA_TOOLS} pcxhr" + use alsa_cards_sscape && ALSA_TOOLS="${ALSA_TOOLS} sscape_ctl" + + { use alsa_cards_sb16 || use alsa_cards_sbawe; } && \ + ALSA_TOOLS="${ALSA_TOOLS} sb16_csp" + + if use alsa_cards_emu10k1 || use alsa_cards_emu10k1x; then + ALSA_TOOLS="${ALSA_TOOLS} as10k1 ld10k1" + fi + + if use gtk; then + for card in ${ECHOAUDIO_CARDS}; do + if use ${card}; then + ALSA_TOOLS="${ALSA_TOOLS} echomixer" + fi + done + fi +} + +src_prepare() { + base_src_prepare() + + # This block only deals with the tools that still use GTK and the + # AM_PATH_GTK macro. + for dir in echomixer envy24control rmedigicontrol; do + has "${dir}" "${ALSA_TOOLS}" || continue + pushd "${dir}" &> /dev/null + sed -i -e '/AM_PATH_GTK/d' configure.in + eautoreconf + popd &> /dev/null + done + + # This block deals with the tools that are being patched + for dir in hdspconf; do + has "${dir}" "${ALSA_TOOLS}" || continue + pushd "${dir}" &> /dev/null + eautoreconf + popd &> /dev/null + done + + elibtoolize +} + +src_configure() { + if use fltk; then + # hdspmixer requires fltk + append-ldflags "-L$(dirname $(fltk-config --libs))" + append-flags "-I$(fltk-config --includedir)" + fi + + local f + for f in ${ALSA_TOOLS} + do + cd "${S}/${f}" + case "${f}" in + echomixer,envy24control,rmedigicontrol ) + econf --with-gtk2 + ;; + * ) + econf + ;; + esac + done +} + +src_compile() { + local f + for f in ${ALSA_TOOLS} + do + cd "${S}/${f}" + emake || die "emake ${f} failed" + done +} + +src_install() { + local f + for f in ${ALSA_TOOLS} + do + # Install the main stuff + cd "${S}/${f}" + emake DESTDIR="${D}" install || die + + # Install the text documentation + local doc + for doc in README TODO ChangeLog AUTHORS; do + if [[ -f "${doc}" ]]; then + mv "${doc}" "${doc}.$(basename ${f})" || die + dodoc "${doc}.$(basename ${f})" || die + fi + done + done +} |