blob: dd7b82b2a50173c501feebe19f5f7d91e3d7d0f4 (
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/tripwire/tripwire-2.3.1.2-r1.ebuild,v 1.11 2006/02/01 10:11:54 blubb Exp $
inherit eutils flag-o-matic
TW_VER="2.3.1-2"
DESCRIPTION="Open Source File Integrity Checker and IDS"
HOMEPAGE="http://www.tripwire.org/"
SRC_URI="mirror://sourceforge/tripwire/tripwire-${TW_VER}.tar.gz
http://non-us.debian.org/debian-non-US/pool/non-US/main/t/tripwire/tripwire_2.3.1.2-6.1.diff.gz
mirror://gentoo/twpol.txt.gz
mirror://gentoo/tripwire.gif"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 -alpha"
IUSE=""
DEPEND="virtual/libc
dev-util/patchutils
sys-devel/automake
dev-libs/openssl"
RDEPEND="virtual/libc
virtual/cron
virtual/mta
dev-libs/openssl"
S=${WORKDIR}/tripwire-${TW_VER}
src_unpack() {
# unpack tripwire source tarball
unpack tripwire-${TW_VER}.tar.gz
unpack twpol.txt.gz
cd ${S}
# some patches ive collected/made for tripwire
# mostly from mandrake, some from other sources
epatch ${FILESDIR}/tripwire-2.3.0-50-rfc822.patch
epatch ${FILESDIR}/tripwire-2.3.1-2-fhs.patch
epatch ${FILESDIR}/tripwire-2.3.1-2-gcc-3.3.patch
epatch ${FILESDIR}/tripwire-2.3.1-gcc3.patch
epatch ${FILESDIR}/tripwire-jbj.patch
epatch ${FILESDIR}/tripwire-mkstemp.patch
# pull out the interesting debian patches
filterdiff -i '*/man/man8/twadmin.8' -z --strip=1 \
${DISTDIR}/tripwire_2.3.1.2-6.1.diff.gz > ${T}/debian-patch.diff
epatch ${T}/debian-patch.diff
# cleanup ready for build
rm -rf ${S}/src/STLport*
touch ${S}/src/STLport_r ${S}/src/STLport_d
# security fix, http://www.securityfocus.com/archive/1/365036
epatch ${FILESDIR}/tripwire-format-string-email-report.diff
}
src_compile() {
cd ${S}/src
# tripwire can be sensitive to compiler optimisation.
# see #32613, #45823, and others.
# -taviso@gentoo.org
strip-flags
emake -j1 release RPM_OPT_FLAGS="${CXXFLAGS}" || die
}
src_install() {
dosbin ${S}/bin/*/{tripwire,twadmin,twprint} || die
for i in {4,5,8}
do
cd ${S}/man/man${i}
doman *.$i
cd ${S}
done
dodir /etc/tripwire
dodir /var/lib/tripwire/report
exeinto /etc/cron.daily
doexe ${FILESDIR}/tripwire.cron
dodoc README Release_Notes ChangeLog policy/policyguide.txt TRADEMARK \
${WORKDIR}/tripwire.gif ${FILESDIR}/tripwire.txt
insinto /etc/tripwire
doins ${WORKDIR}/twpol.txt ${FILESDIR}/twcfg.txt
exeinto /etc/tripwire
doexe ${FILESDIR}/twinstall.sh
fperms 755 /etc/tripwire/twinstall.sh /etc/cron.daily/tripwire.cron
}
pkg_postinst() {
einfo "After installing this package, you should run \"/etc/tripwire/twinstall.sh\""
einfo "to generate cryptographic keys, and \"tripwire --init\" to initialize the"
einfo "database Tripwire uses."
einfo
einfo "A quickstart guide is included with the documentation."
einfo
}
|