summaryrefslogtreecommitdiff
blob: ab566371055f902358c3aae218ae738062cf807d (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
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$

EAPI=5

DESCRIPTION="Bash scripts to install tripwire and generate tripwire policy files"
HOMEPAGE="https://sourceforge.net/projects/mktwpol"
SRC_URI="mirror://sourceforge/mktwpol/${P}.tar.gz"

LICENSE="CC-BY-SA-3.0"
SLOT="0"
KEYWORDS="amd64 ppc x86 ~x86-fbsd"
IUSE=""

RDEPEND="app-admin/tripwire"

src_prepare() {
	sed -i -e 's|/usr/local|/usr|' Makefile || die
}

src_install() {
	emake DESTDIR="${D}" install
}

pkg_postinst() {
	elog
	elog "Installation and setup of tripwire ..."
	elog " - Run: \`twsetup.sh\`"
	elog
	elog "Maintenance of tripwire as packages are added and/or deleted ..."
	elog " - Run: \`mktwpol.sh -u\` to update tripwire policy and database"
	elog
	elog "Mktwpol is packaged with multiple policy-rules-generating files."
	elog "The default \"rules file\" is installed in /etc/tripwire"
	elog "Alternatives are installed in /usr/share/doc/${P}"
	elog "To use an alternative \"rules file\" ..."
	elog "copy it to /etc/tripwire, uncompress it, and \`touch\` it ..."
	elog
	elog "\`cp /usr/share/doc/${P}/mktwpol*.rules.bz2 /etc/tripwire\`"
	elog "\`bunzip2 /etc/tripwire/mktwpol*.rules.bz2\`"
	elog
	elog "mktwpol.sh uses the rules file with the most recent date."
	elog "Use \`touch\` to choose between multiple rules files."
	elog
}