blob: 3b599995888e5360b11a2be521657a42fed8c51e (
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
29
30
|
# Copyright 1999-2005 Gentoo Foundation
# 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.21 2005/09/09 17:35:55 metalgod Exp $
inherit eutils
S=${WORKDIR}
DESCRIPTION="Password generator capable of generating pronounceable and/or secure passwords."
SRC_URI="http://mackers.com/projects/passook/${PN}.tar.gz"
HOMEPAGE="http://mackers.com/misc/scripts/passook/"
IUSE=""
SLOT="0"
LICENSE="as-is"
KEYWORDS="amd64 ppc ppc-macos ppc64 sparc x86"
DEPEND="dev-lang/perl
sys-apps/grep
sys-apps/miscfiles"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/passook.diff
}
src_install() {
dobin passook
dodoc README passook.cgi
}
|