Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libde265/
Date: Mon, 20 Nov 2017 19:56:16
Message-Id: 1511207739.72f42a8bf93b85981cee5f778a0598d8b2de3a06.asturm@gentoo
1 commit: 72f42a8bf93b85981cee5f778a0598d8b2de3a06
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Mon Nov 20 19:53:06 2017 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Mon Nov 20 19:55:39 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72f42a8b
7
8 media-libs/libde265: Drop old
9
10 media-libs/libde265/libde265-0.9.ebuild | 42 ---------------------------------
11 1 file changed, 42 deletions(-)
12
13 diff --git a/media-libs/libde265/libde265-0.9.ebuild b/media-libs/libde265/libde265-0.9.ebuild
14 deleted file mode 100644
15 index ab212e6e991..00000000000
16 --- a/media-libs/libde265/libde265-0.9.ebuild
17 +++ /dev/null
18 @@ -1,42 +0,0 @@
19 -# Copyright 1999-2015 Gentoo Foundation
20 -# Distributed under the terms of the GNU General Public License v2
21 -
22 -EAPI=5
23 -
24 -AUTOTOOLS_IN_SOURCE_BUILD=1
25 -AUTOTOOLS_AUTORECONF=1
26 -inherit autotools-multilib
27 -
28 -DESCRIPTION="Open h.265 video codec implementation"
29 -HOMEPAGE="https://github.com/strukturag/libde265"
30 -SRC_URI="https://github.com/strukturag/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
31 -
32 -LICENSE="GPL-3"
33 -SLOT="0"
34 -KEYWORDS="~amd64 ~x86"
35 -IUSE="debug qt4 qt5 static-libs cpu_flags_x86_sse tools"
36 -
37 -DEPEND="
38 - qt4? ( dev-qt/qtgui:4 dev-qt/qtcore:4 )
39 - qt5? ( dev-qt/qtgui:5 dev-qt/qtcore:5 dev-qt/qtwidgets:5 )
40 - media-libs/libsdl
41 - virtual/ffmpeg
42 -"
43 -RDEPEND="${DEPEND}"
44 -
45 -REQUIRED_USE="tools? ( || ( qt4 qt5 ) )"
46 -
47 -src_configure() {
48 - local myeconfargs=(
49 - $(use_enable cpu_flags_x86_sse sse)
50 - $(use_enable static-libs static)
51 - $(use_enable debug log-info)
52 - $(use_enable debug log-debug)
53 - $(use_enable debug log-trace)
54 - $(use_enable tools dec265)
55 - $(use_enable tools sherlock265)
56 - --disable-silent-rules
57 - --enable-log-error
58 - )
59 - autotools-multilib_src_configure "${myeconfargs[@]}"
60 -}