# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ EAPI="2" inherit toolchain-funcs git DESCRIPTION="Btrfs filesystem utilities" HOMEPAGE="http://btrfs.wiki.kernel.org/" SRC_URI="" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="acl debug-utils" DEPEND="debug-utils? ( dev-python/matplotlib ) >=sys-apps/util-linux-2.16-r1 sys-libs/zlib acl? ( sys-apps/acl sys-fs/e2fsprogs )" RDEPEND="${DEPEND}" EGIT_REPO_URI="git://git.kernel.org/pub/scm/linux/kernel/git/mason/btrfs-progs-unstable.git" EGIT_BRANCH="master" src_compile() { emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" all btrfstune btrfs-image || die "building tools failed" if use acl; then emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" convert || die "building acl tools failed" fi } src_install() { into / dosbin btrfs-show dosbin btrfs-vol dosbin btrfsctl dosbin btrfsck dosbin btrfstune dosbin btrfs-image # fsck will segfault if invoked at boot, so do not make this link #dosym btrfsck /sbin/fsck.btrfs newsbin mkfs.btrfs mkbtrfs dosym mkbtrfs /sbin/mkfs.btrfs if use acl; then dosbin btrfs-convert else ewarn "Note: btrfs-convert not built/installed (requires acl USE flag)" fi if use debug-utils; then dosbin btrfs-debug-tree else ewarn "Note: btrfs-debug-tree not installed (requires debug-utils USE flag)" fi into /usr newbin bcp btrfs-bcp if use debug-utils; then newbin show-blocks btrfs-show-blocks else ewarn "Note: btrfs-show-blocks not installed (requires debug-utils USE flag)" fi dodoc INSTALL doman man/*.8.gz } pkg_postinst() { ewarn "WARNING: This version of btrfs-progs uses the latest unstable code," ewarn " and care should be taken that it is compatible with the" ewarn " version of btrfs in your kernel!" }