diff options
author | 2004-10-28 16:05:56 +0000 | |
---|---|---|
committer | 2004-10-28 16:05:56 +0000 | |
commit | 4eaffafdd5dcec27cc908047507b919eedb7515d (patch) | |
tree | a503106abc507e1b3d1cc6e824d676a4a1a9993d /sys-apps/hexdump | |
parent | Removing package. (diff) | |
download | gentoo-2-4eaffafdd5dcec27cc908047507b919eedb7515d.tar.gz gentoo-2-4eaffafdd5dcec27cc908047507b919eedb7515d.tar.bz2 gentoo-2-4eaffafdd5dcec27cc908047507b919eedb7515d.zip |
use tc-getCC
Diffstat (limited to 'sys-apps/hexdump')
-rw-r--r-- | sys-apps/hexdump/hexdump-1.6.ebuild | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/sys-apps/hexdump/hexdump-1.6.ebuild b/sys-apps/hexdump/hexdump-1.6.ebuild index ec70591968d5..d8f85511c0a5 100644 --- a/sys-apps/hexdump/hexdump-1.6.ebuild +++ b/sys-apps/hexdump/hexdump-1.6.ebuild @@ -1,22 +1,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.5 2004/09/03 21:03:23 pvdabeel Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/hexdump/hexdump-1.6.ebuild,v 1.6 2004/10/28 16:05:56 vapier 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" IUSE="" -LICENSE="GPL-2" -KEYWORDS="x86 ppc hppa" src_compile() { - emake CC="$CC $CFLAGS" || die + emake CC="$(tc-getCC) $CFLAGS" || die } src_install() { - dobin hexdump + dobin hexdump || die doman hexdump.1 - dodoc COPYING README + dodoc README dosym hexdump /usr/bin/hex } |