Gentoo Archives: gentoo-commits

From: Andrew Savchenko <bircoph@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-plugins/imlib2_loaders/
Date: Fri, 17 Mar 2023 19:40:35
Message-Id: 1679081997.c703b959253f3d3a167135364b91b01aec33a7eb.bircoph@gentoo
1 commit: c703b959253f3d3a167135364b91b01aec33a7eb
2 Author: Andrew Savchenko <bircoph <AT> gentoo <DOT> org>
3 AuthorDate: Fri Mar 17 19:35:30 2023 +0000
4 Commit: Andrew Savchenko <bircoph <AT> gentoo <DOT> org>
5 CommitDate: Fri Mar 17 19:39:57 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c703b959
7
8 media-plugins/imlib2_loaders: add 1.11.0
9
10 Signed-off-by: Andrew Savchenko <bircoph <AT> gentoo.org>
11
12 media-plugins/imlib2_loaders/Manifest | 1 +
13 .../imlib2_loaders/imlib2_loaders-1.11.0.ebuild | 34 ++++++++++++++++++++++
14 2 files changed, 35 insertions(+)
15
16 diff --git a/media-plugins/imlib2_loaders/Manifest b/media-plugins/imlib2_loaders/Manifest
17 index a26e97648bfe..4996f897a9f5 100644
18 --- a/media-plugins/imlib2_loaders/Manifest
19 +++ b/media-plugins/imlib2_loaders/Manifest
20 @@ -1,3 +1,4 @@
21 +DIST imlib2_loaders-1.11.0.tar.xz 254380 BLAKE2B a578ea36d18e6dfbadc107a862fd9a2089760280a82bb9a1efe047e7d142c0351afd62b228cf53dbca6b7cf6aa3aa17244e86c80416d6dea533f1de721e26eb0 SHA512 ecc26f5b087bf23e7c2a767b7a9663f3b594f7146e8c7e87a5333297641db0b8557a9faf554c95f45ba0b1c336e87e50b8b2b79005fccacd6f9dac9de36949c6
22 DIST imlib2_loaders-1.7.1.tar.bz2 302348 BLAKE2B 8f73daa5b70d7122c136a001df920649a438edc60d4e7e94b691dfecc0864b66c321c676fb78a2f9e990b842d31fd5f95dcbacf232d6b9809382173449f86673 SHA512 5752768aa61c36e8f8ae5ff9219f950ba7b1561629bb21e4b4e16890d0fa904e93899e64152f05c6d7190553404336ec33b1d88b0cbec46c61a26598e27d449d
23 DIST imlib2_loaders-1.7.5.tar.xz 252548 BLAKE2B 5bc048dad9949dabd9ba3253fe862089975fe0b1dc6bc898e0b5fbc27cf4c2d7be81dbec64aa9fc1da357ed881e5617017f36c46d009a633e594a54fa29beeb0 SHA512 3b307dfae033466d2fa37f90d47626d32fd90228747cbd03ca3bfafe33fb995dbd1b86cfd13e4982c622b18940e4d6b2ec4826c017f5dce0c1cdee1b558c9204
24 DIST imlib2_loaders-1.9.1.tar.xz 257512 BLAKE2B b1610b54923f354fa0946d1e19efc9270f737122f979e5352c2090f25bd79318c58437b8fc7744dff9b9d7991f38a0b26aa5f3ce1e493961e348d1d2012924df SHA512 eed5c567d4c896a321be7492ceda8b1be33c5d8ab7614a7f9588adc9a2c288f4127f1c91ce65ea0ce18b5477c5b9a58bceb04a82a98cb6fc071a0c762f9ce8ee
25
26 diff --git a/media-plugins/imlib2_loaders/imlib2_loaders-1.11.0.ebuild b/media-plugins/imlib2_loaders/imlib2_loaders-1.11.0.ebuild
27 new file mode 100644
28 index 000000000000..572f29a2e0fc
29 --- /dev/null
30 +++ b/media-plugins/imlib2_loaders/imlib2_loaders-1.11.0.ebuild
31 @@ -0,0 +1,34 @@
32 +# Copyright 1999-2023 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=8
36 +
37 +DESCRIPTION="Additional image loaders for Imlib2"
38 +HOMEPAGE="https://www.enlightenment.org/
39 + https://sourceforge.net/projects/enlightenment/files/imlib2-src/"
40 +SRC_URI="https://downloads.sourceforge.net/enlightenment/${P}.tar.xz"
41 +
42 +LICENSE="|| ( BSD GPL-2 )"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-solaris ~x86-solaris"
45 +IUSE="xcf"
46 +
47 +RDEPEND=">=media-libs/imlib2-${PV}"
48 +DEPEND="${RDEPEND}"
49 +BDEPEND="virtual/pkgconfig"
50 +
51 +src_configure() {
52 + local myconf=(
53 + --disable-static
54 + $(use_enable xcf)
55 + )
56 +
57 + econf "${myconf[@]}"
58 +}
59 +
60 +src_install() {
61 + V=1 emake install DESTDIR="${D}"
62 + einstalldocs
63 +
64 + find "${D}" -name '*.la' -delete || die
65 +}