From 09411e9512455df329ebd9fee8d1fd1b709d124e Mon Sep 17 00:00:00 2001 From: Jeroen Roovers Date: Sat, 25 Jan 2020 11:35:25 +0100 Subject: x11-misc/i3lock: Fix compiling with -fno-common Package-Manager: Portage-2.3.85, Repoman-2.3.20 Closes: https://bugs.gentoo.org/706286 Signed-off-by: Jeroen Roovers --- x11-misc/i3lock/files/i3lock-2.12-fno-common.patch | 11 +++++ x11-misc/i3lock/i3lock-2.12-r2.ebuild | 47 ++++++++++++++++++++++ 2 files changed, 58 insertions(+) create mode 100644 x11-misc/i3lock/files/i3lock-2.12-fno-common.patch create mode 100644 x11-misc/i3lock/i3lock-2.12-r2.ebuild (limited to 'x11-misc') diff --git a/x11-misc/i3lock/files/i3lock-2.12-fno-common.patch b/x11-misc/i3lock/files/i3lock-2.12-fno-common.patch new file mode 100644 index 000000000000..09003b165919 --- /dev/null +++ b/x11-misc/i3lock/files/i3lock-2.12-fno-common.patch @@ -0,0 +1,11 @@ +--- a/unlock_indicator.c ++++ b/unlock_indicator.c +@@ -35,7 +35,7 @@ + + /* The current position in the input buffer. Useful to determine if any + * characters of the password have already been entered or not. */ +-int input_position; ++extern int input_position; + + /* The lock window. */ + extern xcb_window_t win; diff --git a/x11-misc/i3lock/i3lock-2.12-r2.ebuild b/x11-misc/i3lock/i3lock-2.12-r2.ebuild new file mode 100644 index 000000000000..07a68eb55c25 --- /dev/null +++ b/x11-misc/i3lock/i3lock-2.12-r2.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +inherit toolchain-funcs + +DESCRIPTION="Simple screen locker" +HOMEPAGE="https://i3wm.org/i3lock/" +SRC_URI="https://i3wm.org/${PN}/${P}.tar.bz2" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" + +RDEPEND=" + >=x11-libs/libxkbcommon-0.5.0[X] + dev-libs/libev + sys-libs/pam + x11-libs/cairo[X,xcb(+)] + x11-libs/libxcb[xkb] + x11-libs/xcb-util + x11-libs/xcb-util-xrm +" +DEPEND=" + ${RDEPEND} + virtual/pkgconfig +" +DOCS=( CHANGELOG README.md ) +PATCHES=( + "${FILESDIR}"/${PN}-2.12-fno-common.patch +) + +src_prepare() { + default + + sed -i -e 's:login:system-auth:g' pam/${PN} || die +} + +src_configure() { + tc-export CC + default +} + +src_install() { + default + doman ${PN}.1 +} -- cgit v1.2.3-65-gdbad