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 0AB75138334 for ; Sat, 16 Feb 2019 22:30:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D7916E0825; Sat, 16 Feb 2019 22:30:19 +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 A8994E0825 for ; Sat, 16 Feb 2019 22:30:19 +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 13ABA335D03 for ; Sat, 16 Feb 2019 22:30:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 834F2545 for ; Sat, 16 Feb 2019 22:30:08 +0000 (UTC) From: "Patrice Clement" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrice Clement" Message-ID: <1550356160.a0fdf81573f199b4ef5aa9178c67e7abc492c719.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/aribb24/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/aribb24/aribb24-1.0.3-r1.ebuild X-VCS-Directories: media-libs/aribb24/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: a0fdf81573f199b4ef5aa9178c67e7abc492c719 X-VCS-Branch: master Date: Sat, 16 Feb 2019 22:30:08 +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: aa4a8eab-3fba-4646-a9dd-47e95487d873 X-Archives-Hash: 93a0a2b1b8366af04af0b6d4ade03f4c commit: a0fdf81573f199b4ef5aa9178c67e7abc492c719 Author: Hector Martin marcan st> AuthorDate: Sun Feb 10 02:47:44 2019 +0000 Commit: Patrice Clement gentoo org> CommitDate: Sat Feb 16 22:29:20 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a0fdf815 media-libs/aribb24-1.0.3-r1: enable multilib, bump to EAPI 7. Signed-off-by: Hector Martin marcan.st> Package-Manager: Portage-2.3.59, Repoman-2.3.12 Closes: https://github.com/gentoo/gentoo/pull/11014 Signed-off-by: Patrice Clement gentoo.org> media-libs/aribb24/aribb24-1.0.3-r1.ebuild | 31 ++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/media-libs/aribb24/aribb24-1.0.3-r1.ebuild b/media-libs/aribb24/aribb24-1.0.3-r1.ebuild new file mode 100644 index 00000000000..a6cba526607 --- /dev/null +++ b/media-libs/aribb24/aribb24-1.0.3-r1.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit autotools multilib-minimal + +DESCRIPTION="Library for decoding ARIB STD-B24 subtitles" +HOMEPAGE="https://github.com/nkoriyama/aribb24" +SRC_URI="https://github.com/nkoriyama/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="LGPL-3" +SLOT="0" +KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86" + +RDEPEND="media-libs/libpng:0=[${MULTILIB_USEDEP}]" +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig" + +src_prepare() { + default + eautoreconf +} + +multilib_src_configure() { + ECONF_SOURCE="${S}" econf --disable-static +} + +multilib_src_install_all() { + find "${D}" -name '*.la' -delete || die +}