diff options
author | 2002-01-04 15:36:56 +0000 | |
---|---|---|
committer | 2002-01-04 15:36:56 +0000 | |
commit | 96d2c1ee3b987d686083b273a0837586c525a1af (patch) | |
tree | 9c32e4b99ad150e9f78f2db64483a28a399c7766 /app-admin | |
parent | Fixed out of imagedir /etc/gpm creation. Wrong installation for docs and (diff) | |
download | historical-96d2c1ee3b987d686083b273a0837586c525a1af.tar.gz historical-96d2c1ee3b987d686083b273a0837586c525a1af.tar.bz2 historical-96d2c1ee3b987d686083b273a0837586c525a1af.zip |
Initial commit of pwgen. It's a nice little password generator.
Diffstat (limited to 'app-admin')
-rw-r--r-- | app-admin/pwgen/files/digest-pwgen-2.01 | 1 | ||||
-rw-r--r-- | app-admin/pwgen/pwgen-2.01.ebuild | 30 |
2 files changed, 31 insertions, 0 deletions
diff --git a/app-admin/pwgen/files/digest-pwgen-2.01 b/app-admin/pwgen/files/digest-pwgen-2.01 new file mode 100644 index 000000000000..115275b1fb40 --- /dev/null +++ b/app-admin/pwgen/files/digest-pwgen-2.01 @@ -0,0 +1 @@ +MD5 2ba03d613abb179bae186101eb346610 pwgen-2.01.tar.gz 20480 diff --git a/app-admin/pwgen/pwgen-2.01.ebuild b/app-admin/pwgen/pwgen-2.01.ebuild new file mode 100644 index 000000000000..c91521eccfdf --- /dev/null +++ b/app-admin/pwgen/pwgen-2.01.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2001 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Maintainer: Damon Conway <kabau@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/app-admin/pwgen/pwgen-2.01.ebuild,v 1.1 2002/01/04 15:36:56 kabau Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="Password Generator" +SRC_URI="http://prdownloads.sourceforge.net/pwgen/${P}.tar.gz" +HOMEPAGE="http://sourceforge.net/projects/pwgen/" + +DEPEND="virtual/glibc" + +src_compile() { + # Fix the Makefile + cp Makefile.in Makefile.in.new + sed -e 's:$(prefix)/man/man1:$(mandir)/man1:g' Makefile.in.new > Makefile.in + + ./configure \ + --host=${CHOST} \ + --prefix=/usr \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man \ + --sysconfdir=/etc/pwgen || die "./configure failed" + + emake || die +} + +src_install () { + make DESTDIR=${D} install || die +} |