diff options
author | Michael Hammer <mueli@gentoo.org> | 2008-05-31 10:15:19 +0000 |
---|---|---|
committer | Michael Hammer <mueli@gentoo.org> | 2008-05-31 10:15:19 +0000 |
commit | b30c6f7cdd24ebb8833317ad05944a4458575745 (patch) | |
tree | 4b9afb13897c0bbdc49c0b052a398d283307066e /app-crypt/kstart | |
parent | Version bump. (diff) | |
download | gentoo-2-b30c6f7cdd24ebb8833317ad05944a4458575745.tar.gz gentoo-2-b30c6f7cdd24ebb8833317ad05944a4458575745.tar.bz2 gentoo-2-b30c6f7cdd24ebb8833317ad05944a4458575745.zip |
Version Bump from 3.12 -> 3.13
(Portage version: 2.1.4.4)
Diffstat (limited to 'app-crypt/kstart')
-rw-r--r-- | app-crypt/kstart/ChangeLog | 7 | ||||
-rw-r--r-- | app-crypt/kstart/kstart-3.13.ebuild | 38 |
2 files changed, 44 insertions, 1 deletions
diff --git a/app-crypt/kstart/ChangeLog b/app-crypt/kstart/ChangeLog index c07df5333a9f..9be57295edc3 100644 --- a/app-crypt/kstart/ChangeLog +++ b/app-crypt/kstart/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-crypt/kstart # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/kstart/ChangeLog,v 1.1 2008/05/13 12:35:37 mueli Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-crypt/kstart/ChangeLog,v 1.2 2008/05/31 10:15:19 mueli Exp $ + +*kstart-3.13 (31 May 2008) + + 31 May 2008; Michael Hammer <mueli@gentoo.org> +kstart-3.13.ebuild: + Version Bump for kstart from 3.12 -> 3.13, should now work with heimdal *kstart-3.12 (13 May 2008) diff --git a/app-crypt/kstart/kstart-3.13.ebuild b/app-crypt/kstart/kstart-3.13.ebuild new file mode 100644 index 000000000000..277dcd927cc4 --- /dev/null +++ b/app-crypt/kstart/kstart-3.13.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-crypt/kstart/kstart-3.13.ebuild,v 1.1 2008/05/31 10:15:19 mueli Exp $ + +inherit eutils + +DESCRIPTION="Modified versions of kinit for automatic ticket refresh" +HOMEPAGE="http://www.eyrie.org/~eagle/software/kstart" +SRC_URI="http://archives.eyrie.org/software/kerberos/${P}.tar.gz" + +LICENSE="|| ( MIT Stanford ISC )" +SLOT="0" +KEYWORDS="~x86 ~amd64" +IUSE="afs" + +DEPEND="virtual/krb5" +RDEPEND="$DEPEND + afs? ( net-fs/openafs )" + +src_compile() { + myconf="--disable-k4start \ + --with-kerberos \ + $(use_with afs afs /usr/bin/aklog)" + econf $myconf || die "econf failed" + emake || die "emake failed" +} + +src_test() { + emake -j1 check \ + || die "Make test failed. See above for details." +} + +src_install() { + dobin k5start krenew + doman k5start.1 krenew.1 + dodoc README NEWS || die +} + |