157 lines
3.6 KiB
Bash
157 lines
3.6 KiB
Bash
# Copyright 1999-2012 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/sys-fs/zfs/zfs-0.6.0_rc9-r6.ebuild,v 1.5 2012/08/11 20:05:05 ryao Exp $
|
|
|
|
EAPI="4"
|
|
|
|
AT_M4DIR="config"
|
|
AUTOTOOLS_AUTORECONF="1"
|
|
AUTOTOOLS_IN_SOURCE_BUILD="1"
|
|
|
|
inherit bash-completion-r1 flag-o-matic linux-mod toolchain-funcs autotools-utils
|
|
|
|
if [ ${PV} == "9999" ] ; then
|
|
inherit git-2
|
|
EGIT_REPO_URI="git://github.com/zfsonlinux/${PN}.git"
|
|
else
|
|
inherit eutils versionator
|
|
MY_PV=$(replace_version_separator 3 '-')
|
|
SRC_URI="https://github.com/downloads/zfsonlinux/${PN}/${PN}-${MY_PV}.tar.gz"
|
|
S="${WORKDIR}/${PN}-${MY_PV}"
|
|
KEYWORDS="~amd64"
|
|
fi
|
|
|
|
DESCRIPTION="Native ZFS for Linux"
|
|
HOMEPAGE="http://zfsonlinux.org/"
|
|
|
|
LICENSE="BSD-2 CDDL MIT"
|
|
SLOT="0"
|
|
IUSE="custom-cflags debug dracut +rootfs test test-suite static-libs"
|
|
|
|
COMMON_DEPEND="
|
|
=sys-kernel/spl-${PV}*
|
|
sys-apps/util-linux[static-libs?]
|
|
sys-libs/zlib[static-libs(+)?]
|
|
"
|
|
DEPEND="${COMMON_DEPEND}
|
|
virtual/pkgconfig
|
|
"
|
|
|
|
RDEPEND="${COMMON_DEPEND}
|
|
!sys-fs/zfs-fuse
|
|
!prefix? ( sys-fs/udev )
|
|
test-suite? (
|
|
sys-apps/gawk
|
|
sys-apps/util-linux
|
|
sys-devel/bc
|
|
sys-block/parted
|
|
sys-fs/lsscsi
|
|
sys-fs/mdadm
|
|
sys-process/procps
|
|
virtual/modutils
|
|
)
|
|
rootfs? (
|
|
app-arch/cpio
|
|
app-misc/pax-utils
|
|
)
|
|
"
|
|
DEPEND+="
|
|
test? ( sys-fs/mdadm )
|
|
"
|
|
|
|
pkg_setup() {
|
|
CONFIG_CHECK="!DEBUG_LOCK_ALLOC
|
|
!PREEMPT
|
|
BLK_DEV_LOOP
|
|
EFI_PARTITION
|
|
MODULES
|
|
!PAX_KERNEXEC_PLUGIN_METHOD_OR
|
|
ZLIB_DEFLATE
|
|
ZLIB_INFLATE"
|
|
use rootfs && \
|
|
CONFIG_CHECK="${CONFIG_CHECK} BLK_DEV_INITRD
|
|
DEVTMPFS"
|
|
kernel_is ge 2 6 26 || die "Linux 2.6.26 or newer required"
|
|
check_extra_config
|
|
}
|
|
|
|
src_prepare() {
|
|
# Workaround for hard coded path
|
|
sed -i "s|/sbin/lsmod|/bin/lsmod|" scripts/common.sh.in || die
|
|
# Workaround rename
|
|
sed -i "s|/usr/bin/scsi-rescan|/usr/sbin/rescan-scsi-bus|" scripts/common.sh.in || die
|
|
|
|
if [ ${PV} != "9999" ]
|
|
then
|
|
# Fix build issues
|
|
epatch "${FILESDIR}/${P}-hardened-support.patch"
|
|
epatch "${FILESDIR}/${P}-hardened-3.3-and-later-support.patch"
|
|
epatch "${FILESDIR}/${P}-linux-3.5-support.patch"
|
|
epatch "${FILESDIR}/${P}-fix-32-bit-warnings.patch"
|
|
|
|
# Fix various deadlocks
|
|
epatch "${FILESDIR}/${P}-remove-pfmalloc-1-of-3.patch"
|
|
epatch "${FILESDIR}/${P}-remove-pfmalloc-2-of-3.patch"
|
|
epatch "${FILESDIR}/${P}-remove-pfmalloc-3-of-3.patch"
|
|
|
|
#Miscellaneous
|
|
epatch "${FILESDIR}/${P}-bsd-init.patch"
|
|
fi
|
|
|
|
autotools-utils_src_prepare
|
|
}
|
|
|
|
src_configure() {
|
|
use custom-cflags || strip-flags
|
|
set_arch_to_kernel
|
|
local myeconfargs=(
|
|
--bindir="${EPREFIX}/bin"
|
|
--sbindir="${EPREFIX}/sbin"
|
|
--with-config=all
|
|
--with-linux="${KV_DIR}"
|
|
--with-linux-obj="${KV_OUT_DIR}"
|
|
--with-udevdir="$($(tc-getPKG_CONFIG) --variable=udevdir udev)"
|
|
$(use_enable debug)
|
|
)
|
|
autotools-utils_src_configure
|
|
}
|
|
|
|
src_test() {
|
|
if [ $UID -ne 0 ]
|
|
then
|
|
ewarn "Cannot run make check tests with FEATURES=userpriv."
|
|
ewarn "Skipping make check tests."
|
|
else
|
|
autotools-utils_src_test
|
|
fi
|
|
}
|
|
|
|
src_install() {
|
|
autotools-utils_src_install
|
|
gen_usr_ldscript -a uutil nvpair zpool zfs
|
|
use dracut || rm -rf "${ED}usr/share/dracut"
|
|
use test-suite || rm -rf "${ED}usr/libexec"
|
|
|
|
if use rootfs
|
|
then
|
|
doinitd "${FILESDIR}/zfs-shutdown"
|
|
exeinto /usr/share/zfs
|
|
doexe "${FILESDIR}/linuxrc"
|
|
fi
|
|
|
|
newbashcomp "${FILESDIR}/bash-completion" zfs
|
|
|
|
}
|
|
|
|
pkg_postinst() {
|
|
linux-mod_pkg_postinst
|
|
|
|
use x86 && ewarn "32-bit kernels are unsupported by ZFSOnLinux upstream. Do not file bug reports."
|
|
|
|
[ -e "${EROOT}/etc/runlevels/boot/zfs" ] \
|
|
|| ewarn 'You should add zfs to the boot runlevel.'
|
|
|
|
use rootfs && ([ -e "${EROOT}/etc/runlevels/shutdown/zfs-shutdown" ] \
|
|
|| ewarn 'You should add zfs-shutdown to the shutdown runlevel.')
|
|
|
|
}
|