blob: 723228b9523c55f8333d57f2488da18be6720077 (
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-2004 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.7 2004/11/03 16:31:44 corsair 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"
IUSE=""
src_compile() {
emake CC="$(tc-getCC) $CFLAGS" || die
}
src_install() {
dobin hexdump || die
doman hexdump.1
dodoc README
dosym hexdump /usr/bin/hex
}
|