diff options
author | Eray Aslan <eras@gentoo.org> | 2021-08-31 18:16:25 +0300 |
---|---|---|
committer | Eray Aslan <eras@gentoo.org> | 2021-08-31 18:17:25 +0300 |
commit | 569f3195b2895a0cd5e098570942c5c0fb25653c (patch) | |
tree | c618068e93ac21a0c8214903107328b8b49e3763 /app-crypt/kstart/kstart-4.3.ebuild | |
parent | net-misc/xmrig: 6.15.0 version bump (diff) | |
download | gentoo-569f3195b2895a0cd5e098570942c5c0fb25653c.tar.gz gentoo-569f3195b2895a0cd5e098570942c5c0fb25653c.tar.bz2 gentoo-569f3195b2895a0cd5e098570942c5c0fb25653c.zip |
app-crypt/kstart: bump to 4.3
Package-Manager: Portage-3.0.22, Repoman-3.0.3
Signed-off-by: Eray Aslan <eras@gentoo.org>
Diffstat (limited to 'app-crypt/kstart/kstart-4.3.ebuild')
-rw-r--r-- | app-crypt/kstart/kstart-4.3.ebuild | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/app-crypt/kstart/kstart-4.3.ebuild b/app-crypt/kstart/kstart-4.3.ebuild new file mode 100644 index 000000000000..673a633213c6 --- /dev/null +++ b/app-crypt/kstart/kstart-4.3.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Modified versions of kinit for refreshing kerberos tickets automatically" +HOMEPAGE="https://www.eyrie.org/~eagle/software/kstart/" +SRC_URI="https://archives.eyrie.org/software/kerberos/${P}.tar.gz" + +LICENSE="|| ( MIT Stanford ISC )" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="afs" + +DEPEND="virtual/krb5 + sys-apps/keyutils + afs? ( net-fs/openafs )" +RDEPEND="${DEPEND}" + +src_configure() { + econf \ + --enable-reduced-depends \ + --with-libkeyutils \ + "$(use_with afs)" \ + "$(use_enable afs setpag)" +} + +src_install() { + emake DESTDIR="${D}" install + dodoc README NEWS TODO examples/* +} |