public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Jeroen Roovers" <jer@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/xautolock/
Date: Wed, 28 Dec 2016 19:02:38 +0000 (UTC)	[thread overview]
Message-ID: <1482951756.b7c25115ce2d2a354befdd0560e2143e20e5cd6b.jer@gentoo> (raw)

commit:     b7c25115ce2d2a354befdd0560e2143e20e5cd6b
Author:     Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Wed Dec 28 19:01:14 2016 +0000
Commit:     Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Wed Dec 28 19:02:36 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b7c25115

x11-misc/xautolock: Bump Debian patch level.

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 x11-misc/xautolock/Manifest                   |  1 +
 x11-misc/xautolock/xautolock-2.2_p5_p1.ebuild | 65 +++++++++++++++++++++++++++
 2 files changed, 66 insertions(+)

diff --git a/x11-misc/xautolock/Manifest b/x11-misc/xautolock/Manifest
index 3459805..77c50a8 100644
--- a/x11-misc/xautolock/Manifest
+++ b/x11-misc/xautolock/Manifest
@@ -1,2 +1,3 @@
 DIST xautolock-2.2.tgz 35288 SHA256 11f0275175634e6db756e96f5713ec91b8b1c41f8663df54e8a5d27dc71c4da2 SHA512 5f9dcc25cda706610e77a74235c4b421ca3a833d154b1a269057f0774579e1c6ec36fe0e5be5fadd6942ce8c1640a760f891397586b162e6024b524635153d04 WHIRLPOOL c10262350dd39d9e69d491ee2164911ccb6077dd7f8be08981256e4fcb3d7059133fb172360d8f33b12d89e6576f4c4aa6b9d3ea4cdff427e4d5a0dab6ba757c
+DIST xautolock_2.2-5.1.debian.tar.xz 5828 SHA256 52aae5907807b5a39546859e174a30ed0e2dba800bf62c66f5fdb160ba9543d2 SHA512 315f27518b89fa6633e3ce157423cd271f3db3b797fc59febc35aa8b33379bd6eda55ac9c7ccdf996c2d9d50bb6bef3b15add84b39236ace425740238de77e59 WHIRLPOOL 153b319cd804f287d2f5ef026da1a89af0d606cf00840eda0fb31dbaa29e35d5856a878aba8033200b9d177e9b37f674a6c79cd0a6636ad99b9cf54f430a33c2
 DIST xautolock_2.2-5.debian.tar.xz 5444 SHA256 6a7ad00b0b01062927f10d995338836f535742e82092343cadc6ac6cc4644167 SHA512 aa5a5dc61d029803172ce99bfa9cacdb29ae44f1b45293947dfbde11c17f19c736071578863982aa4cf59f2a22de3e0463e6e17c3d768a4054387f2591b7238c WHIRLPOOL 485ed69545c7f116276120acefb206e8d2f0d2fecd4346a492f8f2c27b897543bab9e288df1e904f663d24f07e1fa43cffa155025f73027799169d383e40d156

diff --git a/x11-misc/xautolock/xautolock-2.2_p5_p1.ebuild b/x11-misc/xautolock/xautolock-2.2_p5_p1.ebuild
new file mode 100644
index 00000000..449a8b4
--- /dev/null
+++ b/x11-misc/xautolock/xautolock-2.2_p5_p1.ebuild
@@ -0,0 +1,65 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+inherit toolchain-funcs versionator
+
+DESCRIPTION="An automatic X screen-locker/screen-saver"
+HOMEPAGE="http://www.ibiblio.org/pub/Linux/X11/screensavers/"
+
+DEB_REV_MAJ="$(get_version_component_range 3)"
+DEB_REV_MIN="$(get_version_component_range 4)"
+DEB_REVISION="${DEB_REV_MAJ/p}.${DEB_REV_MIN/p}"
+SRC_URI="
+	${HOMEPAGE}/${P/_p*/}.tgz
+	mirror://debian/pool/main/x/${PN}/${PN}_${PV/_p*/}-${DEB_REVISION}.debian.tar.xz
+"
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+
+RDEPEND="
+	|| (
+		x11-misc/alock
+		x11-misc/i3lock
+		x11-misc/slim
+		x11-misc/slock
+		x11-misc/xlockmore
+		x11-misc/xtrlock
+	)
+	x11-libs/libXScrnSaver
+"
+DEPEND="
+	${RDEPEND}
+	app-text/rman
+	x11-misc/imake
+	x11-proto/scrnsaverproto
+"
+
+S=${WORKDIR}/${P/_p*}
+
+PATCHES=(
+	"${WORKDIR}"/debian/patches/10-fix-memory-corruption.patch
+	"${WORKDIR}"/debian/patches/11-fix-no-dpms.patch
+	"${WORKDIR}"/debian/patches/12-fix-manpage.patch
+	"${WORKDIR}"/debian/patches/13-fix-hppa-build.patch
+	"${WORKDIR}"/debian/patches/14-do-not-use-union-wait-type.patch
+)
+
+src_configure() {
+	xmkmf || die
+}
+
+src_compile() {
+	emake \
+		CC="$(tc-getCC)" \
+		CDEBUGFLAGS="${CFLAGS}" \
+		EXTRA_LDOPTIONS="${LDFLAGS}"
+}
+
+src_install () {
+	dobin xautolock
+	newman xautolock.man xautolock.1
+	dodoc Changelog Readme Todo
+}


             reply	other threads:[~2016-12-28 19:02 UTC|newest]

Thread overview: 30+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-12-28 19:02 Jeroen Roovers [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-01-08  7:53 [gentoo-commits] repo/gentoo:master commit in: x11-misc/xautolock/ Sam James
2024-01-08  7:53 Sam James
2024-01-07  6:14 Sam James
2023-06-17  8:15 Hans de Graaff
2022-09-30 11:02 Ionen Wolkens
2022-08-26 10:46 Sam James
2022-07-19  8:42 Hans de Graaff
2022-07-19  8:42 Hans de Graaff
2022-02-10 18:08 Jonas Stein
2021-04-15  6:39 Joonas Niilola
2021-03-17  9:09 Sam James
2021-03-17  9:00 Sam James
2021-03-15 21:25 Sam James
2021-03-15 21:21 Sam James
2021-03-15 21:18 Sam James
2020-09-04  8:33 Jeroen Roovers
2020-04-11  6:14 Jeroen Roovers
2020-01-13 10:07 David Seifert
2019-11-17 19:38 Steve Arnold
2019-10-15 10:01 Jeroen Roovers
2017-05-13 12:15 Jeroen Roovers
2017-03-22  7:30 Michael Weber
2017-03-20 11:04 Agostino Sarubbo
2016-09-30 13:53 Jeroen Roovers
2016-09-29 12:35 Agostino Sarubbo
2016-09-29  9:35 Agostino Sarubbo
2016-07-28 14:08 Agostino Sarubbo
2016-07-28  8:43 Agostino Sarubbo
2016-07-24 10:43 Jeroen Roovers

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=1482951756.b7c25115ce2d2a354befdd0560e2143e20e5cd6b.jer@gentoo \
    --to=jer@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