Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/libavc1394/
Date: Wed, 01 Jan 2020 13:03:27
Message-Id: 1577883792.94e18f2e6f41b55aa5d2b9846b539d1b093c54c4.asturm@gentoo
1 commit: 94e18f2e6f41b55aa5d2b9846b539d1b093c54c4
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jan 1 12:23:48 2020 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Wed Jan 1 13:03:12 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=94e18f2e
7
8 sys-libs/libavc1394: EAPI-7 bump, autotools-multilib--
9
10 Package-Manager: Portage-2.3.84, Repoman-2.3.20
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 sys-libs/libavc1394/libavc1394-0.5.4-r2.ebuild | 27 ++++++++++++++++++++++++++
14 1 file changed, 27 insertions(+)
15
16 diff --git a/sys-libs/libavc1394/libavc1394-0.5.4-r2.ebuild b/sys-libs/libavc1394/libavc1394-0.5.4-r2.ebuild
17 new file mode 100644
18 index 00000000000..402a774d3c9
19 --- /dev/null
20 +++ b/sys-libs/libavc1394/libavc1394-0.5.4-r2.ebuild
21 @@ -0,0 +1,27 @@
22 +# Copyright 1999-2020 Gentoo Authors
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=7
26 +
27 +inherit multilib-minimal
28 +
29 +DESCRIPTION="Library for the 1394 AV/C (Audio/Video Control) Digital Interface Command Set"
30 +HOMEPAGE="https://sourceforge.net/projects/libavc1394/"
31 +SRC_URI="mirror://sourceforge/libavc1394/${P}.tar.gz"
32 +
33 +LICENSE="LGPL-2.1"
34 +SLOT="0"
35 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
36 +
37 +BDEPEND="virtual/pkgconfig[${MULTILIB_USEDEP}]"
38 +DEPEND=">=sys-libs/libraw1394-2.1.0-r1[${MULTILIB_USEDEP}]"
39 +RDEPEND="${DEPEND}"
40 +
41 +multilib_src_configure() {
42 + ECONF_SOURCE="${S}" econf --disable-static
43 +}
44 +
45 +multilib_src_install_all() {
46 + einstalldocs
47 + find "${D}" -name '*.la' -type f -delete || die
48 +}