blob: 53938c3e6ee668e685f38a6db10cc55919466532 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-crypt/md5deep/md5deep-1.13.ebuild,v 1.4 2007/09/28 17:22:16 nixnut Exp $
inherit toolchain-funcs
DESCRIPTION="Expanded md5sum program with recursive and comparison options"
HOMEPAGE="http://md5deep.sourceforge.net/"
SRC_URI="mirror://sourceforge/md5deep/${P}.tar.gz"
LICENSE="public-domain"
SLOT="0"
KEYWORDS="amd64 ppc ~ppc-macos sparc ~x86"
IUSE=""
src_unpack() {
unpack ${A}
cd "${S}"
sed -i \
-e "/^CC /s:gcc:$(tc-getCC):" \
-e "/^CFLAGS /s:-O3:${CFLAGS}:" \
-e "/^LINK_OPT /s:$: ${LDFLAGS}:" \
Makefile \
|| die "sed failed"
}
src_compile() {
case ${CHOST} in
*-darwin*) BUILDTARGET="mac" ;;
*-linux*) BUILDTARGET="linux" ;;
# Let it fallback to general "unix" when not using linux exactly
*) BUILDTARGET="unix" ;;
esac
emake "${BUILDTARGET}" || die "emake failed"
}
src_install() {
emake install \
BIN="${D}/usr/bin" \
MAN="${D}/usr/share/man/man1" \
|| die "emake install failed"
dodoc CHANGES README
}
|