gentoo-ebuilds/net-misc/asterisk-moh-opsound/asterisk-moh-opsound-2.03-r1.ebuild
Arthur Zamarin 39130c9676
net-misc/asterisk-moh-opsound: Keyword 2.03-r1 sparc, #919424
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
2024-01-12 10:30:17 +02:00

41 lines
853 B
Bash

# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
DESCRIPTION="asterisk moh music"
HOMEPAGE="http://www.asterisk.org/"
CODECS="alaw g722 g729 +gsm siren7 siren14 sln16 ulaw wav"
SRC_URI=""
for c in ${CODECS}; do
SRC_URI+=" ${c#+}? ( http://downloads.asterisk.org/pub/telephony/sounds/releases/${PN}-${c#+}-${PV}.tar.gz )"
done
IUSE="${CODECS}"
REQUIRED_USE="|| ( ${CODECS//+/} )"
LICENSE="CC-BY-SA-3.0"
SLOT="0"
KEYWORDS="amd64 ~arm ~arm64 ppc ~ppc64 ~sparc x86"
S="${WORKDIR}"
src_install() {
local c
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 0755 -o root -g root
insopts -m 0644 -o root -g root
insinto /var/lib/asterisk/moh
doins -r .
}