# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=5 inherit eutils bash-completion-r1 scons-utils DESCRIPTION="An implementation of the ZFS filesystem for FUSE/Linux" HOMEPAGE="http://zfs-fuse.net/" SRC_URI="http://zfs-fuse.net/releases/${PV}/${P}.tar.bz2" LICENSE="CDDL" SLOT="0" KEYWORDS="" # sys-fs/zfs-fuse-0.6.9-r1 masked for removal in main tree IUSE="debug" RDEPEND=" dev-libs/libaio dev-libs/openssl sys-fs/fuse sys-libs/zlib" DEPEND="${RDEPEND} dev-util/scons sys-apps/acl sys-apps/attr" S=${WORKDIR}/${P}/src src_prepare() { sed -i \ -e '/LINKFLAGS/s:-s::' \ -e '/CCFLAGS/s:-s -O2::' \ SConstruct || die sed -i \ -e 's:../zdb/zdb:/usr/sbin/zdb:' \ cmd/ztest/ztest.c || die epatch "${FILESDIR}"/${P}-flags.patch } src_compile() { local _debug=0 use debug && _debug=2 escons debug=${_debug} } src_install() { escons \ install_dir="${D}/usr/sbin" \ man_dir="${D}/usr/share/man/man8" \ cfg_dir="${D}/etc/zfs" \ install || die insinto /etc/zfs doins ../contrib/zfsrc keepdir /var/{lock,run}/zfs fowners root.disk /var/{lock,run}/zfs doinitd "${FILESDIR}"/${PN} dodoc ../{BUGS,CHANGES,HACKING,README*,STATUS,TESTING,TODO} newbashcomp ../contrib/zfs_completion.bash ${PN} }