summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAmy Liffey <amynka@gentoo.org>2018-05-24 15:45:57 +0200
committerAmy Liffey <amynka@gentoo.org>2018-05-24 15:46:44 +0200
commit4dd77c2deacce30c71bc933a61abe9d0fe599e65 (patch)
tree06de878910a3a4a70d6801e8ba5b987d1d837750 /media-libs/libebur128/libebur128-1.0.2.ebuild
parentkde-apps/dolphin: Update USE=thumbnail description (diff)
downloadgentoo-4dd77c2deacce30c71bc933a61abe9d0fe599e65.tar.gz
gentoo-4dd77c2deacce30c71bc933a61abe9d0fe599e65.tar.bz2
gentoo-4dd77c2deacce30c71bc933a61abe9d0fe599e65.zip
media-libs/libebur128: remove old versions
Package-Manager: Portage-2.3.24, Repoman-2.3.6
Diffstat (limited to 'media-libs/libebur128/libebur128-1.0.2.ebuild')
-rw-r--r--media-libs/libebur128/libebur128-1.0.2.ebuild36
1 files changed, 0 insertions, 36 deletions
diff --git a/media-libs/libebur128/libebur128-1.0.2.ebuild b/media-libs/libebur128/libebur128-1.0.2.ebuild
deleted file mode 100644
index 2994e6026ef5..000000000000
--- a/media-libs/libebur128/libebur128-1.0.2.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit cmake-utils
-
-DESCRIPTION="A library implementing the EBU R128 loudness standard."
-HOMEPAGE="https://github.com/jiixyj/libebur128"
-SRC_URI="https://github.com/jiixyj/libebur128/archive/v${PV}.tar.gz -> ${P}.tar.gz
- test? ( https://tech.ebu.ch/files/live/sites/tech/files/shared/testmaterial/ebu-loudness-test-setv03.zip )"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="+speex test"
-
-RDEPEND="speex? ( media-libs/speex )"
-DEPEND="${RDEPEND}
- test? ( media-libs/libsndfile
- app-arch/unzip )"
-
-src_configure() {
- local mycmakeargs=(
- $(cmake-utils_use_disable speex SPEEXDSP)
- $(cmake-utils_use_enable test TESTS)
- )
- cmake-utils_src_configure
-}
-
-src_test() {
- cd "${WORKDIR}"
- "${P}_build"/r128-test-library | tee test-results
- grep -c "^FAILED" test-results > /dev/null \
- && die "At least one test failed"
-}