summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIlya Tumaykin <itumaykin@gmail.com>2017-05-23 20:41:24 +0300
committerMichał Górny <mgorny@gentoo.org>2017-05-27 22:59:29 +0200
commit524cbe18b25282426edbb300615096bc96aba09a (patch)
tree019aaf2c1b11899bf1da10632d930b2f86c8b854 /app-forensics/aide
parentapp-forensics/aide: add myself to maintainers via proxy-maint (diff)
downloadgentoo-524cbe18b25282426edbb300615096bc96aba09a.tar.gz
gentoo-524cbe18b25282426edbb300615096bc96aba09a.tar.bz2
gentoo-524cbe18b25282426edbb300615096bc96aba09a.zip
app-forensics/aide: remove old
Closes: https://github.com/gentoo/gentoo/pull/4735 Package-Manager: Portage-2.3.6, Repoman-2.3.2
Diffstat (limited to 'app-forensics/aide')
-rw-r--r--app-forensics/aide/Manifest1
-rw-r--r--app-forensics/aide/aide-0.15.1.ebuild114
-rw-r--r--app-forensics/aide/files/aide-0.15.1-gentoo.patch26
3 files changed, 0 insertions, 141 deletions
diff --git a/app-forensics/aide/Manifest b/app-forensics/aide/Manifest
index ed8aa2cff1c2..a586feab16c6 100644
--- a/app-forensics/aide/Manifest
+++ b/app-forensics/aide/Manifest
@@ -1,3 +1,2 @@
DIST aide-0.14.2.tar.gz 418098 SHA256 bf4cd417b0f4778b4f9a618d23e0b0b7db10349ba6a0129394dc82fbc2fa8b9b SHA512 4ef96078fde057a54dda467fb55711e30d947969873715a02052362c57112f5bfd3155460ef353f70ce69fea3a3c491b7925bebbdb7034dbf618c63c360347df WHIRLPOOL fa91e4493bcac4cf11a8fedfd5e3c490752936f9ea04871d812b831f33089b694892e32ed19cef273926d3a8c091fb15a7b98a5e5303f08609f164773475d142
-DIST aide-0.15.1.tar.gz 424970 SHA256 303e5c186257df8c86e418193199f4ea2183fc37d3d4a9098a614f61346059ef SHA512 6afe327474858c697ba017b02bd40717c33874e69b801c171c2496ff9042b557e840bef4a151bda0e4d835ddb0d972b88790237a72f250525dc1fc6b8fa673e7 WHIRLPOOL 4c21221cfbaeff3aa00a3f22c4e31c1fffd3f00d112828540ab6ab94dd019086244de71e5d19d1120078acc7b81b9efa5a36d55937292f523bcb4e064830ba6a
DIST aide-0.16.tar.gz 391009 SHA256 a81c53a131c4fd130b169b3a26ac35386a2f6e1e014f12807524cc273ed97345 SHA512 29ad97756e3e2fb21dc332ed03b494a1c73e621266f8622ec80bdba23092a38ee975b97f3cff2330e4c16e64e2f672259eea9291ca706a4009e7399b4e14e6a7 WHIRLPOOL d9ecba06d8367ed2ef622ee6b3ccf6a0ed37bad52548063c5c153bd31b856ed8a3379e6057cc1d4aebd29473ded71e9190c8c17dbeaa65eec3365be1d43d5f46
diff --git a/app-forensics/aide/aide-0.15.1.ebuild b/app-forensics/aide/aide-0.15.1.ebuild
deleted file mode 100644
index 7a345f057d7b..000000000000
--- a/app-forensics/aide/aide-0.15.1.ebuild
+++ /dev/null
@@ -1,114 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="3"
-
-inherit autotools confutils eutils
-
-DESCRIPTION="AIDE (Advanced Intrusion Detection Environment) is a replacement for Tripwire"
-HOMEPAGE="http://aide.sourceforge.net/"
-SRC_URI="mirror://sourceforge/aide/${P}.tar.gz"
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="~amd64 ~x86"
-IUSE="acl audit curl mhash nls postgres prelink selinux static xattr zlib"
-
-CDEPEND="acl? ( virtual/acl )
- audit? ( sys-process/audit )
- curl? ( net-misc/curl )
- mhash? ( >=app-crypt/mhash-0.9.2 )
- !mhash? ( dev-libs/libgcrypt:0 )
- nls? ( virtual/libintl )
- postgres? ( dev-db/postgresql )
- prelink? ( sys-devel/prelink )
- selinux? (
- sys-libs/libselinux
- )
- xattr? ( sys-apps/attr )
- zlib? ( sys-libs/zlib )"
-
-RDEPEND="!static? ( ${CDEPEND} )
- selinux? ( sec-policy/selinux-aide )"
-
-DEPEND="${CDEPEND}
- nls? ( sys-devel/gettext )
- sys-devel/bison
- sys-devel/flex"
-
-pkg_setup() {
- confutils_use_conflict mhash postgres
- confutils_use_conflict static curl postgres
-}
-
-src_prepare() {
- epatch "${FILESDIR}/${PN}-0.15.1-gentoo.patch"
-
- # fix as-need issue, bug #271326
- epatch "${FILESDIR}/${PN}-0.14-as-needed.patch"
-
- # fix configure issue, bug #323187
- epatch "${FILESDIR}/${PN}-0.14-configure.patch"
-
- eautoreconf
-}
-
-src_configure() {
- econf \
- $(use_with acl posix-acl) \
- $(use_with audit) \
- $(use_with curl) \
- $(use_with !mhash gcrypt) \
- $(use_with mhash mhash) \
- $(use_with nls locale) \
- $(use_with postgres psql) \
- $(use_with prelink) \
- $(use_with selinux) \
- $(use_enable static) \
- $(use_with xattr) \
- $(use_with zlib) \
- --sysconfdir="${EPREFIX}/etc/aide" || die "econf failed"
-# $(use_with e2fsattrs) \
-}
-
-src_install() {
- emake DESTDIR="${D}" install install-man || die "emake install failed"
-
- keepdir /var/lib/aide || die
- fowners root:0 /var/lib/aide || die
- fperms 0755 /var/lib/aide || die
-
- keepdir /var/log/aide || die
-
- insinto /etc/aide
- doins "${FILESDIR}"/aide.conf || die
-
- dosbin "${FILESDIR}"/aideinit || die
-
- dodoc AUTHORS ChangeLog NEWS README Todo "${FILESDIR}"/aide.cron || die
- dohtml doc/manual.html || die
-}
-
-pkg_postinst() {
- elog
- elog "A sample configuration file has been installed as"
- elog "/etc/aide/aide.conf. Please edit to meet your needs."
- elog "Read the aide.conf(5) manual page for more information."
- elog "A helper script, aideinit, has been installed and can"
- elog "be used to make AIDE management easier. Please run"
- elog "aideinit --help for more information"
- elog
-
- if use postgres; then
- elog "Due to a bad assumption by aide, you must issue the following"
- elog "command after the database initialization (aide --init ...):"
- elog
- elog 'psql -c "update pg_index set indisunique=false from pg_class \\ '
- elog " where pg_class.relname='TABLE_pkey' and \ "
- elog ' pg_class.oid=pg_index.indexrelid" -h HOSTNAME -p PORT DBASE USER'
- elog
- elog "where TABLE, HOSTNAME, PORT, DBASE, and USER are the same as"
- elog "your aide.conf."
- elog
- fi
-}
diff --git a/app-forensics/aide/files/aide-0.15.1-gentoo.patch b/app-forensics/aide/files/aide-0.15.1-gentoo.patch
deleted file mode 100644
index 01c06f72387e..000000000000
--- a/app-forensics/aide/files/aide-0.15.1-gentoo.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-diff -Naur aide-0.15.1.orig//src/Makefile.am aide-0.15.1//src/Makefile.am
---- aide-0.15.1.orig//src/Makefile.am 2010-08-02 03:23:44.000000000 +0900
-+++ aide-0.15.1//src/Makefile.am 2010-10-28 01:22:49.897871135 +0900
-@@ -26,7 +26,7 @@
- LEX_OUTPUT_ROOT = lex.yy
-
- LDADD = -lm @CRYPTLIB@ @ACLLIB@ @SELINUXLIB@ @AUDITLIB@ @ATTRLIB@ @E2FSATTRSLIB@ @ELFLIB@
--AM_CFLAGS = @AIDE_DEFS@ -W -Wall -g
-+AM_CFLAGS = -DLOCALEDIR=\"$(localedir)\" @AIDE_DEFS@ -W -Wall -g
-
- CLEANFILES = conf_yacc.h conf_yacc.c conf_lex.c db_lex.c *~
-
-diff -Naur aide-0.15.1.orig//src/db.c aide-0.15.1//src/db.c
---- aide-0.15.1.orig//src/db.c 2010-08-09 02:39:31.000000000 +0900
-+++ aide-0.15.1//src/db.c 2010-10-28 01:22:12.930091842 +0900
-@@ -27,6 +27,10 @@
- #include "db_file.h"
- #include "db_disk.h"
-
-+#ifdef WITH_CURL
-+#include "fopen.h"
-+#endif
-+
- #ifdef WITH_PSQL
- #include "db_sql.h"
- #endif