Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/
Date: Wed, 30 Aug 2017 07:12:45
Message-Id: 1504077156.8e6a338783ac1c87ab263bebf475e1e9e0027b81.mgorny@gentoo
1 commit: 8e6a338783ac1c87ab263bebf475e1e9e0027b81
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Aug 30 06:30:33 2017 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Aug 30 07:12:36 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e6a3387
7
8 xfce-base/xfwm4: Remove the bad snapshot
9
10 The snapshot is too buggy to be useful even on ~arch systems. Remove
11 it and backport the one good patch to the previous release.
12
13 xfce-base/xfwm4/xfwm4-4.13.0_p20170825.ebuild | 75 ---------------------------
14 1 file changed, 75 deletions(-)
15
16 diff --git a/xfce-base/xfwm4/xfwm4-4.13.0_p20170825.ebuild b/xfce-base/xfwm4/xfwm4-4.13.0_p20170825.ebuild
17 deleted file mode 100644
18 index 0e551af3d59..00000000000
19 --- a/xfce-base/xfwm4/xfwm4-4.13.0_p20170825.ebuild
20 +++ /dev/null
21 @@ -1,75 +0,0 @@
22 -# Copyright 1999-2017 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=6
26 -
27 -inherit gnome2-utils
28 -
29 -# note: this is upstream b9f910bd with aee8b25a reverted
30 -# due to https://bugzilla.xfce.org/show_bug.cgi?id=13823
31 -MY_P=${P%_p*}git.2b80a066
32 -DESCRIPTION="Window manager for the Xfce desktop environment"
33 -HOMEPAGE="https://www.xfce.org/projects/"
34 -SRC_URI="https://dev.gentoo.org/~mgorny/dist/${MY_P}.tar.bz2"
35 -
36 -LICENSE="GPL-2"
37 -SLOT="0"
38 -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
39 -IUSE="opengl startup-notification +xcomposite xpresent"
40 -
41 -RDEPEND="dev-libs/dbus-glib:=
42 - >=dev-libs/glib-2.20:=
43 - >=x11-libs/gtk+-2.24:2=
44 - x11-libs/libX11:=
45 - x11-libs/libXext:=
46 - x11-libs/libXinerama:=
47 - x11-libs/libXrandr:=
48 - x11-libs/libXrender:=
49 - x11-libs/pango:=
50 - >=x11-libs/libwnck-2.30:1=
51 - >=xfce-base/libxfce4util-4.10:=
52 - >=xfce-base/libxfce4ui-4.11:=
53 - >=xfce-base/xfconf-4.10:=
54 - opengl? ( media-libs/libepoxy:=[X(+)] )
55 - startup-notification? ( x11-libs/startup-notification:= )
56 - xpresent? ( x11-libs/libXpresent )
57 - xcomposite? (
58 - x11-libs/libXcomposite:=
59 - x11-libs/libXdamage:=
60 - x11-libs/libXfixes:=
61 - )"
62 -# libICE/libSM: not really used anywhere but checked by configure
63 -# https://bugzilla.xfce.org/show_bug.cgi?id=11914
64 -DEPEND="${RDEPEND}
65 - dev-util/intltool
66 - sys-devel/gettext
67 - x11-libs/libICE
68 - x11-libs/libSM
69 - xfce-base/exo
70 - virtual/pkgconfig"
71 -
72 -DOCS=( AUTHORS ChangeLog COMPOSITOR NEWS README TODO )
73 -
74 -S=${WORKDIR}/${MY_P}
75 -
76 -src_configure() {
77 - local myconf=(
78 - $(use_enable opengl epoxy)
79 - $(use_enable startup-notification)
80 - --enable-xsync
81 - --enable-render
82 - --enable-randr
83 - $(use_enable xpresent)
84 - $(use_enable xcomposite compositor)
85 - )
86 -
87 - econf "${myconf[@]}"
88 -}
89 -
90 -pkg_postinst() {
91 - gnome2_icon_cache_update
92 -}
93 -
94 -pkg_postrm() {
95 - gnome2_icon_cache_update
96 -}