1 |
# Copyright 1999-2009 Gentoo Foundation |
2 |
# Distributed under the terms of the GNU General Public License v2 |
3 |
# $Header: /var/cvsroot/gentoo-x86/sys-fs/chironfs/chironfs-1.1.1.ebuild,v 1.3 2009/12/21 14:30:19 ssuominen Exp $ |
4 |
|
5 |
EAPI=2 |
6 |
inherit autotools eutils |
7 |
|
8 |
DESCRIPTION="Chiron FS - A FUSE based replication filesystem" |
9 |
HOMEPAGE="http://www.furquim.org/chironfs/" |
10 |
SRC_URI="http://chironfs.googlecode.com/files/${P}.tar.gz" |
11 |
|
12 |
LICENSE="GPL-2" |
13 |
SLOT="0" |
14 |
KEYWORDS="~amd64 ~x86" |
15 |
IUSE="" |
16 |
|
17 |
DEPEND="sys-fs/fuse" |
18 |
|
19 |
src_prepare() { |
20 |
epatch "${FILESDIR}"/${P}-asneeded.patch |
21 |
eautoreconf |
22 |
} |
23 |
|
24 |
src_install() { |
25 |
emake DESTDIR="${D}" install || die |
26 |
mv "${D}"/usr/share/doc/${PN} "${D}"/usr/share/doc/${P} |
27 |
} |