Gentoo Archives: gentoo-commits

From: Lars Wendler <polynomial-c@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-wm/icewm/
Date: Thu, 20 Jan 2022 08:07:25
Message-Id: 1642666034.ed7e264a44abefeec68402387d7eb817d79549da.polynomial-c@gentoo
1 commit: ed7e264a44abefeec68402387d7eb817d79549da
2 Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jan 20 08:06:18 2022 +0000
4 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
5 CommitDate: Thu Jan 20 08:07:14 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ed7e264a
7
8 x11-wm/icewm: Bump to version 2.9.5
9
10 Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>
11
12 x11-wm/icewm/Manifest | 1 +
13 x11-wm/icewm/icewm-2.9.5.ebuild | 153 ++++++++++++++++++++++++++++++++++++++++
14 2 files changed, 154 insertions(+)
15
16 diff --git a/x11-wm/icewm/Manifest b/x11-wm/icewm/Manifest
17 index 60ca59829833..6c642329a85b 100644
18 --- a/x11-wm/icewm/Manifest
19 +++ b/x11-wm/icewm/Manifest
20 @@ -1,3 +1,4 @@
21 DIST icewm-2.8.0.tar.lz 1745937 BLAKE2B dc5c4c6e4b5f067881176a0f72914f971dbae3daa475ed7ca00dbf3f687aae97874a0cf2e94b0d22d45f7dc221390c0658674e9aad3ea19d21a171b6d478c4be SHA512 552d1da9ceb96c6c14a0dfd596656a56fb289716a787fb75e54b49ef6df84747a4999ce733a6ffb9ff7a1e4c0243253fc3f2fa7a2251e7f3987ab9f33c0a1b30
22 DIST icewm-2.9.3.tar.lz 1760889 BLAKE2B f28ad3819bd89c70ae17df9bd3dfda6e5769be41a6206744fb13486b97a96618595da465654aca09ed43cabd5082feef70fe486f4ad679747bf6195ec4776f2e SHA512 c3aff2076bc293da4f42a72e02b44d3e4c972bfe4ceb0c0b9054f876c1ad1a6c0d43cf76db5422af8c907bfad222fb0e93c72070b93eac8fcdda8fb680f8691c
23 DIST icewm-2.9.4.tar.lz 1761065 BLAKE2B 2063e50924b446b46bbed057d60493f1a753991dc2049cc5628dcf7e8eff7fe5bcadfa1d5a651c92bac57270a948b8201a8c8e072228741583bbe3941fb128d5 SHA512 19aedfb15315b7d376bc4a0fabfaadcbd8754927daf752618d6d2b877c6a01d57ced0247454f058da24b355b3d6ec9a7341f1bab7fd17c8c9317b16624ec44c1
24 +DIST icewm-2.9.5.tar.lz 1768082 BLAKE2B 1e8c4885dcf6e912647d4f785e811b38eed3e8761213345c4687f6c347356e99f213eded7a5534bf3f9b8335dbaf1665b6fbfd8503f24cb98b79d7c7f3380b04 SHA512 5bfe5bf1edeead54f2046adfb21e31a23af1e86c018e7c6934309a3a47aae6b7c1bd0365460c062ad7a1e1fa9734a3f0425e1e7a2cfc2652ac123c1f1a92ae96
25
26 diff --git a/x11-wm/icewm/icewm-2.9.5.ebuild b/x11-wm/icewm/icewm-2.9.5.ebuild
27 new file mode 100644
28 index 000000000000..0b653160bbb5
29 --- /dev/null
30 +++ b/x11-wm/icewm/icewm-2.9.5.ebuild
31 @@ -0,0 +1,153 @@
32 +# Copyright 1999-2022 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=8
36 +
37 +inherit autotools unpacker
38 +
39 +DESCRIPTION="Ice Window Manager with Themes"
40 +HOMEPAGE="https://ice-wm.org/ https://github.com/ice-wm/icewm"
41 +LICENSE="GPL-2"
42 +SRC_URI="https://github.com/ice-wm/icewm/releases/download/${PV}/${P}.tar.lz"
43 +
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
46 +IUSE="+alsa ao bidi debug +gdk-pixbuf imlib nls truetype xinerama"
47 +
48 +# Tests broken in all versions, patches welcome, bug #323907, #389533
49 +RESTRICT="test"
50 +
51 +REQUIRED_USE="|| ( alsa ao )"
52 +#?? ( gdk-pixbuf imlib )
53 +
54 +#fix for icewm preversion package names
55 +S="${WORKDIR}/${P/_}"
56 +
57 +# These are the core dependencies of icewm.
58 +# Look into configure.ac and search for PKG_CHECK_MODULES([CORE]
59 +CORE_DEPEND="
60 + media-libs/fontconfig
61 + x11-libs/libX11
62 + x11-libs/libXcomposite
63 + x11-libs/libXdamage
64 + x11-libs/libXext
65 + x11-libs/libXfixes
66 + x11-libs/libXrender
67 +"
68 +
69 +RDEPEND="
70 + ${CORE_DEPEND}
71 + dev-libs/glib:2
72 + x11-libs/libICE
73 + x11-libs/libSM
74 + x11-libs/libXft
75 + x11-libs/libXpm
76 + x11-libs/libXrandr
77 + alsa? (
78 + media-libs/alsa-lib
79 + media-libs/libsndfile[alsa]
80 + )
81 + ao? (
82 + media-libs/libao
83 + media-libs/libsndfile
84 + )
85 + bidi? ( dev-libs/fribidi )
86 + gdk-pixbuf? (
87 + x11-libs/gdk-pixbuf-xlib
88 + >=x11-libs/gdk-pixbuf-2.42.0:2
89 + )
90 + !gdk-pixbuf? (
91 + imlib? (
92 + gnome-base/librsvg:2
93 + media-libs/imlib2
94 + )
95 + !imlib? (
96 + media-libs/libpng:0=
97 + virtual/jpeg
98 + )
99 + )
100 + xinerama? ( x11-libs/libXinerama )
101 +"
102 +DEPEND="
103 + ${RDEPEND}
104 + $(unpacker_src_uri_depends)
105 + x11-base/xorg-proto
106 + gdk-pixbuf? ( gnome-base/librsvg:2 )
107 +"
108 +
109 +BDEPEND="
110 + app-text/asciidoc
111 + virtual/pkgconfig
112 + nls? ( >=sys-devel/gettext-0.19.8 )
113 +"
114 +
115 +pkg_pretend() {
116 + if use gdk-pixbuf && use imlib ; then
117 + einfo 'Confilcting USE flags have been enabled:'
118 + einfo '"gdk-pixbuf" and "imlib" exclude each other!'
119 + einfo 'Using "gdk-pixbuf".'
120 + fi
121 +}
122 +
123 +src_prepare() {
124 + default
125 + eautoreconf
126 +}
127 +
128 +src_configure() {
129 + local icesound
130 + if use alsa && use ao ; then
131 + icesound="alsa,ao"
132 + elif use alsa ; then
133 + icesound="alsa"
134 + elif use ao ; then
135 + icesound="ao"
136 + fi
137 +
138 + local myconf=(
139 + --enable-logevents
140 + --enable-xrandr
141 + --with-cfgdir="${EPREFIX}"/etc/icewm
142 + --with-docdir="${EPREFIX}"/usr/share/doc/${PF}/html
143 + --with-icesound="${icesound}"
144 + --with-libdir="${EPREFIX}"/usr/share/icewm
145 + $(use_enable bidi fribidi)
146 + $(use_enable debug)
147 + $(use_enable debug logevents)
148 + $(use_enable gdk-pixbuf)
149 + $(use_enable imlib imlib2)
150 + $(use_enable nls i18n)
151 + $(use_enable nls)
152 + $(use_enable xinerama)
153 + )
154 + if use truetype ; then
155 + myconf+=(
156 + --enable-shape
157 + )
158 + else
159 + myconf+=(
160 + --disable-xfreetype
161 + --enable-corefonts
162 + )
163 + fi
164 +
165 + econf "${myconf[@]}"
166 +
167 + sed \
168 + -e "s:/icewm-\$(VERSION)::" \
169 + -e "s:ungif:gif:" \
170 + -i src/Makefile || die
171 +}
172 +
173 +src_install() {
174 + local DOCS=( AUTHORS ChangeLog NEWS README.md TODO VERSION )
175 +
176 + default
177 +
178 + docinto html
179 + dodoc doc/icewm.html
180 + dodoc man/*.html
181 +
182 + exeinto /etc/X11/Sessions
183 + doexe "${FILESDIR}/icewm"
184 +}