blob: f1c6e7b48ccfaaa48165345f68df7fc42ca55839 (
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-cluster/moosefs/moosefs-1.6.20-r2.ebuild,v 1.1 2011/08/02 08:47:31 ultrabug Exp $
EAPI=4
inherit eutils
MY_P="mfs-${PV}"
S="${WORKDIR}/${MY_P}"
DESCRIPTION="A filesystem for highly reliable petabyte storage"
HOMEPAGE="http://www.moosefs.org/"
SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="cgi +fuse static-libs"
RDEPEND="
cgi? ( dev-lang/python )
fuse? ( >=sys-fs/fuse-2.6 )"
DEPEND="${RDEPEND}"
pkg_setup() {
enewgroup mfs
enewuser mfs -1 -1 -1 mfs
}
src_prepare() {
# rename dist config files
sed -i 's@\.cfg\.dist@\.cfg@g' mfsdata/Makefile.in || die
}
src_configure() {
local myopts=""
use fuse || myopts="--disable-mfsmount"
econf \
--sysconfdir=/etc/mfs \
--with-default-user=mfs \
--with-default-group=mfs \
$(use_enable cgi mfscgi) \
$(use_enable cgi mfscgiserv) \
$(use_enable static-libs static) \
${myopts}
}
src_install() {
emake DESTDIR="${D}" install
newinitd "${FILESDIR}/mfs.initd" mfs
newconfd "${FILESDIR}/mfs.confd" mfs
if use cgi; then
newinitd "${FILESDIR}/mfscgiserver.initd" mfscgiserver
newconfd "${FILESDIR}/mfscgiserver.confd" mfscgiserver
fi
chown -R mfs:mfs "${D}/var/lib/mfs" || die
chmod 750 "${D}/var/lib/mfs" || die
}
|