diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-05-31 20:34:34 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-05-31 20:34:34 +0000 |
commit | f3b215f435c176f11070187f3f3016b5d7616050 (patch) | |
tree | b4c3b3ee658431734efbbb579f6ae19b6589c450 /app-crypt/shash | |
parent | add a few more KEYWORDS (diff) | |
download | historical-f3b215f435c176f11070187f3f3016b5d7616050.tar.gz historical-f3b215f435c176f11070187f3f3016b5d7616050.tar.bz2 historical-f3b215f435c176f11070187f3f3016b5d7616050.zip |
dont install stupid COPYING file
Diffstat (limited to 'app-crypt/shash')
-rw-r--r-- | app-crypt/shash/shash-0.2.6.ebuild | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/app-crypt/shash/shash-0.2.6.ebuild b/app-crypt/shash/shash-0.2.6.ebuild index 1446337ed514..4189f65bd0b8 100644 --- a/app-crypt/shash/shash-0.2.6.ebuild +++ b/app-crypt/shash/shash-0.2.6.ebuild @@ -1,22 +1,25 @@ # 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 $ +# $Header: /var/cvsroot/gentoo-x86/app-crypt/shash/shash-0.2.6.ebuild,v 1.2 2004/05/31 20:34:34 vapier 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" + >=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 + dodoc AUTHORS ChangeLog INSTALL NEWS doc/sample.shashrc doc/FORMAT } |