diff options
Diffstat (limited to 'sys-auth/kstart-krenew/kstart-krenew-3.10.ebuild')
-rw-r--r-- | sys-auth/kstart-krenew/kstart-krenew-3.10.ebuild | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/sys-auth/kstart-krenew/kstart-krenew-3.10.ebuild b/sys-auth/kstart-krenew/kstart-krenew-3.10.ebuild index 7b287c772..2b7d76efd 100644 --- a/sys-auth/kstart-krenew/kstart-krenew-3.10.ebuild +++ b/sys-auth/kstart-krenew/kstart-krenew-3.10.ebuild @@ -14,7 +14,7 @@ KEYWORDS="~amd64 ~x86" IUSE="afs kerberos krb4" DEPEND="afs? ( net-fs/openafs ) - kerberos? ( app-crypt/mit-krb5 )" + kerberos? ( virtual/krb5 )" RDEPEND="${DEPEND}" @@ -24,22 +24,23 @@ src_unpack() { unpack "${A}" cd "${S}" - epatch "${FILESDIR}"/kstart-"${PV}"-happy-tickets.patch + epatch "${FILESDIR}"/kstart-"${PV}"-happy-tickets.patch || die "could not configure" } src_compile() { econf \ $(use_enable krb4 k4start) \ $(use_with kerberos) \ - $(use_with afs aklog /usr/bin/aklog) + $(use_with afs aklog /usr/bin/aklog) || die "could not configure" emake || die "emake failed" } src_install() { - emake DESTDIR="${D}" install || die "could not install" dobin k5start krenew if use krb4; then dobin k4start + doman k4start.1 fi + doman k5start.1 krenew.1 dodoc README NEWS } |