You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/app-arch/afio/afio-2.4.7.ebuild

39 lines
1.0 KiB

# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-arch/afio/afio-2.4.7.ebuild,v 1.22 2009/10/12 16:30:48 halcy0n Exp $
inherit eutils
DESCRIPTION="makes cpio-format archives and deals somewhat gracefully with input data corruption."
SRC_URI="http://www.ibiblio.org/pub/linux/system/backup/${P}.tgz"
HOMEPAGE="http://freshmeat.net/projects/afio/"
SLOT="0"
LICENSE="Artistic LGPL-2"
KEYWORDS="x86 ppc sparc"
IUSE=""
DEPEND="app-arch/gzip"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/Makefile.patch
}
src_compile() {
emake CFLAGS1="${CFLAGS}" || die "emake failed"
}
src_install() {
local i
dobin afio || die "dobin failed"
dodoc README SCRIPTS HISTORY INSTALLATION || die "dodoc failed"
for i in 1 2 3 4 5 ; do
insinto /usr/share/doc/${P}/script$i
doins script$i/* || die "doins failed (${i})"
done
doman afio.1 || die "doman failed"
}