diff options
Diffstat (limited to 'app-admin/passook/passook-1.0.0.ebuild')
-rw-r--r-- | app-admin/passook/passook-1.0.0.ebuild | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/app-admin/passook/passook-1.0.0.ebuild b/app-admin/passook/passook-1.0.0.ebuild new file mode 100644 index 000000000000..09000d8cf029 --- /dev/null +++ b/app-admin/passook/passook-1.0.0.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2002 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.1 2002/07/25 13:17:40 seemant Exp $ + +S=${WORKDIR} +DESCRIPTION="Password generator capable of generating pronounceable and/or secure passwords." +SRC_URI="ftp://mackers.com/pub/scripts/passook.tar.gz" +HOMEPAGE="http://mackers.com/misc/scripts/passook/" + +SLOT="0" +LICENSE="as-is" +KEYWORDS="x86" + +DEPEND="sys-devel/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 +} |