Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libdc1394/
Date: Mon, 19 Feb 2018 10:17:24
Message-Id: 1519035424.26315428020eb0c504938a55329ae1f67415f30f.asturm@gentoo
1 commit: 26315428020eb0c504938a55329ae1f67415f30f
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 18 22:38:48 2018 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 19 10:17:04 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=26315428
7
8 media-libs/libdc1394: Unconditionally --disable-examples
9
10 Bug: https://bugs.gentoo.org/583802
11 Package-Manager: Portage-2.3.24, Repoman-2.3.6
12
13 media-libs/libdc1394/libdc1394-2.2.5-r1.ebuild | 3 ++-
14 1 file changed, 2 insertions(+), 1 deletion(-)
15
16 diff --git a/media-libs/libdc1394/libdc1394-2.2.5-r1.ebuild b/media-libs/libdc1394/libdc1394-2.2.5-r1.ebuild
17 index 2d692ec33d7..0365bf26201 100644
18 --- a/media-libs/libdc1394/libdc1394-2.2.5-r1.ebuild
19 +++ b/media-libs/libdc1394/libdc1394-2.2.5-r1.ebuild
20 @@ -33,11 +33,12 @@ multilib_src_configure() {
21 local myeconfargs=(
22 $(use_enable doc doxygen-html)
23 $(use_enable static-libs static)
24 + --disable-examples
25 --program-suffix=2
26 --without-x # only useful for (disabled) examples
27 )
28
29 - multilib_is_native_abi || myeconfargs+=( --disable-doxygen-html --disable-examples )
30 + multilib_is_native_abi || myeconfargs+=( --disable-doxygen-html )
31
32 ECONF_SOURCE="${S}" econf "${myeconfargs[@]}"
33 }