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, 16 Oct 2018 18:10:36 +0000 (UTC) [thread overview]
Message-ID: <1539713429.224404f0d9bac6bba247466a263b878e1977f01c.mgorny@gentoo> (raw)
commit: 224404f0d9bac6bba247466a263b878e1977f01c
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue Oct 16 18:10:00 2018 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue Oct 16 18:10:29 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=224404f0
xfce-extra/xfce4-screensaver: New package
New screensaver application for XFCE desktop. Early release for true
Gentoo ricers!
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
| 1 +
| 11 ++++
.../xfce4-screensaver-0.1.0.ebuild | 69 ++++++++++++++++++++++
3 files changed, 81 insertions(+)
--git a/xfce-extra/xfce4-screensaver/Manifest b/xfce-extra/xfce4-screensaver/Manifest
new file mode 100644
index 00000000000..38d6b8530ee
--- /dev/null
+++ b/xfce-extra/xfce4-screensaver/Manifest
@@ -0,0 +1 @@
+DIST xfce4-screensaver-0.1.0.tar.bz2 525080 BLAKE2B be1b4add2f72cf7d93bcb651852bb398c38e7d4637c03d90ea277dc3ea50147e8bca9a870b8b5fe2353fd71ad180684214cdeb0e18808f3ced234f9a03b2bf13 SHA512 a925deada7313e3d156d4b19fd38e50538e2ac429c657f9f29b727c4c20ccd83a07dafdc4fa14fca26bcc09961ee42700685097260473a5fdec8877114a8a048
--git a/xfce-extra/xfce4-screensaver/metadata.xml b/xfce-extra/xfce4-screensaver/metadata.xml
new file mode 100644
index 00000000000..f97bcaffd83
--- /dev/null
+++ b/xfce-extra/xfce4-screensaver/metadata.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>xfce@gentoo.org</email>
+ </maintainer>
+ <use>
+ <flag name='consolekit'>Enable ConsoleKit support</flag>
+ <flag name='locking'>Enable screen locking support</flag>
+ </use>
+</pkgmetadata>
diff --git a/xfce-extra/xfce4-screensaver/xfce4-screensaver-0.1.0.ebuild b/xfce-extra/xfce4-screensaver/xfce4-screensaver-0.1.0.ebuild
new file mode 100644
index 00000000000..33e37d91f14
--- /dev/null
+++ b/xfce-extra/xfce4-screensaver/xfce4-screensaver-0.1.0.ebuild
@@ -0,0 +1,69 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DESCRIPTION="Screen saver and locker (port of MATE screensaver)"
+HOMEPAGE="https://git.xfce.org/apps/xfce4-screensaver/about/"
+SRC_URI="https://archive.xfce.org/src/apps/${PN}/${PV%.*}/${P}.tar.bz2"
+
+LICENSE="GPL-2+ LGPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="consolekit +locking opengl pam systemd"
+
+# Xrandr: optional but automagic
+RDEPEND="
+ dev-libs/dbus-glib
+ >=dev-libs/glib-2.50:2
+ >=x11-libs/gtk+-3.22:3
+ x11-libs/libICE:=
+ x11-libs/libX11:=
+ x11-libs/libXScrnSaver:=
+ x11-libs/libXext:=
+ x11-libs/libXxf86misc:=
+ x11-libs/libXxf86vm:=
+ >=x11-libs/libXrandr-1.3:=
+ >=x11-libs/libxklavier-5.2:=
+ x11-misc/xscreensaver
+ >=xfce-base/garcon-0.5.0:=
+ >=xfce-base/libxfce4ui-4.12.1:=
+ >=xfce-base/libxfce4util-4.12.1:=
+ >=xfce-base/xfconf-4.12.1:=
+ consolekit? ( sys-auth/consolekit )
+ locking? (
+ pam? ( virtual/pam )
+ )
+ opengl? ( virtual/opengl )
+ systemd? ( sys-apps/systemd:= )
+"
+DEPEND="${RDEPEND}
+ 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
+
+ $(use_with opengl libgl)
+ $(use_enable locking)
+ $(use_enable pam)
+ $(use_with consolekit console-kit)
+ $(use_with systemd)
+ )
+
+ econf "${myconf[@]}"
+}
+
+src_install() {
+ default
+
+ find "${D}" -name '*.la' -delete || die
+}
next reply other threads:[~2018-10-16 18:10 UTC|newest]
Thread overview: 62+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-10-16 18:10 Michał Górny [this message]
-- strict thread matches above, loose matches on Subject: below --
2018-11-01 8:48 [gentoo-commits] repo/gentoo:master commit in: xfce-extra/xfce4-screensaver/ Michał Górny
2018-11-02 20:01 Michał Górny
2018-11-05 12:00 Mikle Kolyada
2018-11-05 12:00 Mikle Kolyada
2018-11-24 11:18 Mikle Kolyada
2019-03-22 10:47 Michał Górny
2019-04-07 8:29 Michał Górny
2019-04-09 17:05 Michał Górny
2019-05-13 16:37 Mikle Kolyada
2019-05-15 15:00 Mikle Kolyada
2019-06-13 11:11 Michał Górny
2019-06-30 21:00 Michał Górny
2019-07-28 21:08 Michał Górny
2019-07-28 21:08 Michał Górny
2019-08-11 8:32 Michał Górny
2019-08-11 19:13 Michał Górny
2019-08-17 16:10 Matt Turner
2019-08-17 20:43 Georgy Yakovlev
2019-10-09 21:32 Matt Turner
2019-10-10 14:49 Michał Górny
2019-10-10 18:31 Mikle Kolyada
2019-10-10 18:35 Mikle Kolyada
2019-10-12 17:35 Mikle Kolyada
2019-10-20 10:24 Michał Górny
2020-03-23 15:13 Michał Górny
2020-03-30 6:51 Michał Górny
2020-05-04 9:40 Michał Górny
2020-05-08 10:46 Agostino Sarubbo
2020-07-16 13:00 Sam James
2020-07-19 14:19 Michał Górny
2020-10-06 18:30 Mikle Kolyada
2020-11-08 14:06 Michał Górny
2020-11-08 22:20 Michał Górny
2020-12-20 19:07 Thomas Deutschmann
2020-12-20 20:34 Michał Górny
2021-01-03 14:35 Michał Górny
2021-02-19 1:11 Michał Górny
2021-02-25 9:49 Sam James
2021-03-04 4:24 Sam James
2021-05-15 2:41 Sam James
2021-05-29 0:03 Yixun Lan
2022-08-28 6:49 WANG Xuerui
2022-11-26 17:03 Michał Górny
2023-03-17 18:28 Michał Górny
2023-03-18 15:03 Michał Górny
2023-03-27 3:49 Michał Górny
2023-05-04 9:13 Sam James
2023-05-04 9:13 Sam James
2023-05-04 10:54 Jakov Smolić
2023-05-05 10:03 Arthur Zamarin
2023-05-05 14:07 Michał Górny
2023-05-30 14:01 Michał Górny
2023-08-03 10:28 Arthur Zamarin
2023-08-15 3:17 Sam James
2023-08-15 9:32 Michał Górny
2024-03-04 16:26 Michał Górny
2024-03-23 10:25 Michał Górny
2024-03-23 11:57 Michał Górny
2024-06-25 0:29 Sam James
2024-12-21 8:11 Michał Górny
2025-01-25 11:05 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=1539713429.224404f0d9bac6bba247466a263b878e1977f01c.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