2013-02-27 15:47:27 +04:00
|
|
|
# Copyright 1999-2013 Gentoo Foundation
|
2012-03-14 10:22:29 +04:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
|
|
|
EAPI="2"
|
|
|
|
|
|
|
|
inherit autotools
|
|
|
|
|
2013-03-04 01:39:33 +04:00
|
|
|
DESCRIPTION="general-purpose stream-handling tool like UNIX dd"
|
2012-03-14 10:22:29 +04:00
|
|
|
HOMEPAGE="http://www.cons.org/cracauer/cstream.html"
|
|
|
|
SRC_URI="http://www.cons.org/cracauer/download/${P}.tar.gz"
|
|
|
|
|
|
|
|
LICENSE="MIT"
|
|
|
|
SLOT="0"
|
2013-02-28 16:08:16 +04:00
|
|
|
KEYWORDS="amd64 x86"
|
2012-03-14 10:22:29 +04:00
|
|
|
IUSE=""
|
|
|
|
|
|
|
|
src_prepare() {
|
|
|
|
eautoreconf
|
|
|
|
}
|
|
|
|
|
|
|
|
src_install() {
|
|
|
|
emake DESTDIR="${D}" install || die "emake install failed"
|
|
|
|
}
|