summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2018-11-13 11:59:34 +0100
committerAndreas Sturmlechner <asturm@gentoo.org>2018-11-13 12:32:42 +0100
commitc9fdb6af48d004002ec46543a1ec17f67765be8d (patch)
tree9c9aac9540e9096f54b28ce8e10d3cb548358f7c /media-libs/kvazaar/kvazaar-1.0.0.ebuild
parentkde-plasma/kwin: Fix runtime crashes (diff)
downloadgentoo-c9fdb6af48d004002ec46543a1ec17f67765be8d.tar.gz
gentoo-c9fdb6af48d004002ec46543a1ec17f67765be8d.tar.bz2
gentoo-c9fdb6af48d004002ec46543a1ec17f67765be8d.zip
media-libs/kvazaar: Drop 1.0.0
Package-Manager: Portage-2.3.51, Repoman-2.3.12 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'media-libs/kvazaar/kvazaar-1.0.0.ebuild')
-rw-r--r--media-libs/kvazaar/kvazaar-1.0.0.ebuild59
1 files changed, 0 insertions, 59 deletions
diff --git a/media-libs/kvazaar/kvazaar-1.0.0.ebuild b/media-libs/kvazaar/kvazaar-1.0.0.ebuild
deleted file mode 100644
index adab92844c3c..000000000000
--- a/media-libs/kvazaar/kvazaar-1.0.0.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-SCM=""
-
-GREATEST_PV="1.2.1"
-
-if [ "${PV#9999}" != "${PV}" ] ; then
- SCM="git-r3"
- EGIT_REPO_URI="https://github.com/ultravideo/kvazaar"
-fi
-
-inherit eutils multilib autotools multilib-minimal toolchain-funcs ${SCM}
-
-DESCRIPTION="An open-source HEVC encoder"
-HOMEPAGE="http://ultravideo.cs.tut.fi/ https://github.com/ultravideo/kvazaar"
-
-if [ "${PV#9999}" = "${PV}" ] ; then
- SRC_URI="https://github.com/ultravideo/kvazaar/archive/v${PV}.tar.gz -> ${P}.tar.gz
- test? ( https://github.com/silentbicycle/greatest/archive/v${GREATEST_PV}.tar.gz -> greatest-${GREATEST_PV}.tar.gz )"
- KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 x86"
-fi
-
-LICENSE="LGPL-2.1"
-# subslot = libkvazaar major
-SLOT="0/3"
-IUSE="static-libs test"
-REQUIRED_USE="test? ( static-libs )"
-
-DEPEND=""
-RDEPEND="${DEPEND}"
-
-ASM_DEP=">=dev-lang/yasm-1.2.0"
-DEPEND="${DEPEND}
- abi_x86_32? ( ${ASM_DEP} )
- abi_x86_64? ( ${ASM_DEP} )"
-
-src_prepare() {
- epatch "${FILESDIR}/multilib.patch"
- eautoreconf
- if use test ; then
- # https://bugs.gentoo.org/show_bug.cgi?id=595932
- rmdir "${S}/greatest" || die
- mv "${WORKDIR}/greatest-${GREATEST_PV}" "${S}/greatest" || die
- fi
-}
-
-multilib_src_configure() {
- ECONF_SOURCE="${S}" \
- econf \
- --docdir "/usr/share/doc/${PF}" \
- $(use_enable static-libs static)
-}
-
-multilib_src_install_all() {
- find "${ED}" -name '*.la' -delete
-}