summaryrefslogtreecommitdiff
path: root/sys-process/criu
diff options
context:
space:
mode:
authorGluzskiy Alexandr <sss123next@list.ru>2014-11-29 16:11:45 +0300
committerGluzskiy Alexandr <sss123next@list.ru>2014-11-29 16:11:45 +0300
commitdeffdcda966ac6a929c93439a18a981cd26770ce (patch)
tree13bbe07efc4d329e7b7858fd833776878f90ad57 /sys-process/criu
parent7971aea8a3e0dcc795db6573b605a0ee100a9058 (diff)
criu
Diffstat (limited to 'sys-process/criu')
-rw-r--r--sys-process/criu/criu-scm.ebuild47
-rw-r--r--sys-process/criu/files/criu-flags.patch55
-rw-r--r--sys-process/criu/files/criu-makefile.patch20
3 files changed, 122 insertions, 0 deletions
diff --git a/sys-process/criu/criu-scm.ebuild b/sys-process/criu/criu-scm.ebuild
new file mode 100644
index 0000000..7e6f0dd
--- /dev/null
+++ b/sys-process/criu/criu-scm.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/sys-process/criu/criu-1.3.1.ebuild,v 1.1 2014/11/08 03:34:18 radhermit Exp $
+
+EAPI=5
+
+inherit eutils toolchain-funcs linux-info flag-o-matic git-2
+
+DESCRIPTION="utility to checkpoint/restore a process tree"
+HOMEPAGE="http://criu.org/"
+EGIT_REPO_URI="git://git.criu.org/criu.git"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="dev-libs/protobuf-c"
+DEPEND="${RDEPEND}
+ app-text/asciidoc
+ app-text/xmlto"
+
+CONFIG_CHECK="~CHECKPOINT_RESTORE ~NAMESPACES ~PID_NS ~FHANDLE ~EVENTFD ~EPOLL ~INOTIFY_USER
+ ~IA32_EMULATION ~UNIX_DIAG ~INET_DIAG ~INET_UDP_DIAG ~PACKET_DIAG ~NETLINK_DIAG"
+
+RESTRICT="test"
+
+src_prepare() {
+ epatch "${FILESDIR}"/criu-flags.patch
+ epatch "${FILESDIR}"/criu-makefile.patch
+}
+
+src_compile() {
+ unset ARCH
+ emake CC="$(tc-getCC)" LD="$(tc-getLD)" 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() {
+ emake SYSCONFDIR="${EPREFIX}"/etc PREFIX="${EPREFIX}"/usr DESTDIR="${D}" install
+ dodoc CREDITS README
+}
diff --git a/sys-process/criu/files/criu-flags.patch b/sys-process/criu/files/criu-flags.patch
new file mode 100644
index 0000000..84f5037
--- /dev/null
+++ b/sys-process/criu/files/criu-flags.patch
@@ -0,0 +1,55 @@
+--- criu-1.3.1/Makefile
++++ criu-1.3.1/Makefile
+@@ -102,9 +102,6 @@
+
+ ifeq ($(DEBUG),1)
+ DEFINES += -DCR_DEBUG
+- CFLAGS += -O0 -ggdb3
+-else
+- CFLAGS += -O2
+ endif
+
+ ifeq ($(GMON),1)
+--- criu-1.3.1/test/zdtm/lib/Makefile
++++ criu-1.3.1/test/zdtm/lib/Makefile
+@@ -1,6 +1,6 @@
+ include ../Makefile.inc
+
+-CFLAGS = -g -O2 -Wall -Werror -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=0
++CFLAGS = -Wall -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=0
+ CFLAGS += $(USERCFLAGS)
+
+ LIBDIR = .
+--- criu-1.3.1/test/zdtm/live/static/Makefile
++++ criu-1.3.1/test/zdtm/live/static/Makefile
+@@ -3,7 +3,7 @@
+ LIBDIR = ../../lib
+ LIB = $(LIBDIR)/libzdtmtst.a
+ override CPPFLAGS += -I$(LIBDIR)
+-CFLAGS = -g -O2 -Wall -Werror -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=0
++CFLAGS = -Wall -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=0
+ CFLAGS += $(USERCFLAGS)
+
+ TST_NOFILE = \
+--- criu-1.3.1/test/zdtm/live/streaming/Makefile
++++ criu-1.3.1/test/zdtm/live/streaming/Makefile
+@@ -3,7 +3,7 @@
+ LIBDIR = ../../lib
+ LIB = $(LIBDIR)/libzdtmtst.a
+ override CPPFLAGS += -I$(LIBDIR)
+-CFLAGS = -g -O2 -Wall -Werror -fno-strict-aliasing
++CFLAGS = -Wall -fno-strict-aliasing
+ CFLAGS += $(USERCFLAGS)
+
+ TST_NOFILE = \
+--- criu-1.3.1/test/zdtm/live/transition/Makefile
++++ criu-1.3.1/test/zdtm/live/transition/Makefile
+@@ -3,7 +3,7 @@
+ LIBDIR = ../../lib
+ LIB = $(LIBDIR)/libzdtmtst.a
+ override CPPFLAGS += -I$(LIBDIR)
+-CFLAGS = -g -O2 -Wall -Werror
++CFLAGS = -Wall
+ CFLAGS += $(USERCFLAGS)
+
+ TST_NOFILE = \
diff --git a/sys-process/criu/files/criu-makefile.patch b/sys-process/criu/files/criu-makefile.patch
new file mode 100644
index 0000000..50781c1
--- /dev/null
+++ b/sys-process/criu/files/criu-makefile.patch
@@ -0,0 +1,20 @@
+--- criu-1.3.1/Makefile.inc
++++ criu-1.3.1/Makefile.inc
+@@ -15,15 +15,9 @@
+ SBINDIR := $(PREFIX)/sbin
+ MANDIR := $(PREFIX)/share/man
+ SYSTEMDUNITDIR := $(PREFIX)/lib/systemd/system/
+-LOGROTATEDIR := $(PREFIX)/etc/logrotate.d/
++LOGROTATEDIR := $(SYSCONFDIR)/etc/logrotate.d/
+ LIBDIR := $(PREFIX)/lib
+-# For recent Debian/Ubuntu with multiarch support
+-DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture \
+- -qDEB_HOST_MULTIARCH 2>/dev/null)
+-ifneq "$(DEB_HOST_MULTIARCH)" ""
+-LIBDIR := $(PREFIX)/lib/$(DEB_HOST_MULTIARCH)
+-# For most other systems
+-else ifeq "$(shell uname -m)" "x86_64"
++ifeq "$(shell uname -m)" "x86_64"
+ LIBDIR := $(PREFIX)/lib64
+ endif
+