Diff xfce4-clipman-plugin-1.6.4 with a xfce4-clipman-plugin-1.6.5
/usr/portage/xfce-extra/xfce4-clipman-plugin/xfce4-clipman-plugin-1.6.5.ebuild 2023-10-09 14:52:36.008368514 +0300 | ||
---|---|---|
17 | 17 |
LICENSE="GPL-2+" |
18 | 18 |
SLOT="0" |
19 | 19 |
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux" |
20 |
IUSE="qrcode" |
|
20 |
IUSE="X qrcode wayland" |
|
21 | 21 | |
22 | 22 |
DEPEND=" |
23 |
>=dev-libs/glib-2.60:2= |
|
24 |
>=x11-libs/gtk+-3.22.29:3= |
|
25 |
x11-libs/libXtst:= |
|
26 |
>=xfce-base/libxfce4ui-4.14:= |
|
27 |
>=xfce-base/libxfce4util-4.14:= |
|
28 |
>=xfce-base/xfce4-panel-4.14:= |
|
29 |
>=xfce-base/xfconf-4.14:= |
|
23 |
>=dev-libs/glib-2.60.0 |
|
24 |
>=x11-libs/gtk+-3.22.29:3[X?] |
|
25 |
>=xfce-base/libxfce4ui-4.14.0:= |
|
26 |
>=xfce-base/libxfce4util-4.14.0:= |
|
27 |
>=xfce-base/xfce4-panel-4.14.0:= |
|
28 |
>=xfce-base/xfconf-4.14.0:= |
|
29 |
X? ( |
|
30 |
>=x11-libs/libX11-1.6.7 |
|
31 |
>=x11-libs/libXtst-1.0.0 |
|
32 |
) |
|
30 | 33 |
qrcode? ( >=media-gfx/qrencode-3.3.0:= ) |
34 |
wayland? ( |
|
35 |
>=dev-libs/wayland-1.15.0 |
|
36 |
) |
|
31 | 37 |
" |
32 | 38 |
RDEPEND=" |
33 | 39 |
${DEPEND} |
... | ... | |
36 | 42 |
dev-util/intltool |
37 | 43 |
sys-devel/gettext |
38 | 44 |
virtual/pkgconfig |
39 |
x11-base/xorg-proto |
|
45 |
X? ( |
|
46 |
>=x11-base/xorg-proto-7.0.0 |
|
47 |
) |
|
48 |
wayland? ( |
|
49 |
>=dev-util/wayland-scanner-1.15.0 |
|
50 |
) |
|
40 | 51 |
" |
41 | 52 | |
42 | 53 |
src_configure() { |
43 | 54 |
local myconf=( |
44 | 55 |
$(use_enable qrcode libqrencode) |
56 | ||
57 |
$(use_enable X libx11) |
|
58 |
$(use_enable X gdk-x11) |
|
59 |
$(use_enable X libxproto) |
|
60 |
$(use_enable X libxtst) |
|
61 | ||
62 |
$(use_enable wayland wayland-scanner) |
|
63 |
$(use_enable wayland wayland-client) |
|
45 | 64 |
) |
46 | 65 | |
47 | 66 |
econf "${myconf[@]}" |
... | ... | |
49 | 68 | |
50 | 69 |
src_install() { |
51 | 70 |
default |
52 | ||
53 | 71 |
find "${D}" -name '*.la' -delete || die |
54 | 72 |
} |
55 | 73 |