blob: 19009890e0916f765ed62336436cac304d266fe6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/passook/passook-1.0.0.ebuild,v 1.10 2003/05/25 13:43:40 mholzer Exp $
S=${WORKDIR}
DESCRIPTION="Password generator capable of generating pronounceable and/or secure passwords."
SRC_URI="http://mackers.com/projects/${PN}/${PN}.tar.gz"
HOMEPAGE="http://mackers.com/misc/scripts/passook/"
IUSE=""
SLOT="0"
LICENSE="as-is"
KEYWORDS="x86 ppc sparc"
DEPEND="dev-lang/perl
sys-apps/grep
sys-apps/miscfiles"
src_unpack() {
unpack ${A}
cd ${S}
patch -p0 < ${FILESDIR}/passook.diff || die
}
src_install() {
dobin passook
dodoc README passook.cgi
}
|