blob: f590d5143956a1ba0b9c2b241bcb6dde30329dba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/systrace/systrace-1.0-r3.ebuild,v 1.3 2003/06/21 21:19:41 drobbins Exp $
DESCRIPTION="Systrace userland binary"
HOMEPAGE="http://www.systrace.org"
SRC_URI="http://www.citi.umich.edu/u/provos/systrace/usr-systrace-2003-06-03.tar.gz
http://cvs.gentoo.org/~natey/systrace/patches/systrace.c-no_x11-1.0.patch.gz"
SLOT="0"
LICENSE="GPL-2"
PATCH1="systrace.c-no_x11-1.0.patch"
INCLUDE="/usr/include/linux/systrace.h"
S="${WORKDIR}/${P}"
KEYWORDS="x86 amd64"
IUSE="gtk"
DEPEND="gtk? ( =x11-libs/gtk+-1.2* =dev-libs/glib-1.2* )"
pkg_setup() {
if ! [ -f ${INCLUDE} ] ;
then
einfo
einfo "ERROR: It does not look like you have a systrace capable kernel. If"
einfo "this is incorrect, please copy /usr/src/linux/include/linux/systrace.h"
einfo "to /usr/include/linux/ and restart the build."
einfo
einfo "The latest systrace Linux kernel patches can be found at:"
einfo
einfo "http://www.citi.umich.edu/u/provos/systrace/linux.html"
einfo
exit 1
fi
}
src_compile() {
if [ "`use gtk`" ]
then
einfo
einfo "You are building systrace with gtk support; this version will not"
einfo "function without the sys-apps/gtk-systrace package installed. Please"
einfo "set the USE=\"-gtk\" to build the non-gui capable version of systrace."
einfo
sleep 7
./configure --host=${CHOST} || die
elif [ -z "`use gtk`" ]
then
einfo
einfo "You are building systrace without gtk support; please set USE=\"gtk\""
einfo "to build the gui capable version of systrace."
einfo
sleep 7
cd ${S}
epatch ../${PATCH1} || die
./configure --host=${CHOST} || die
fi
emake || die
}
src_install() {
dobin systrace
exeinto /usr/bin
doman systrace.1
}
|