blob: 18cf7a8cb36f71cc5a58d4b03ddac5770e5c7e63 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/hexdump/hexdump-1.6.ebuild,v 1.10 2005/01/22 21:26:34 luckyduck Exp $
inherit toolchain-funcs
DESCRIPTION="Eric Raymond's hex dumper"
HOMEPAGE="http://www.catb.org/~esr/hexdump/"
SRC_URI="http://www.catb.org/~esr/hexdump/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="hppa ppc x86 ppc64 ~ppc-macos ~amd64"
IUSE=""
src_compile() {
emake CC="$(tc-getCC) $CFLAGS" || die
}
src_install() {
dobin hexdump || die
doman hexdump.1
dodoc README
dosym hexdump /usr/bin/hex
}
|