mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-04-20 22:01:11 +02:00
gnome-keyring: 3.27.4 bump
This commit is contained in:
parent
83a55fca91
commit
6178339fef
2 changed files with 79 additions and 0 deletions
|
|
@ -1,2 +1,3 @@
|
|||
DIST gnome-keyring-3.20.1.tar.xz 1219800 SHA256 97964e723f454be509c956ed5e38b5c2fd7363f43bd3f153b94a4a63eb888c8c SHA512 a60d8a4b17a9c6d8c581578881abaf7d79de43045a314b401e3bfd3974edb4ab94117dd430203b721058f432b24bf6296e0b7c4fba1e66cccd2c2e9441787177 WHIRLPOOL e05ccedf325cafdd3faa70c6873345b4febbf0dc9e45e611165b58b78e99659fd238dbddc5a24e470663cf6d8772eb0a07677257d1a4b35c5333f6cc872403af
|
||||
DIST gnome-keyring-3.27.2.tar.xz 1221848 SHA256 78434975c917f2a413e5ee50624e0ff3f45bc84b8520ef5d5f35d719fd3e9289 SHA512 17ed8d63de4ff6057077c0a5cf2c8eef620819a031af40df9d1f4f7718f8870e5e7b7304e7516c25217c2a1b1dc8b01c19515e7f38cae2d2c25acf7789774e50 WHIRLPOOL 384076fe48dd58939b259c07bfe59ef57d86b1b3c41a70af9dadbf723180a271ce0332830980cc52e298ba468c18ca7d41f3fb29727dc5d8d8432ffa33053004
|
||||
DIST gnome-keyring-3.27.4.tar.xz 1316960 SHA256 6ab7c5a659bbff55bf5bc7a5004bc1339e6513cdea387a304bd778214b220f60 SHA512 1e3882e6a038fe8e65c55e05ad0dfafd0cdd3dbef122219f8b23b9b6c7406fe6064ba8da20133c48f4af167c23a87133b473610dc91cfad244610f661993fe8c WHIRLPOOL ef30bb4ec31b8333bf4a9522a270474ddd05c1c64ee533c905b683f8ace8c832c646a5187011fef15b4e77517770e0ae1db289b75ac80f949ae12128866886b4
|
||||
|
|
|
|||
78
gnome-base/gnome-keyring/gnome-keyring-3.27.4.ebuild
Normal file
78
gnome-base/gnome-keyring/gnome-keyring-3.27.4.ebuild
Normal file
|
|
@ -0,0 +1,78 @@
|
|||
# Copyright 1999-2017 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
GNOME2_LA_PUNT="yes"
|
||||
PYTHON_COMPAT=( python2_7 )
|
||||
|
||||
inherit fcaps gnome2 pam python-any-r1 versionator virtualx
|
||||
|
||||
DESCRIPTION="Password and keyring managing daemon"
|
||||
HOMEPAGE="https://wiki.gnome.org/Projects/GnomeKeyring"
|
||||
|
||||
LICENSE="GPL-2+ LGPL-2+"
|
||||
SLOT="0"
|
||||
IUSE="+caps pam selinux +ssh-agent test"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
|
||||
# Replace gkd gpg-agent with pinentry[gnome-keyring] one, bug #547456
|
||||
RDEPEND="
|
||||
>=app-crypt/gcr-3.5.3:=[gtk]
|
||||
>=dev-libs/glib-2.51:2
|
||||
app-misc/ca-certificates
|
||||
>=dev-libs/libgcrypt-1.2.2:0=
|
||||
caps? ( sys-libs/libcap-ng )
|
||||
pam? ( virtual/pam )
|
||||
selinux? ( sec-policy/selinux-gnome )
|
||||
>=app-crypt/gnupg-2.0.28:=
|
||||
"
|
||||
DEPEND="${RDEPEND}
|
||||
>=app-eselect/eselect-pinentry-0.5
|
||||
app-text/docbook-xml-dtd:4.3
|
||||
dev-libs/libxslt
|
||||
>=dev-util/intltool-0.35
|
||||
sys-devel/gettext
|
||||
virtual/pkgconfig
|
||||
test? ( ${PYTHON_DEPS} )
|
||||
"
|
||||
#PDEPEND="app-crypt/pinentry[gnome-keyring]" #570512
|
||||
|
||||
pkg_setup() {
|
||||
use test && python-any-r1_pkg_setup
|
||||
}
|
||||
|
||||
src_prepare() {
|
||||
# Disable stupid CFLAGS with debug enabled
|
||||
sed -e 's/CFLAGS="$CFLAGS -g"//' \
|
||||
-e 's/CFLAGS="$CFLAGS -O0"//' \
|
||||
-i configure.ac configure || die
|
||||
|
||||
gnome2_src_prepare
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
gnome2_src_configure \
|
||||
$(use_with caps libcap-ng) \
|
||||
$(use_enable pam) \
|
||||
$(use_with pam pam-dir $(getpam_mod_dir)) \
|
||||
$(use_enable selinux) \
|
||||
$(use_enable ssh-agent) \
|
||||
--enable-doc
|
||||
}
|
||||
|
||||
src_test() {
|
||||
"${EROOT}${GLIB_COMPILE_SCHEMAS}" --allow-any-name "${S}/schema" || die
|
||||
GSETTINGS_SCHEMA_DIR="${S}/schema" virtx emake check
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
# cap_ipc_lock only needed if building --with-libcap-ng
|
||||
# Never install as suid root, this breaks dbus activation, see bug #513870
|
||||
use caps && fcaps -m 755 cap_ipc_lock usr/bin/gnome-keyring-daemon
|
||||
gnome2_pkg_postinst
|
||||
|
||||
if ! [[ $(eselect pinentry show | grep "pinentry-gnome3") ]] ; then
|
||||
ewarn "Please select pinentry-gnome3 as default pinentry provider:"
|
||||
ewarn " # eselect pinentry set pinentry-gnome3"
|
||||
fi
|
||||
}
|
||||
Loading…
Reference in a new issue