# Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ EAPI="2" DESCRIPTION="asterisk-extra-sounds" HOMEPAGE="http://www.asterisk.org/" CODECS="alaw g722 g729 +gsm siren7 siren14 sln16 ulaw wav" IUSE="${CODECS}" SRC_URI="" for c in ${CODECS}; do SRC_URI+=" ${c#[+-]}? ( http://downloads.asterisk.org/pub/telephony/sounds/releases/${PN}-${c#[+-]}-${PV}.tar.gz )" done LICENSE="CCPL-Attribution-ShareAlike-3.0" SLOT="0" KEYWORDS="~amd64 ~x86" DEPEND=">=net-misc/asterisk-1.6.1" src_install() { for c in ${CODECS}; do if use ${c#[+-]}; then for pf in CREDITS LICENSE CHANGES; do dodoc "$pf-$PN-${c#[+-]}" rm "$pf-$PN-${c#[+-]}" done fi done diropts -m 0770 -o asterisk -g asterisk insopts -m 0660 -o asterisk -g asterisk dodir /var/lib/asterisk/moh insinto /var/lib/asterisk/moh doins -r . }