diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2003-02-13 05:52:33 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2003-02-13 05:52:33 +0000 |
commit | 080a3a5832332b2c9e1b7f1788d77ffd4e1d1020 (patch) | |
tree | 26596a18b059b84410e5cf07b74c549993711018 /app-crypt/johntheripper | |
parent | more fixes (diff) | |
download | gentoo-2-080a3a5832332b2c9e1b7f1788d77ffd4e1d1020.tar.gz gentoo-2-080a3a5832332b2c9e1b7f1788d77ffd4e1d1020.tar.bz2 gentoo-2-080a3a5832332b2c9e1b7f1788d77ffd4e1d1020.zip |
syntax cleanup
Diffstat (limited to 'app-crypt/johntheripper')
-rw-r--r-- | app-crypt/johntheripper/johntheripper-1.6.ebuild | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/app-crypt/johntheripper/johntheripper-1.6.ebuild b/app-crypt/johntheripper/johntheripper-1.6.ebuild index 7cd328b360ab..f740f12b65d6 100644 --- a/app-crypt/johntheripper/johntheripper-1.6.ebuild +++ b/app-crypt/johntheripper/johntheripper-1.6.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/johntheripper/johntheripper-1.6.ebuild,v 1.11 2003/02/13 05:46:09 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-crypt/johntheripper/johntheripper-1.6.ebuild,v 1.12 2003/02/13 05:52:33 seemant Exp $ inherit eutils @@ -43,8 +43,12 @@ src_install() { insinto /usr/share/${PN/theripper/} doins run/{all.chr,alpha.chr,digits.chr,lanman.chr,password.lst} \ debian/john-dailyscript - dodoc debian/{CONFIG.mailer,copyright} doc/* - doman debian/{john.1,mailer.1,unafs.1,unique.1,unshadow.1,john-cronjob.1} + doman debian/*.1 dosbin run/john debian/mailer debian/john-cronjob - (cd ${D}/usr/sbin; ln -s john unafs; ln -s john unique; ln -s john unshadow) + + dosym john /usr/sbin/unafs + dosym john /usr/sbin/unique + dosym john /usr/sbin/unshadow + + dodoc debian/{CONFIG.mailer,copyright} doc/* } |