# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ EAPI=5 inherit toolchain-funcs DESCRIPTION="command line tool to manipulate the multicast routes of the Linux kernel" SRC_URI="http://www.cschill.de/smcroute/${P}.tgz" HOMEPAGE="http://www.cschill.de/smcroute/" KEYWORDS="amd64 x86" LICENSE="GPL-2" SLOT="0" DEPEND="" RDEPEND="" IUSE="" S="${WORKDIR}/${P}/src" src_prepare() { sed -i \ -e "/^CFLAGS=/ s:=.*:=${CFLAGS}:" \ Makefile tc-export CC } src_compile() { emake all } src_install() { default cd "${S}/.." dosbin bin/mcsender bin/smcroute doman doc/smcroute.8 dohtml doc/smcroute-man.html dodoc ChangeLog.txt }