2021-04-03 22:42:04 +03:00
|
|
|
# Copyright 1999-2021 Gentoo Authors
|
2017-04-05 13:37:57 +03:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
|
|
|
EAPI=6
|
|
|
|
|
2021-04-03 22:42:04 +03:00
|
|
|
inherit autotools flag-o-matic
|
2017-04-05 13:37:57 +03:00
|
|
|
|
|
|
|
DESCRIPTION="Open Source File Integrity Checker and IDS"
|
|
|
|
HOMEPAGE="http://www.tripwire.org/"
|
|
|
|
SRC_URI="https://github.com/Tripwire/tripwire-open-source/archive/${PV}.tar.gz -> ${PF}.tar.gz"
|
|
|
|
|
|
|
|
LICENSE="GPL-2"
|
|
|
|
SLOT="0"
|
2019-10-12 18:52:35 +03:00
|
|
|
KEYWORDS="amd64 ppc x86"
|
2021-05-02 14:20:29 +03:00
|
|
|
IUSE="selinux ssl static +tools"
|
2017-04-05 13:37:57 +03:00
|
|
|
|
2019-01-07 21:20:36 +03:00
|
|
|
DEPEND="
|
2021-05-02 14:20:29 +03:00
|
|
|
ssl? ( dev-libs/openssl:0= )
|
2019-01-07 21:20:36 +03:00
|
|
|
"
|
|
|
|
RDEPEND="${DEPEND}
|
|
|
|
virtual/cron
|
2017-04-05 13:37:57 +03:00
|
|
|
virtual/mta
|
2017-04-19 12:47:55 +03:00
|
|
|
selinux? ( sec-policy/selinux-tripwire )
|
2019-01-07 21:20:36 +03:00
|
|
|
"
|
2017-04-05 13:37:57 +03:00
|
|
|
PDEPEND="tools? ( app-admin/mktwpol )"
|
|
|
|
|
|
|
|
S="${WORKDIR}/tripwire-open-source-${PV}"
|
|
|
|
|
|
|
|
src_prepare() {
|
2019-01-07 21:20:36 +03:00
|
|
|
default
|
2017-04-05 13:37:57 +03:00
|
|
|
eautoreconf
|
|
|
|
}
|
|
|
|
|
|
|
|
src_configure() {
|
|
|
|
# tripwire can be sensitive to compiler optimisation.
|
|
|
|
# see #32613, #45823, and others.
|
|
|
|
# -taviso@gentoo.org
|
|
|
|
strip-flags
|
|
|
|
append-cppflags -DCONFIG_DIR='"\"/etc/tripwire\""' -fno-strict-aliasing
|
|
|
|
econf $(use_enable ssl openssl) $(use_enable static)
|
|
|
|
}
|
|
|
|
|
|
|
|
src_install() {
|
|
|
|
dosbin "${S}"/bin/{siggen,tripwire,twadmin,twprint}
|
|
|
|
doman "${S}"/man/man{4/*.4,5/*.5,8/*.8}
|
|
|
|
dodir /etc/tripwire /var/lib/tripwire{,/report}
|
|
|
|
keepdir /var/lib/tripwire{,/report}
|
|
|
|
|
|
|
|
exeinto /etc/cron.daily
|
|
|
|
doexe "${FILESDIR}"/tripwire
|
|
|
|
|
|
|
|
dodoc ChangeLog policy/policyguide.txt TRADEMARK \
|
|
|
|
"${FILESDIR}"/tripwire.txt
|
|
|
|
|
|
|
|
insinto /etc/tripwire
|
|
|
|
doins "${FILESDIR}"/twcfg.txt policy/twpol-GENERIC.txt
|
|
|
|
|
|
|
|
fperms 750 /etc/cron.daily/tripwire
|
|
|
|
}
|
|
|
|
|
|
|
|
pkg_postinst() {
|
|
|
|
if [[ -z ${REPLACING_VERSIONS} ]] ; then
|
|
|
|
elog "Tripwire needs to be configured before its first run. You can"
|
|
|
|
elog "do this by manually editing the twpol-GENERIC.txt file shipped with"
|
|
|
|
elog "the package to suit your needs. A quickstart guide is provided"
|
|
|
|
elog "in tripwire.txt file to help you with this."
|
|
|
|
elog "To configure tripwire automatically, you can use the twsetup.sh"
|
|
|
|
elog "script provided by the app-admin/mktwpol package. This package is"
|
|
|
|
elog "installed for you by the \"tools\" USE flag (which is enabled by"
|
|
|
|
elog "default."
|
2021-04-03 22:42:04 +03:00
|
|
|
else
|
2017-04-05 13:37:57 +03:00
|
|
|
elog "Maintenance of tripwire policy files as packages are added"
|
|
|
|
elog "and deleted from your system can be automated by the mktwpol.sh"
|
|
|
|
elog "script provided by the app-admin/mktwpol package. This package"
|
|
|
|
elog "is installed for you if you append \"tools\" to your USE flags"
|
|
|
|
fi
|
|
|
|
}
|