# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-util/efence/efence-2.4.11.ebuild,v 1.6 2005/01/20 22:39:39 gustavoz Exp $ inherit eutils versionator toolchain-funcs MY_P="${PN}_$(replace_all_version_separators '_')" S="${WORKDIR}/${PN}" DESCRIPTION="ElectricFence malloc() debugger" HOMEPAGE="http://www.pf-lug.de/projekte/haya/efence.php" SRC_URI="http://www.pf-lug.de/projekte/haya/${MY_P}.zip" LICENSE="GPL-2 LGPL-2.1" SLOT="0" KEYWORDS="x86 sparc" IUSE="" DEPEND="virtual/libc app-arch/unzip" RDEPEND="app-shells/bash" src_unpack() { unpack ${A} cd ${S} epatch ${FILESDIR}/${P}-gentoo.diff } src_compile() { emake CC=$(tc-getCC) || die "emake failed" } src_install() { make prefix="${D}/usr" install || die "make install failed" insinto /usr/include doins efence.h efencepp.h efence_config.h \ || die "failed to install headers" dodoc CHANGES README }