From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id E10F1138334 for ; Sun, 14 Oct 2018 10:19:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 77BF3E086B; Sun, 14 Oct 2018 10:19:04 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4CF82E086B for ; Sun, 14 Oct 2018 10:19:04 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C38B5335CE4 for ; Sun, 14 Oct 2018 10:19:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 582F6446 for ; Sun, 14 Oct 2018 10:18:59 +0000 (UTC) From: "Pacho Ramos" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pacho Ramos" Message-ID: <1539512297.0dfa14515d5e57814f0f981dbdefdfb8cb271112.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/ccrtp/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/ccrtp/ccrtp-2.1.2.ebuild X-VCS-Directories: net-libs/ccrtp/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: 0dfa14515d5e57814f0f981dbdefdfb8cb271112 X-VCS-Branch: master Date: Sun, 14 Oct 2018 10:18:59 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 58206fbd-e7d8-4bb2-ac91-741aee6a4d7d X-Archives-Hash: b409d7dcec815946cdbfd185d2b867b9 commit: 0dfa14515d5e57814f0f981dbdefdfb8cb271112 Author: Pacho Ramos gentoo org> AuthorDate: Sun Oct 14 10:17:55 2018 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Sun Oct 14 10:18:17 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0dfa1451 net-libs/ccrtp: Fix deps Closes: https://bugs.gentoo.org/590924 Signed-off-by: Pacho Ramos gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 net-libs/ccrtp/ccrtp-2.1.2.ebuild | 30 ++++++++++-------------------- 1 file changed, 10 insertions(+), 20 deletions(-) diff --git a/net-libs/ccrtp/ccrtp-2.1.2.ebuild b/net-libs/ccrtp/ccrtp-2.1.2.ebuild index 02cf6d4014d..0ed701175c1 100644 --- a/net-libs/ccrtp/ccrtp-2.1.2.ebuild +++ b/net-libs/ccrtp/ccrtp-2.1.2.ebuild @@ -1,8 +1,7 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 -inherit eutils multilib +EAPI=7 DESCRIPTION="GNU ccRTP - Implementation of the IETF real-time transport protocol" HOMEPAGE="https://www.gnu.org/software/ccrtp/" @@ -13,31 +12,22 @@ LICENSE="GPL-2" IUSE="doc" SLOT="0/2" -RDEPEND=">=dev-cpp/commoncpp2-1.3.0:0= +RDEPEND=" + >=dev-cpp/commoncpp2-1.3.0:0= dev-libs/libgcrypt:0= - >=dev-libs/ucommon-5.0.0:=" + >=dev-libs/ucommon-6.2.2:= +" DEPEND="${RDEPEND} virtual/pkgconfig - doc? ( app-doc/doxygen )" + doc? ( app-doc/doxygen ) +" src_configure() { econf --disable-static } src_install() { + use doc && HTML_DOCS="doc/html/*" default - prune_libtool_files - use doc && dohtml -r doc/html/* -} - -pkg_postinst() { - if [[ -e "${ROOT}"/usr/$(get_libdir)/libccrtp1-1.4.so.0 ]] ; then - elog "Please run: revdep-rebuild --library libccrtp1-1.4.so.0" - fi - if [[ -e "${ROOT}"/usr/$(get_libdir)/libccrtp1-1.5.so.0 ]] ; then - elog "Please run: revdep-rebuild --library libccrtp1-1.5.so.0" - fi - if [[ -e "${ROOT}"/usr/$(get_libdir)/libccrtp1-1.6.so.0 ]] ; then - elog "Please run: revdep-rebuild --library libccrtp1-1.6.so.0" - fi + find "${D}" -name '*.la' -delete || die }