diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2004-01-21 06:45:10 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2004-01-21 06:45:10 +0000 |
commit | 8add58b1cb5ed932081aa0f12a5d81e99da60e3b (patch) | |
tree | 741bd4b716fa7803f0f6f5e30ae9629b33d86294 /app-crypt | |
parent | keywording -amd64 as it was meant to be, has broken with libXa still (Manifes... (diff) | |
download | gentoo-2-8add58b1cb5ed932081aa0f12a5d81e99da60e3b.tar.gz gentoo-2-8add58b1cb5ed932081aa0f12a5d81e99da60e3b.tar.bz2 gentoo-2-8add58b1cb5ed932081aa0f12a5d81e99da60e3b.zip |
initial commit, ebuild by Sven Wegener <sven.wegener@stealer.net>, bug #38108
Diffstat (limited to 'app-crypt')
-rw-r--r-- | app-crypt/shash/ChangeLog | 9 | ||||
-rw-r--r-- | app-crypt/shash/Manifest | 2 | ||||
-rw-r--r-- | app-crypt/shash/files/digest-shash-0.2.6 | 1 | ||||
-rw-r--r-- | app-crypt/shash/shash-0.2.6.ebuild | 22 |
4 files changed, 34 insertions, 0 deletions
diff --git a/app-crypt/shash/ChangeLog b/app-crypt/shash/ChangeLog new file mode 100644 index 000000000000..85a8900545a7 --- /dev/null +++ b/app-crypt/shash/ChangeLog @@ -0,0 +1,9 @@ +# ChangeLog for app-crypt/shash +# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-crypt/shash/ChangeLog,v 1.1 2004/01/21 06:45:10 robbat2 Exp $ + +*shash-0.2.6 (20 Jan 2004) + + 20 Jan 2004; Robin H. Johnson <robbat2@gentoo.org> shash-0.2.6.ebuild: + initial commit, ebuild by Sven Wegener <sven.wegener@stealer.net>, bug #38108 + diff --git a/app-crypt/shash/Manifest b/app-crypt/shash/Manifest new file mode 100644 index 000000000000..0fdfc031e86e --- /dev/null +++ b/app-crypt/shash/Manifest @@ -0,0 +1,2 @@ +MD5 cd0804f5ea4b04ab995e5a241bf6c30f shash-0.2.6.ebuild 624 +MD5 d49dfbc3613b62886594562719104b4a files/digest-shash-0.2.6 63 diff --git a/app-crypt/shash/files/digest-shash-0.2.6 b/app-crypt/shash/files/digest-shash-0.2.6 new file mode 100644 index 000000000000..b1befd302513 --- /dev/null +++ b/app-crypt/shash/files/digest-shash-0.2.6 @@ -0,0 +1 @@ +MD5 8f38ec66b989fa38275f5170e15241b4 shash-0.2.6.tar.gz 105641 diff --git a/app-crypt/shash/shash-0.2.6.ebuild b/app-crypt/shash/shash-0.2.6.ebuild new file mode 100644 index 000000000000..1446337ed514 --- /dev/null +++ b/app-crypt/shash/shash-0.2.6.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-crypt/shash/shash-0.2.6.ebuild,v 1.1 2004/01/21 06:45:10 robbat2 Exp $ + +DESCRIPTION="Generate or check digests or MACs of files" +HOMEPAGE="http://mcrypt.hellug.gr/${PN}/" +SRC_URI="ftp://mcrypt.hellug.gr/pub/mcrypt/${PN}/${P}.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" +IUSE="static" +DEPEND="virtual/glibc + >=app-crypt/mhash-0.8.18-r1" + +src_compile() { + econf `use_enable static static-link` || die "econf failed" + emake || die "emake failed" +} +src_install() { + make install DESTDIR=${D} || die "install failed" + dodoc AUTHORS COPYING ChangeLog INSTALL NEWS doc/sample.shashrc doc/FORMAT +} |