Gentoo Archives: gentoo-commits

From: Georgy Yakovlev <gyakovlev@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/xwallpaper/
Date: Tue, 24 Aug 2021 18:31:13
Message-Id: 1629829787.a5c5040ed8473d32622df88da1818e58aae05ee6.gyakovlev@gentoo
1 commit: a5c5040ed8473d32622df88da1818e58aae05ee6
2 Author: Khue Nguyen <Z5483Y <AT> gmail <DOT> com>
3 AuthorDate: Sun Aug 22 22:54:49 2021 +0000
4 Commit: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
5 CommitDate: Tue Aug 24 18:29:47 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a5c5040e
7
8 x11-misc/xwallpaper: bump to 0.7.3
9
10 Package-Manager: Portage-3.0.22, Repoman-3.0.3
11 Signed-off-by: Khue Nguyen <Z5483Y <AT> gmail.com>
12 Closes: https://github.com/gentoo/gentoo/pull/22074
13 Signed-off-by: Georgy Yakovlev <gyakovlev <AT> gentoo.org>
14
15 x11-misc/xwallpaper/Manifest | 1 +
16 x11-misc/xwallpaper/xwallpaper-0.7.3.ebuild | 50 +++++++++++++++++++++++++++++
17 2 files changed, 51 insertions(+)
18
19 diff --git a/x11-misc/xwallpaper/Manifest b/x11-misc/xwallpaper/Manifest
20 index d8e0229b49b..757e82aeb67 100644
21 --- a/x11-misc/xwallpaper/Manifest
22 +++ b/x11-misc/xwallpaper/Manifest
23 @@ -1,2 +1,3 @@
24 DIST xwallpaper-0.7.1.tar.xz 86260 BLAKE2B b8327b15bc421275660cc81d14e4952b37a1310fd50eea61b772115e2c345c01cae9c4f908d9ca55427e642b10bea7277af02e1d3525db6c1d6e80a356db1b2b SHA512 706f814ee892f9d136ef20bb3c9bb4b8537e3ed7029b3b20fbebb1504426529d2fa6a45117a391419253543a48230f5786ffa3f871f85477699c08dfa3ba5c92
25 DIST xwallpaper-0.7.2.tar.xz 86212 BLAKE2B 1958ad8eb3f80f2cccdd969230e32986e7d144bf820a4c820a93d0bfdbcaa5512f08eb4014a8b57edb40f1ed55ce54080835c2d2dd46205c399b2ea6adcf1df1 SHA512 2b7166b719edae0d21460682d6c8991739d1a753078920bccb253f905300c694cb6fb12695456be58707d895f8adacd6007023c8e1abd23a0e369e9e80e5106e
26 +DIST xwallpaper-0.7.3.tar.xz 86388 BLAKE2B 45942dbe7e3627fbbf99ac5ab94c88ecea919e48131f268f0be10a0fba15a4feddf207c0787ac47f75bc6a5cc94f2b78d599e97950609196930a73073ae21ec1 SHA512 7fa9cc9ca2445afdfcb647724a6dc8bb3b52b9a6c91d237f6b443cf1fe6624c67d16d611bf4e435c5f3dcdae6cbf73bbde257a4e194bc127dc13dca1f8067c19
27
28 diff --git a/x11-misc/xwallpaper/xwallpaper-0.7.3.ebuild b/x11-misc/xwallpaper/xwallpaper-0.7.3.ebuild
29 new file mode 100644
30 index 00000000000..548fe349669
31 --- /dev/null
32 +++ b/x11-misc/xwallpaper/xwallpaper-0.7.3.ebuild
33 @@ -0,0 +1,50 @@
34 +# Copyright 1999-2021 Gentoo Authors
35 +# Distributed under the terms of the GNU General Public License v2
36 +
37 +EAPI=7
38 +
39 +inherit autotools
40 +
41 +DESCRIPTION="Wallpaper setting utility for X"
42 +HOMEPAGE="https://github.com/stoeckmann/xwallpaper"
43 +
44 +if [ ${PV} == "9999" ] ; then
45 + inherit git-r3
46 + EGIT_REPO_URI="https://github.com/stoeckmann/${PN}.git"
47 +else
48 + SRC_URI="https://github.com/stoeckmann/${PN}/releases/download/v${PV}/${P}.tar.xz"
49 + KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
50 +fi
51 +
52 +LICENSE="ISC"
53 +SLOT="0"
54 +IUSE="+jpeg +png seccomp xpm"
55 +
56 +RDEPEND="
57 + x11-libs/pixman
58 + x11-libs/xcb-util
59 + x11-libs/xcb-util-image
60 + jpeg? ( media-libs/libjpeg-turbo:= )
61 + png? ( media-libs/libpng:0= )
62 + seccomp? ( >=sys-libs/libseccomp-2.3.1:0= )
63 + xpm? ( x11-libs/libXpm )
64 +"
65 +
66 +DEPEND="${RDEPEND}"
67 +BDEPEND="virtual/pkgconfig"
68 +
69 +src_prepare() {
70 + default
71 + eautoreconf
72 +}
73 +
74 +src_configure() {
75 + local myconf=(
76 + $(use_with jpeg)
77 + $(use_with png)
78 + $(use_with seccomp)
79 + $(use_with xpm)
80 + --with-randr
81 + )
82 + econf "${myconf[@]}"
83 +}