summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaco Kroon <jaco@uls.co.za>2020-09-08 11:54:26 +0200
committerSam James <sam@gentoo.org>2020-09-12 01:50:30 +0000
commit6972f437518d16b115034e81b5dca24d4bf2b650 (patch)
tree7e5323c8ca0cbe58efc96a57c83baf820151fa43 /net-misc
parentnet-misc/asterisk-extra-sounds: cleanup (diff)
downloadgentoo-6972f437518d16b115034e81b5dca24d4bf2b650.tar.gz
gentoo-6972f437518d16b115034e81b5dca24d4bf2b650.tar.bz2
gentoo-6972f437518d16b115034e81b5dca24d4bf2b650.zip
net-misc/asterisk-moh-opsound: cleanup
Remove old version. Signed-off-by: Jaco Kroon <jaco@uls.co.za> Closes: https://github.com/gentoo/gentoo/pull/17465 Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'net-misc')
-rw-r--r--net-misc/asterisk-moh-opsound/asterisk-moh-opsound-2.03.ebuild53
1 files changed, 0 insertions, 53 deletions
diff --git a/net-misc/asterisk-moh-opsound/asterisk-moh-opsound-2.03.ebuild b/net-misc/asterisk-moh-opsound/asterisk-moh-opsound-2.03.ebuild
deleted file mode 100644
index 526cb5401975..000000000000
--- a/net-misc/asterisk-moh-opsound/asterisk-moh-opsound-2.03.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2019 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}"
-LICENSE="CC-BY-SA-3.0"
-SLOT="0"
-KEYWORDS="amd64 ~ppc x86"
-
-DEPEND=">=net-misc/asterisk-1.4"
-
-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 0770 -o asterisk -g asterisk
- insopts -m 0660 -o asterisk -g asterisk
-
- dodir /var/lib/asterisk/moh
- insinto /var/lib/asterisk/moh
- doins -r .
-
-}
-
-pkg_postinst() {
- local c has_once_codec=
-
- for c in ${CODECS}; do
- use ${c#+} && has_one_codec=1
- done
-
- [ -n "${has_one_codec}" ] || ewarn "You have none of the codec use flags (${CODECS}) set. You need to have at least one set in order for this package to be useful."
-}