Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-plugins/live/
Date: Tue, 31 Mar 2020 08:39:27
Message-Id: 1585643938.b5b29421ea14f806c54ea93056ec787426f8e50f.juippis@gentoo
1 commit: b5b29421ea14f806c54ea93056ec787426f8e50f
2 Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
3 AuthorDate: Tue Mar 31 07:26:38 2020 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Tue Mar 31 08:38:58 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b5b29421
7
8 media-plugins/live: tidy ebuild
9
10 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
11
12 media-plugins/live/live-2020.03.06.ebuild | 9 ++++++---
13 1 file changed, 6 insertions(+), 3 deletions(-)
14
15 diff --git a/media-plugins/live/live-2020.03.06.ebuild b/media-plugins/live/live-2020.03.06.ebuild
16 index 93524cfa722..317ad30c553 100644
17 --- a/media-plugins/live/live-2020.03.06.ebuild
18 +++ b/media-plugins/live/live-2020.03.06.ebuild
19 @@ -10,13 +10,16 @@ SRC_URI="http://www.live555.com/liveMedia/public/${P/-/.}.tar.gz"
20 LICENSE="LGPL-2.1"
21 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
22 IUSE="libressl ssl"
23 -DOCS=( "live-shared/README" )
24 +
25 DEPEND="
26 ssl? (
27 !libressl? ( dev-libs/openssl:0= )
28 libressl? ( dev-libs/libressl:0= )
29 )
30 "
31 +RDEPEND="${DEPEND}"
32 +
33 +DOCS=( "live-shared/README" )
34
35 # Alexis Ballier <aballier@g.o>, Sam James <sam@×××××.info>
36 # Be careful, bump this everytime you bump the package and the ABI has changed.
37 @@ -95,6 +98,6 @@ src_install() {
38 doins "${S}/${library}"/include/*h
39 done
40
41 - dobin ${S}/mediaServer/live555MediaServer
42 - dobin ${S}/proxyServer/live555ProxyServer
43 + dobin "${S}"/mediaServer/live555MediaServer
44 + dobin "${S}"/proxyServer/live555ProxyServer
45 }