Gentoo Archives: gentoo-commits

From: Eray Aslan <eras@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/kstart/
Date: Tue, 31 Aug 2021 15:17:33
Message-Id: 1630423045.569f3195b2895a0cd5e098570942c5c0fb25653c.eras@gentoo
1 commit: 569f3195b2895a0cd5e098570942c5c0fb25653c
2 Author: Eray Aslan <eras <AT> gentoo <DOT> org>
3 AuthorDate: Tue Aug 31 15:16:25 2021 +0000
4 Commit: Eray Aslan <eras <AT> gentoo <DOT> org>
5 CommitDate: Tue Aug 31 15:17:25 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=569f3195
7
8 app-crypt/kstart: bump to 4.3
9
10 Package-Manager: Portage-3.0.22, Repoman-3.0.3
11 Signed-off-by: Eray Aslan <eras <AT> gentoo.org>
12
13 app-crypt/kstart/Manifest | 1 +
14 app-crypt/kstart/kstart-4.3.ebuild | 31 +++++++++++++++++++++++++++++++
15 2 files changed, 32 insertions(+)
16
17 diff --git a/app-crypt/kstart/Manifest b/app-crypt/kstart/Manifest
18 index f8f3f991b59..9389eea0c32 100644
19 --- a/app-crypt/kstart/Manifest
20 +++ b/app-crypt/kstart/Manifest
21 @@ -1 +1,2 @@
22 DIST kstart-4.2.tar.gz 296651 BLAKE2B 127bf28ef538681d188ae79ed67cedaa7d9022c1fe6741b3486ce7d5901c4a77d0aec7d00164240a79ffc70b56dd7fdeaf42e76dd2b02effe79bcad41ad8e271 SHA512 7ce9c1f964c0d469b4b8a5de88ae83186e99116959941c4e7f69c59165d0c22aac432ac26dd5fe54f7c2f725048bb55b787107aea8408e2fd6c9ad02dcb31552
23 +DIST kstart-4.3.tar.gz 324005 BLAKE2B eb8a115e114f62ac93a84fcacd427cb0cb56241973747bb841d2263d6333ea670b5beb1421d6beca0366b8a444e7d24910fde1329c4a35a34190d9bf9e22b17d SHA512 a5d5e6f7428af82012d2935a05398336cfd7caf66243cce158930e7a9b79f444cf88f5f23ecbc2efe2432493440ef913f60f85820d5d9943687637935eee97fd
24
25 diff --git a/app-crypt/kstart/kstart-4.3.ebuild b/app-crypt/kstart/kstart-4.3.ebuild
26 new file mode 100644
27 index 00000000000..673a633213c
28 --- /dev/null
29 +++ b/app-crypt/kstart/kstart-4.3.ebuild
30 @@ -0,0 +1,31 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +DESCRIPTION="Modified versions of kinit for refreshing kerberos tickets automatically"
37 +HOMEPAGE="https://www.eyrie.org/~eagle/software/kstart/"
38 +SRC_URI="https://archives.eyrie.org/software/kerberos/${P}.tar.gz"
39 +
40 +LICENSE="|| ( MIT Stanford ISC )"
41 +SLOT="0"
42 +KEYWORDS="~amd64 ~x86"
43 +IUSE="afs"
44 +
45 +DEPEND="virtual/krb5
46 + sys-apps/keyutils
47 + afs? ( net-fs/openafs )"
48 +RDEPEND="${DEPEND}"
49 +
50 +src_configure() {
51 + econf \
52 + --enable-reduced-depends \
53 + --with-libkeyutils \
54 + "$(use_with afs)" \
55 + "$(use_enable afs setpag)"
56 +}
57 +
58 +src_install() {
59 + emake DESTDIR="${D}" install
60 + dodoc README NEWS TODO examples/*
61 +}