blob: bb86ff1f92f3e8d22cb0940cfd624b28a7b4cbb3 (
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
31
|
# Copyright 1999-2010 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.24 2010/04/12 18:17:04 gmsoft Exp $
EAPI="3"
inherit eutils prefix
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/"
LICENSE="as-is"
SLOT="0"
KEYWORDS="amd64 hppa ppc ppc64 sparc x86 ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos"
IUSE=""
DEPEND="dev-lang/perl
sys-apps/grep
sys-apps/miscfiles"
src_prepare() {
epatch "${FILESDIR}"/passook.patch
eprefixify passook
}
src_install() {
dobin passook || die "dobin failed"
dodoc README passook.cgi
}
|