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 C34DC1382C5 for ; Sat, 23 Jan 2021 21:13:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 275E2E09B8; Sat, 23 Jan 2021 21:13:35 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 1056FE09B8 for ; Sat, 23 Jan 2021 21:13:35 +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 386B5340F90 for ; Sat, 23 Jan 2021 21:13:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 965C04B6 for ; Sat, 23 Jan 2021 21:13:30 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1611436317.c3ebb570e043ce913899ef393723a1c77e2deccc.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libdvdcss/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libdvdcss/libdvdcss-1.4.2-r1.ebuild X-VCS-Directories: media-libs/libdvdcss/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: c3ebb570e043ce913899ef393723a1c77e2deccc X-VCS-Branch: master Date: Sat, 23 Jan 2021 21:13:30 +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: ce3426f0-ae7e-44eb-ab30-1ca4312d9b75 X-Archives-Hash: f5b04f84f590d6dd981e87e8e5717c01 commit: c3ebb570e043ce913899ef393723a1c77e2deccc Author: David Michael gmail com> AuthorDate: Tue Jan 19 19:49:14 2021 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Jan 23 21:11:57 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3ebb570 media-libs/libdvdcss: EAPI 7, drop static-libs Bug: https://bugs.gentoo.org/766192 Package-Manager: Portage-3.0.13, Repoman-3.0.2 Signed-off-by: David Michael gmail.com> Signed-off-by: Andreas Sturmlechner gentoo.org> media-libs/libdvdcss/libdvdcss-1.4.2-r1.ebuild | 28 ++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/media-libs/libdvdcss/libdvdcss-1.4.2-r1.ebuild b/media-libs/libdvdcss/libdvdcss-1.4.2-r1.ebuild new file mode 100644 index 00000000000..5da3b606967 --- /dev/null +++ b/media-libs/libdvdcss/libdvdcss-1.4.2-r1.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit multilib-minimal + +DESCRIPTION="A portable abstraction library for DVD decryption" +HOMEPAGE="https://www.videolan.org/developers/libdvdcss.html" +SRC_URI="https://download.videolan.org/pub/${PN}/${PV}/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="1.2" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x86-solaris" +IUSE="doc" + +BDEPEND="doc? ( app-doc/doxygen )" + +multilib_src_configure() { + ECONF_SOURCE=${S} econf \ + --disable-static \ + $(multilib_native_use_enable doc) +} + +multilib_src_install_all() { + einstalldocs + find "${ED}" -type f -name '*.la' -delete || die +}