blob: 4a5a34be697536353fefedb41ed578197e44e8f3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-arch/par2cmdline/par2cmdline-0.4.ebuild,v 1.11 2008/01/02 17:05:30 grobian Exp $
DESCRIPTION="A PAR-2.0 file verification and repair tool"
HOMEPAGE="http://parchive.sourceforge.net/"
SRC_URI="mirror://sourceforge/parchive/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE=""
DEPEND=""
src_install() {
make install DESTDIR="${D}" || die
local DOCLIST="AUTHORS INSTALL ChangeLog NEWS PORTING README ROADMAP"
chmod -x ${DOCLIST}
dodoc ${DOCLIST}
}
|