blob: 338b3e34c2485abf07770c8b7e520fa1f3236999 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/zisofs-tools/zisofs-tools-1.0.4.ebuild,v 1.2 2002/12/08 10:13:20 pvdabeel Exp $
DESCRIPTION="User utilities for zisofs"
HOMEPAGE="http://www.kernel.org/pub/linux/utils/fs/zisofs/"
SRC_URI="http://www.kernel.org/pub/linux/utils/fs/zisofs/${P}.tar.bz2"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ~ppc"
DEPEND=">=sys-libs/zlib-1.1.4"
src_compile() {
econf
make || die
}
src_install() {
make INSTALLROOT=${D} install || die
dodoc CHANGES COPYING INSTALL README
}
|