# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ inherit toolchain-funcs DESCRIPTION="Network motifs detection tool" HOMEPAGE="http://www.weizmann.ac.il/mcb/UriAlon/groupNetworkMotifSW.html" MY_PF="mfinder1.2_unix.tar.gz" SRC_URI="http://www.weizmann.ac.il/mcb/UriAlon/NetworkMotifsSW/mfinder/${MY_PF}" LICENSE="public domain" SLOT="0" KEYWORDS="~amd64" IUSE="" DEPEND="" RDEPEND="" S=${WORKDIR}/${PN}${PV} src_compile() { cd ${S} sed -i s/CC=gcc/CC=$(tc-getCC)/ Makefile sed -i s/CFLAGS=.*/CFLAGS="${CFLAGS} -DUNIX=1"/ Makefile make || die "make failed" } src_install() { cd ${S} dobin mfinder }