diff options
author | Akinori Hattori <hattya@gentoo.org> | 2004-03-08 12:37:15 +0000 |
---|---|---|
committer | Akinori Hattori <hattya@gentoo.org> | 2004-03-08 12:37:15 +0000 |
commit | f552ed5d8c0099ba461f0f795fbad91429e0a524 (patch) | |
tree | c5a30418cfa89fc8b1f42cd575380d01a4b45afb /app-admin/pwcrypt/pwcrypt-1.2.2.ebuild | |
parent | more fixes (Manifest recommit) (diff) | |
download | gentoo-2-f552ed5d8c0099ba461f0f795fbad91429e0a524.tar.gz gentoo-2-f552ed5d8c0099ba461f0f795fbad91429e0a524.tar.bz2 gentoo-2-f552ed5d8c0099ba461f0f795fbad91429e0a524.zip |
Initial revision. Ebuild submitted by Greg Bowyer <bg115@gre.ac.uk> in bug #37701.
Diffstat (limited to 'app-admin/pwcrypt/pwcrypt-1.2.2.ebuild')
-rw-r--r-- | app-admin/pwcrypt/pwcrypt-1.2.2.ebuild | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/app-admin/pwcrypt/pwcrypt-1.2.2.ebuild b/app-admin/pwcrypt/pwcrypt-1.2.2.ebuild new file mode 100644 index 000000000000..71ca522e748b --- /dev/null +++ b/app-admin/pwcrypt/pwcrypt-1.2.2.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-admin/pwcrypt/pwcrypt-1.2.2.ebuild,v 1.1 2004/03/08 12:37:15 hattya Exp $ + +DESCRIPTION="An improved version of cli-crypt (encrypts data sent to it from the cli)" +HOMEPAGE="http://xjack.org/pwcrypt" +SRC_URI="http://xjack.org/pwcrypt/downloads/${P}.tar.gz" + +LICENSE="GPL-2" +KEYWORDS="~x86" +SLOT="0" + +DEPEND="virtual/glibc" + +src_compile() { + + econf || die + emake || die + +} + +src_install() { + + dobin src/pwcrypt + dodoc [A-Z][A-Z]* + +} |