blob: 7e1fb4b3f927602c9f0c989b1f174f8a6eb113af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-fs/archfs/archfs-0.5.1.ebuild,v 1.1 2007/08/19 21:54:07 jokey Exp $
DESCRIPTION="Filesystem for rdiff-backup'ed folders"
HOMEPAGE="http://code.google.com/p/archfs"
SRC_URI="http://archfs.googlecode.com/files/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
DEPEND="sys-fs/fuse"
RDEPEND="${DEPEND}"
S=${WORKDIR}/${PN}
src_install() {
emake DESTDIR=${D} install || die "emake install failed"
}
|