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, 15 Apr 2021 08:31:00
Message-Id: 1618475436.397d374e20984858fa53a4911d4bcd6a3f5cf9df.polynomial-c@gentoo
1 commit: 397d374e20984858fa53a4911d4bcd6a3f5cf9df
2 Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
3 AuthorDate: Thu Apr 15 07:03:52 2021 +0000
4 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
5 CommitDate: Thu Apr 15 08:30:36 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=397d374e
7
8 x11-wm/icewm: Bump to version 2.3.2
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.3.2.ebuild | 153 ++++++++++++++++++++++++++++++++++++++++
14 2 files changed, 154 insertions(+)
15
16 diff --git a/x11-wm/icewm/Manifest b/x11-wm/icewm/Manifest
17 index e0e49d08476..f9a1170a41f 100644
18 --- a/x11-wm/icewm/Manifest
19 +++ b/x11-wm/icewm/Manifest
20 @@ -1,3 +1,4 @@
21 DIST icewm-2.2.1.tar.lz 1697220 BLAKE2B a1c236c5aa3f2b958f3ad53c6d757abbce344da3c1c9c8f49bd4c986c68aef7421e799100dfabcb03e612d4c6a44af6a063080730b054e96ee054c85c21d5d1e SHA512 700122ace9a120300a06f17f334b76c12395154693583587527254903f53d12feb6e991754fc714960cc78b0d7809202879e43f2508f4d7ffa3fc7af84e628d6
22 DIST icewm-2.3.0.tar.lz 1698169 BLAKE2B 76cde9084cc727ca3174ba839478a9981dac41ea45daf546ea70759ac56b20e80c858eea8a1472b2be750c34b852bf6e4495e88e6bc07b783777e5406e28acb4 SHA512 b744f0771b2ce364fb3d8c9c659cc1128a48aca34040eda9d86aec11dee4b012b8d36865f58f3c396c3302bab5f189505837085b9fc81fbfacfaa2d3cad6110d
23 DIST icewm-2.3.1.tar.lz 1697840 BLAKE2B 8b51a9159e7b58989d7d63e8745e3cc8024211b81dc352bbd6753ba0b8cefbce7603ed11fe7874d91dc9ead37a19bca8e1541044d661f50098e9eb78a1c6739b SHA512 8194b375e6565f8d895a93e7315c9da0634c737a99ab91fe78ef50b298cef73c894688155635e79435f862fa30cfb988abe4b0374c22d65e4e496f2a8a0df6cb
24 +DIST icewm-2.3.2.tar.lz 1699944 BLAKE2B 4be59088ea1aaa4dce7a284efc766b082eb0a8f923a4a915de9d9d658a7eda4ccbaeb3c746918218058f062ba92ce29f715b8e9a42f6351e96cfb0df4261254f SHA512 1288f02aca7210051603a77f37126cda3750f8eeeef848ea3acf28ffbc82b1ea69b69a9b68df9750c58c067e5029093cb20f77c631521c568fb7f45a83dd320d
25
26 diff --git a/x11-wm/icewm/icewm-2.3.2.ebuild b/x11-wm/icewm/icewm-2.3.2.ebuild
27 new file mode 100644
28 index 00000000000..7b0d626e90a
29 --- /dev/null
30 +++ b/x11-wm/icewm/icewm-2.3.2.ebuild
31 @@ -0,0 +1,153 @@
32 +# Copyright 1999-2021 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
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 uclibc 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 +}