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/libopenraw/
Date: Mon, 01 Feb 2021 17:31:59
Message-Id: 1612200640.37f77c7a507c7f2c20ab19e3c3bb5440e37db1f3.asturm@gentoo
1 commit: 37f77c7a507c7f2c20ab19e3c3bb5440e37db1f3
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 1 17:01:08 2021 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 1 17:30:40 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=37f77c7a
7
8 media-libs/libopenraw: EAPI-7, HOMEPAGE, DESCRIPTION, static-libs--
9
10 Package-Manager: Portage-3.0.14, Repoman-3.0.2
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 media-libs/libopenraw/libopenraw-0.1.3.ebuild | 16 ++++++++--------
14 1 file changed, 8 insertions(+), 8 deletions(-)
15
16 diff --git a/media-libs/libopenraw/libopenraw-0.1.3.ebuild b/media-libs/libopenraw/libopenraw-0.1.3.ebuild
17 index d3072df54c9..c6a1fbfd8b2 100644
18 --- a/media-libs/libopenraw/libopenraw-0.1.3.ebuild
19 +++ b/media-libs/libopenraw/libopenraw-0.1.3.ebuild
20 @@ -1,18 +1,18 @@
21 -# Copyright 1999-2019 Gentoo Authors
22 +# Copyright 1999-2021 Gentoo Authors
23 # Distributed under the terms of the GNU General Public License v2
24
25 -EAPI=6
26 +EAPI=7
27
28 inherit gnome2-utils
29
30 -DESCRIPTION="A decoding library for RAW image formats"
31 -HOMEPAGE="https://libopenraw.freedesktop.org/wiki/"
32 +DESCRIPTION="RAW image formats decoding library"
33 +HOMEPAGE="https://libopenraw.freedesktop.org/"
34 SRC_URI="https://${PN}.freedesktop.org/download/${P}.tar.bz2"
35
36 LICENSE="GPL-3 LGPL-3"
37 SLOT="0/7"
38 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
39 -IUSE="gtk static-libs test"
40 +IUSE="gtk test"
41 RESTRICT="!test? ( test )"
42
43 RDEPEND="
44 @@ -25,16 +25,16 @@ RDEPEND="
45 "
46 DEPEND="${RDEPEND}
47 >=dev-libs/boost-1.35
48 +"
49 +BDEPEND="
50 virtual/pkgconfig
51 test? ( net-misc/curl )
52 "
53
54 -DOCS=( AUTHORS ChangeLog NEWS README TODO )
55 -
56 src_configure() {
57 econf \
58 --with-boost="${EPREFIX}"/usr \
59 - $(use_enable static-libs static) \
60 + --disable-static \
61 $(use_enable gtk gnome)
62 }