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: Tue, 15 Aug 2023 09:32:12 +0000 (UTC) [thread overview]
Message-ID: <1692091845.47198a98ddb0497ef0116009abd16683caf06cc9.mgorny@gentoo> (raw)
commit: 47198a98ddb0497ef0116009abd16683caf06cc9
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 15 09:30:45 2023 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue Aug 15 09:30:45 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=47198a98
xfce-extra/xfce4-screensaver: Remove old
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
| 1 -
.../xfce4-screensaver-4.18.1.ebuild | 92 ----------------------
2 files changed, 93 deletions(-)
--git a/xfce-extra/xfce4-screensaver/Manifest b/xfce-extra/xfce4-screensaver/Manifest
index 996f4ebfa471..589c9af263b3 100644
--- a/xfce-extra/xfce4-screensaver/Manifest
+++ b/xfce-extra/xfce4-screensaver/Manifest
@@ -1,2 +1 @@
-DIST xfce4-screensaver-4.18.1.tar.bz2 706002 BLAKE2B 2976c977d0ad1f292564e257dbfa01ab90ed5ae5a02fb93aa247363e81bdd60407ddd4cfbe8ccae0f37cffc03d37151ac77a7857fbd8b3d0ce6c6278b488550f SHA512 5b9fab018db6f933480e6da4a3b62fab0c3744f657db76df0631ac2468c20f5169c54a0b09bfa59b3311357a8effcddc40ba49d6baa2b5fec6c5815e72c63701
DIST xfce4-screensaver-4.18.2.tar.bz2 714671 BLAKE2B b83e9c0a77672f7ed24d396c2802b77a57eab39d9b93d8df6364821fda426a2ff3b4ee8715d66920a319c9b838defc098e8dafa4cf85d66c92c0162b5ee40cbe SHA512 5ffeeabd1c8c425a6de8e70cddb6afb54a2e64d6df821655f564e118a9924da4fd21e2300515583fe97caa1c76aba3745801cccc377eb056eeecb98303b08df1
diff --git a/xfce-extra/xfce4-screensaver/xfce4-screensaver-4.18.1.ebuild b/xfce-extra/xfce4-screensaver/xfce4-screensaver-4.18.1.ebuild
deleted file mode 100644
index 64a17b58f526..000000000000
--- a/xfce-extra/xfce4-screensaver/xfce4-screensaver-4.18.1.ebuild
+++ /dev/null
@@ -1,92 +0,0 @@
-# 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-08-15 9:32 UTC|newest]
Thread overview: 63+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-08-15 9:32 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 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-18 15:03 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=1692091845.47198a98ddb0497ef0116009abd16683caf06cc9.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