From: "Michał Górny" <mgorny@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: xfce-extra/xfce4-screensaver/
Date: Sat, 18 Mar 2023 15:03:27 +0000 (UTC) [thread overview]
Message-ID: <1679151800.bef712e5ca44df127fcef9555eae03b007b7ab62.mgorny@gentoo> (raw)
commit: bef712e5ca44df127fcef9555eae03b007b7ab62
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 18 11:04:32 2023 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Mar 18 15:03:20 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bef712e5
xfce-extra/xfce4-screensaver: Bump to 4.18.0
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
| 1 +
.../xfce4-screensaver-4.18.0.ebuild | 92 ++++++++++++++++++++++
2 files changed, 93 insertions(+)
--git a/xfce-extra/xfce4-screensaver/Manifest b/xfce-extra/xfce4-screensaver/Manifest
index c0e7b476448c..84a757ac13e6 100644
--- a/xfce-extra/xfce4-screensaver/Manifest
+++ b/xfce-extra/xfce4-screensaver/Manifest
@@ -1,2 +1,3 @@
DIST xfce4-screensaver-4.16.0-mem.patch 3265 BLAKE2B 38436c7c2047453109702fd54aee874dfb489819024e61899b807ea98686bdd491e578b65be89dfbd53ee89976bb215790df4fce6559f7ee4f5ff92b449374fe SHA512 dc9e289aa91ea4a5b65d2381bfabdbb48a6b07c67782afc53b003ffd2a07c0d225f4bb2ea48bcd478f14ab4c29a2521a0436085b40589e5a059e5561f7bcb42d
DIST xfce4-screensaver-4.16.0.tar.bz2 687978 BLAKE2B 1656027af61a50ab97fd3d5744f0ab5f1a81353c64a2fd935a6113dbe2fce5c4b2a22c5f81f15d06d09c3b292f82afa95ce34a07facb5fffef7e6fef712cae63 SHA512 5fa0381395b48fdfb5bdd9b4cafe1ec625d0b7fb9600d59c22c42fe0248fb4b99dd18a94045df3ecdc77635f7271676329c658f25003a9d8d6f9a9a66739dbe9
+DIST xfce4-screensaver-4.18.0.tar.bz2 705730 BLAKE2B 190ef60167abe41021e2140ca9efcb8a2021c6e5f18f2ffb81aae1e8e9efee5a2b4da968f96d135ac74255281f8079c5705ac2fbf2d535f0bc14d56562b9a1cc SHA512 06d32c81411d41f96d5fd822e31fb8f256193114b7e60472a32ecb5f369c14780dfcd316c1698904c46c90713e25fd42b947357d3bf5edf65a25fc3a7cdaa45c
diff --git a/xfce-extra/xfce4-screensaver/xfce4-screensaver-4.18.0.ebuild b/xfce-extra/xfce4-screensaver/xfce4-screensaver-4.18.0.ebuild
new file mode 100644
index 000000000000..157de2196507
--- /dev/null
+++ b/xfce-extra/xfce4-screensaver/xfce4-screensaver-4.18.0.ebuild
@@ -0,0 +1,92 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit xdg-utils
+
+DESCRIPTION="Screen saver and locker (port of MATE screensaver)"
+HOMEPAGE="
+ https://docs.xfce.org/apps/screensaver/start
+ https://gitlab.xfce.org/apps/xfce4-screensaver/
+"
+SRC_URI="
+ https://archive.xfce.org/src/apps/${PN}/${PV%.*}/${P}.tar.bz2
+"
+
+LICENSE="GPL-2+ LGPL-2+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86"
+IUSE="elogind +locking opengl pam systemd"
+
+# Xrandr: optional but automagic
+DEPEND="
+ >=dev-libs/dbus-glib-0.30
+ >=dev-libs/glib-2.50:2
+ >=x11-libs/gtk+-3.22:3
+ >=x11-libs/libwnck-3.20:3
+ x11-libs/libICE:=
+ x11-libs/libX11:=
+ x11-libs/libXScrnSaver:=
+ x11-libs/libXext:=
+ x11-libs/libXxf86vm:=
+ >=x11-libs/libXrandr-1.3:=
+ >=x11-libs/libxklavier-5.2:=
+ >=xfce-base/garcon-0.5.0:=
+ >=xfce-base/libxfce4ui-4.12.1:=
+ >=xfce-base/libxfce4util-4.12.1:=
+ >=xfce-base/xfconf-4.12.1:=
+ elogind? ( sys-auth/elogind )
+ locking? (
+ pam? ( sys-libs/pam )
+ )
+ opengl? ( virtual/opengl )
+ systemd? ( sys-apps/systemd:= )
+"
+RDEPEND="
+ ${DEPEND}
+"
+BDEPEND="
+ dev-util/glib-utils
+ dev-util/intltool
+ sys-apps/dbus
+ virtual/pkgconfig
+"
+
+src_configure() {
+ local myconf=(
+ # disable docbook for now
+ ac_cv_path_XMLTO=no
+
+ # xscreensaver dirs autodetection doesn't seem to work
+ --with-xscreensaverdir=/usr/share/xscreensaver/config
+ --with-xscreensaverhackdir=/usr/$(get_libdir)/misc/xscreensaver
+ --without-console-kit
+
+ $(use_with opengl libgl)
+ $(use_enable locking)
+ $(use_enable pam)
+ $(use_with elogind)
+ $(use_with systemd)
+ )
+
+ if use pam; then
+ myconf+=( --with-pam-auth-type=system )
+ fi
+
+ econf "${myconf[@]}"
+}
+
+src_install() {
+ default
+
+ find "${D}" -name '*.la' -delete || die
+}
+
+pkg_postinst() {
+ xdg_icon_cache_update
+}
+
+pkg_postrm() {
+ xdg_icon_cache_update
+}
next reply other threads:[~2023-03-18 15:03 UTC|newest]
Thread overview: 63+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-03-18 15:03 Michał Górny [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-03-01 8:31 [gentoo-commits] repo/gentoo:master commit in: xfce-extra/xfce4-screensaver/ Michał Górny
2025-01-25 11:05 Michał Górny
2024-12-21 8:11 Michał Górny
2024-06-25 0:29 Sam James
2024-03-23 11:57 Michał Górny
2024-03-23 10:25 Michał Górny
2024-03-04 16:26 Michał Górny
2023-08-15 9:32 Michał Górny
2023-08-15 3:17 Sam James
2023-08-03 10:28 Arthur Zamarin
2023-05-30 14:01 Michał Górny
2023-05-05 14:07 Michał Górny
2023-05-05 10:03 Arthur Zamarin
2023-05-04 10:54 Jakov Smolić
2023-05-04 9:13 Sam James
2023-05-04 9:13 Sam James
2023-03-27 3:49 Michał Górny
2023-03-17 18:28 Michał Górny
2022-11-26 17:03 Michał Górny
2022-08-28 6:49 WANG Xuerui
2021-05-29 0:03 Yixun Lan
2021-05-15 2:41 Sam James
2021-03-04 4:24 Sam James
2021-02-25 9:49 Sam James
2021-02-19 1:11 Michał Górny
2021-01-03 14:35 Michał Górny
2020-12-20 20:34 Michał Górny
2020-12-20 19:07 Thomas Deutschmann
2020-11-08 22:20 Michał Górny
2020-11-08 14:06 Michał Górny
2020-10-06 18:30 Mikle Kolyada
2020-07-19 14:19 Michał Górny
2020-07-16 13:00 Sam James
2020-05-08 10:46 Agostino Sarubbo
2020-05-04 9:40 Michał Górny
2020-03-30 6:51 Michał Górny
2020-03-23 15:13 Michał Górny
2019-10-20 10:24 Michał Górny
2019-10-12 17:35 Mikle Kolyada
2019-10-10 18:35 Mikle Kolyada
2019-10-10 18:31 Mikle Kolyada
2019-10-10 14:49 Michał Górny
2019-10-09 21:32 Matt Turner
2019-08-17 20:43 Georgy Yakovlev
2019-08-17 16:10 Matt Turner
2019-08-11 19:13 Michał Górny
2019-08-11 8:32 Michał Górny
2019-07-28 21:08 Michał Górny
2019-07-28 21:08 Michał Górny
2019-06-30 21:00 Michał Górny
2019-06-13 11:11 Michał Górny
2019-05-15 15:00 Mikle Kolyada
2019-05-13 16:37 Mikle Kolyada
2019-04-09 17:05 Michał Górny
2019-04-07 8:29 Michał Górny
2019-03-22 10:47 Michał Górny
2018-11-24 11:18 Mikle Kolyada
2018-11-05 12:00 Mikle Kolyada
2018-11-05 12:00 Mikle Kolyada
2018-11-02 20:01 Michał Górny
2018-11-01 8:48 Michał Górny
2018-10-16 18:10 Michał Górny
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1679151800.bef712e5ca44df127fcef9555eae03b007b7ab62.mgorny@gentoo \
--to=mgorny@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox