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-fs/btrfs-progs/btrfs-progs-9999.ebuild

47 lines
1.3 KiB

# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-fs/btrfs-progs/btrfs-progs-9999.ebuild,v 1.19 2012/04/09 13:04:05 lavajoe Exp $
EAPI=4
inherit git-2 toolchain-funcs
DESCRIPTION="Btrfs filesystem utilities"
# Homepage has been moved, perhaps temporarily, due to a breakin
#HOMEPAGE="http://btrfs.wiki.kernel.org/"
HOMEPAGE="http://btrfs.ipv5.de/"
SRC_URI=""
LICENSE="GPL-2"
SLOT="0"
KEYWORDS=""
IUSE=""
DEPEND="sys-libs/zlib
sys-apps/acl
sys-fs/e2fsprogs"
RDEPEND="${DEPEND}"
EGIT_REPO_URI="git://git.kernel.org/pub/scm/linux/kernel/git/mason/btrfs-progs.git
https://git.kernel.org/pub/scm/linux/kernel/git/mason/btrfs-progs.git"
src_prepare() {
# Fix hardcoded "gcc" and "make"
sed -i -e 's:gcc $(CFLAGS):$(CC) $(CFLAGS):' Makefile || die
sed -i -e 's:make:$(MAKE):' Makefile || die
}
src_compile() {
emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}"
}
src_install() {
emake DESTDIR="${D}" prefix=/usr bindir=/sbin mandir=/usr/share/man install
}
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!"
}