# Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/sci-chemistry/probe/probe-2.12.071128-r1.ebuild,v 1.1 2010/07/06 13:30:24 jlec Exp $ EAPI="3" inherit eutils toolchain-funcs MY_P="${PN}.${PV}" DESCRIPTION="Evaluates atomic packing within or between molecules" HOMEPAGE="http://kinemage.biochem.duke.edu/software/probe.php" SRC_URI="http://kinemage.biochem.duke.edu/downloads/software/probe/${MY_P}.src.zip" LICENSE="richardson" SLOT="0" KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux" IUSE="" RDEPEND="" DEPEND="${RDEPEND} app-arch/unzip" S="${WORKDIR}/${MY_P}.scr" src_prepare() { epatch "${FILESDIR}"/as-needed.patch # Respect CC sed -i \ -e 's:cc:$(CC):g' \ "${S}"/Makefile || die } src_compile() { emake \ CC="$(tc-getCC)" \ CFLAGS="${CFLAGS}" \ MACHINEFLAGS="${LDFLAGS}" \ || die "make failed" } src_install() { dobin "${S}"/probe || die dodoc "${S}"/README* || die }