blob: 78992e30caba131c4fa004e5550b75568ca8e39d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-fs/chironfs/chironfs-1.1.1.ebuild,v 1.2 2009/06/24 07:42:53 dragonheart Exp $
DESCRIPTION="Chiron FS - A FUSE based replication filesystem"
SRC_URI="http://chironfs.googlecode.com/files/${P}.tar.gz"
HOMEPAGE="http://www.furquim.org/chironfs/"
LICENSE="GPL-2"
KEYWORDS="~x86 ~amd64"
SLOT="0"
RDEPEND=""
IUSE=""
DEPEND="sys-fs/fuse"
src_install() {
emake DESTDIR="${D}" install || die 'install failure'
mv "${D}"/usr/share/doc/${PN} "${D}"/usr/share/doc/${P}
}
|