blob: 8cac4c499706f10f79f7f544cea312aa72d0baf0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-crypt/shash/shash-0.2.6-r1.ebuild,v 1.2 2004/10/17 10:04:59 dholm Exp $
inherit eutils
DESCRIPTION="Generate or check digests or MACs of files"
HOMEPAGE="http://mcrypt.hellug.gr/shash/"
SRC_URI="ftp://mcrypt.hellug.gr/pub/mcrypt/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~ppc"
IUSE="static"
RDEPEND="virtual/libc
>=app-crypt/mhash-0.8.18-r1"
DEPEND="${RDEPEND}
sys-devel/libtool
sys-devel/automake
sys-devel/autoconf
sys-apps/gawk"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/0.2.6-manpage-fixes.patch
}
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 ChangeLog INSTALL NEWS doc/sample.shashrc doc/FORMAT
insinto /usr/share/bash-completion
newins ${FILESDIR}/shash.bash-completion ${PN}
}
pkg_postinst() {
einfo
einfo "To enable bash command-line completion for ${PN}, execute"
einfo "the following command as root:"
einfo " ln -s /usr/share/bash-completion/${PN} /etc/bash_completion.d/"
einfo
}
|