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 179961382C5 for ; Wed, 10 Jun 2020 13:11:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4C0BCE0893; Wed, 10 Jun 2020 13:11:12 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 31EF8E0893 for ; Wed, 10 Jun 2020 13:11:12 +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 788EE34EB5D for ; Wed, 10 Jun 2020 13:11:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 745539C for ; Wed, 10 Jun 2020 13:11:05 +0000 (UTC) From: "Craig Andrews" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Craig Andrews" Message-ID: <1591794656.b8d1ccba79828e40ab4a38cd6cad8dc120f55028.candrews@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-video/rtmpdump/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-video/rtmpdump/rtmpdump-2.4_p20161210-r3.ebuild media-video/rtmpdump/rtmpdump-9999.ebuild X-VCS-Directories: media-video/rtmpdump/ X-VCS-Committer: candrews X-VCS-Committer-Name: Craig Andrews X-VCS-Revision: b8d1ccba79828e40ab4a38cd6cad8dc120f55028 X-VCS-Branch: master Date: Wed, 10 Jun 2020 13:11:05 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: e3349c27-a967-4f5c-bb8c-063ea4933327 X-Archives-Hash: d9e319ac88e3fcaa73f30b04bebb92b5 commit: b8d1ccba79828e40ab4a38cd6cad8dc120f55028 Author: Craig Andrews gentoo org> AuthorDate: Wed Jun 10 13:10:21 2020 +0000 Commit: Craig Andrews gentoo org> CommitDate: Wed Jun 10 13:10:56 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b8d1ccba media-video/rtmpdump: add static-libs USE flag Closes: https://bugs.gentoo.org/727796 Package-Manager: Portage-2.3.100, Repoman-2.3.22 Signed-off-by: Craig Andrews gentoo.org> media-video/rtmpdump/rtmpdump-2.4_p20161210-r3.ebuild | 6 ++++-- media-video/rtmpdump/rtmpdump-9999.ebuild | 6 ++++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/media-video/rtmpdump/rtmpdump-2.4_p20161210-r3.ebuild b/media-video/rtmpdump/rtmpdump-2.4_p20161210-r3.ebuild index 5f6a9cd3cb0..09a4ebf6598 100644 --- a/media-video/rtmpdump/rtmpdump-2.4_p20161210-r3.ebuild +++ b/media-video/rtmpdump/rtmpdump-2.4_p20161210-r3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="7" @@ -11,7 +11,7 @@ HOMEPAGE="https://rtmpdump.mplayerhq.hu/" # the library is LGPL-2.1, the command is GPL-2 LICENSE="GPL-2 LGPL-2.1" SLOT="0" -IUSE="gnutls ssl libressl" +IUSE="gnutls ssl static-libs libressl" DEPEND="ssl? ( gnutls? ( @@ -98,4 +98,6 @@ multilib_src_install() { fi emake DESTDIR="${D}" prefix="${EPREFIX}/usr" mandir='$(prefix)/share/man' \ CRYPTO="${crypto}" install + find "${D}" -name '*.la' -delete || die + use static-libs || find "${D}" -name '*.a' -delete || die } diff --git a/media-video/rtmpdump/rtmpdump-9999.ebuild b/media-video/rtmpdump/rtmpdump-9999.ebuild index aef12b6aa94..df14880ddc1 100644 --- a/media-video/rtmpdump/rtmpdump-9999.ebuild +++ b/media-video/rtmpdump/rtmpdump-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="7" @@ -11,7 +11,7 @@ HOMEPAGE="https://rtmpdump.mplayerhq.hu/" # the library is LGPL-2.1, the command is GPL-2 LICENSE="GPL-2 LGPL-2.1" SLOT="0" -IUSE="gnutls ssl libressl" +IUSE="gnutls ssl static-libs libressl" DEPEND="ssl? ( gnutls? ( @@ -98,4 +98,6 @@ multilib_src_install() { fi emake DESTDIR="${D}" prefix="${EPREFIX}/usr" mandir='$(prefix)/share/man' \ CRYPTO="${crypto}" install + find "${D}" -name '*.la' -delete || die + use static-libs || find "${D}" -name '*.a' -delete || die }