# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ EAPI="6" DESCRIPTION="Statifier creates one file from dynamically linked executables and all its libraries." SRC_URI="http://sourceforge.net/projects/${PN}/files/${PN}/${PV}/${P}.tar.gz" HOMEPAGE="http://statifier.sourceforge.net/" KEYWORDS="~amd64 ~x86" SLOT="0" LICENSE="GPL-2" IUSE="" RDEPEND="app-shells/bash sys-apps/coreutils sys-apps/gawk" src_configure() { fperms 755 configure econf || die "econf failed" } src_compile() { MAKEOPTS="${MAKEOPTS} -j1" emake || die "emake failed" } src_install() { emake DESTDIR="${D}" install || die "emake install failed" dodoc AUTHORS ChangeLog FAQ NEWS README THANKS TODO || die "dodoc failed" }