summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'media-libs/celt/celt-0.5.1.3.ebuild')
-rw-r--r--media-libs/celt/celt-0.5.1.3.ebuild29
1 files changed, 0 insertions, 29 deletions
diff --git a/media-libs/celt/celt-0.5.1.3.ebuild b/media-libs/celt/celt-0.5.1.3.ebuild
deleted file mode 100644
index 8d4ede3a5894..000000000000
--- a/media-libs/celt/celt-0.5.1.3.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DESCRIPTION="CELT is a very low delay audio codec designed for high-quality communications"
-HOMEPAGE="http://www.celt-codec.org/"
-SRC_URI="http://downloads.us.xiph.org/releases/${PN}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0.5.1"
-KEYWORDS="alpha amd64 arm ~arm64 ia64 ppc ppc64 sparc x86"
-IUSE="ogg static-libs"
-
-DEPEND="ogg? ( media-libs/libogg )"
-RDEPEND="${DEPEND}"
-
-src_configure() {
- econf \
- $(use_enable static-libs static) \
- $(use_with ogg ogg /usr)
-}
-
-src_install() {
- default
- if ! use static-libs; then
- find "${D}" -name '*.la' -delete || die "Pruning failed"
- fi
-}