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-process/crtools/crtools-0.4.ebuild

49 lines
1.0 KiB

# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-process/crtools/crtools-0.4.ebuild,v 1.1 2013/02/23 22:27:00 radhermit Exp $
EAPI=5
inherit eutils toolchain-funcs linux-info
DESCRIPTION="utility to checkpoint/restore a process tree"
HOMEPAGE="http://criu.org/"
SRC_URI="http://download.openvz.org/criu/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="dev-libs/protobuf-c"
DEPEND="${RDEPEND}
app-text/asciidoc
app-text/xmlto"
CONFIG_CHECK="~CHECKPOINT_RESTORE ~FHANDLE ~EVENTFD ~EPOLL ~INOTIFY_USER
~UNIX_DIAG ~INET_DIAG ~PACKET_DIAG"
RESTRICT="test"
src_prepare() {
epatch "${FILESDIR}"/${P}-flags.patch
}
src_compile() {
unset ARCH
emake CC="$(tc-getCC)" V=1 WERROR=0 all docs
}
src_test() {
# root privileges are required to dump all necessary info
if [[ ${EUID} -eq 0 ]] ; then
emake -j1 CC="$(tc-getCC)" V=1 WERROR=0 test
fi
}
src_install() {
dobin ${PN}
dodoc CREDITS README
doman Documentation/${PN}.1
}