Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/ccrtp/
Date: Sun, 14 Oct 2018 10:19:05
Message-Id: 1539512297.0dfa14515d5e57814f0f981dbdefdfb8cb271112.pacho@gentoo
1 commit: 0dfa14515d5e57814f0f981dbdefdfb8cb271112
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Sun Oct 14 10:17:55 2018 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Sun Oct 14 10:18:17 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0dfa1451
7
8 net-libs/ccrtp: Fix deps
9
10 Closes: https://bugs.gentoo.org/590924
11 Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
12 Package-Manager: Portage-2.3.51, Repoman-2.3.11
13
14 net-libs/ccrtp/ccrtp-2.1.2.ebuild | 30 ++++++++++--------------------
15 1 file changed, 10 insertions(+), 20 deletions(-)
16
17 diff --git a/net-libs/ccrtp/ccrtp-2.1.2.ebuild b/net-libs/ccrtp/ccrtp-2.1.2.ebuild
18 index 02cf6d4014d..0ed701175c1 100644
19 --- a/net-libs/ccrtp/ccrtp-2.1.2.ebuild
20 +++ b/net-libs/ccrtp/ccrtp-2.1.2.ebuild
21 @@ -1,8 +1,7 @@
22 -# Copyright 1999-2017 Gentoo Foundation
23 +# Copyright 1999-2018 Gentoo Authors
24 # Distributed under the terms of the GNU General Public License v2
25
26 -EAPI=5
27 -inherit eutils multilib
28 +EAPI=7
29
30 DESCRIPTION="GNU ccRTP - Implementation of the IETF real-time transport protocol"
31 HOMEPAGE="https://www.gnu.org/software/ccrtp/"
32 @@ -13,31 +12,22 @@ LICENSE="GPL-2"
33 IUSE="doc"
34 SLOT="0/2"
35
36 -RDEPEND=">=dev-cpp/commoncpp2-1.3.0:0=
37 +RDEPEND="
38 + >=dev-cpp/commoncpp2-1.3.0:0=
39 dev-libs/libgcrypt:0=
40 - >=dev-libs/ucommon-5.0.0:="
41 + >=dev-libs/ucommon-6.2.2:=
42 +"
43 DEPEND="${RDEPEND}
44 virtual/pkgconfig
45 - doc? ( app-doc/doxygen )"
46 + doc? ( app-doc/doxygen )
47 +"
48
49 src_configure() {
50 econf --disable-static
51 }
52
53 src_install() {
54 + use doc && HTML_DOCS="doc/html/*"
55 default
56 - prune_libtool_files
57 - use doc && dohtml -r doc/html/*
58 -}
59 -
60 -pkg_postinst() {
61 - if [[ -e "${ROOT}"/usr/$(get_libdir)/libccrtp1-1.4.so.0 ]] ; then
62 - elog "Please run: revdep-rebuild --library libccrtp1-1.4.so.0"
63 - fi
64 - if [[ -e "${ROOT}"/usr/$(get_libdir)/libccrtp1-1.5.so.0 ]] ; then
65 - elog "Please run: revdep-rebuild --library libccrtp1-1.5.so.0"
66 - fi
67 - if [[ -e "${ROOT}"/usr/$(get_libdir)/libccrtp1-1.6.so.0 ]] ; then
68 - elog "Please run: revdep-rebuild --library libccrtp1-1.6.so.0"
69 - fi
70 + find "${D}" -name '*.la' -delete || die
71 }