You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/sys-cluster/moosefs/moosefs-1.6.25.ebuild

62 lines
1.4 KiB

# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-cluster/moosefs/moosefs-1.6.25.ebuild,v 1.1 2012/07/02 13:51:07 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="http://www.moosefs.org/tl_files/mfscode/${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
}