blob: ae994f7f778e0cbdfd954a03f27d9bfc7333810f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-arch/cksfv/cksfv-1.3.3.ebuild,v 1.1 2005/02/06 09:13:45 vapier Exp $
inherit eutils
DESCRIPTION="SFV checksum utility (simple file verification)"
HOMEPAGE="http://www.modeemi.fi/~shd/foss/cksfv/"
SRC_URI="http://www.modeemi.fi/~shd/foss/cksfv/files/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 ppc sparc x86"
IUSE=""
DEPEND="virtual/libc"
src_test() {
make tests || die "make tests failed"
}
src_install() {
dobin src/cksfv || die
dodoc ChangeLog INSTALL README TODO
}
|