summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Black <dragonheart@gentoo.org>2004-09-12 07:12:31 +0000
committerDaniel Black <dragonheart@gentoo.org>2004-09-12 07:12:31 +0000
commite767976cbf283b4277a96b579f972c3f3795bedc (patch)
tree11f397d2d7a4bedf04dbbaef604f69a414612c32
parentMoved app-admin/rkhunter to app-forensics/rkhunter (diff)
downloadhistorical-e767976cbf283b4277a96b579f972c3f3795bedc.tar.gz
historical-e767976cbf283b4277a96b579f972c3f3795bedc.tar.bz2
historical-e767976cbf283b4277a96b579f972c3f3795bedc.zip
app-admin/aide moved to app-forensics/aide
-rw-r--r--app-admin/aide/aide-0.10.ebuild58
-rw-r--r--app-admin/aide/aide-0.9.ebuild58
-rw-r--r--app-admin/aide/files/aide-0.10-gentoo.diff81
-rw-r--r--app-admin/aide/files/aide-0.9-gentoo.diff73
-rw-r--r--app-admin/aide/files/digest-aide-0.101
-rw-r--r--app-admin/aide/files/digest-aide-0.91
-rw-r--r--app-admin/aide/metadata.xml9
7 files changed, 0 insertions, 281 deletions
diff --git a/app-admin/aide/aide-0.10.ebuild b/app-admin/aide/aide-0.10.ebuild
deleted file mode 100644
index 59eee9f505ea..000000000000
--- a/app-admin/aide/aide-0.10.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/aide/aide-0.10.ebuild,v 1.5 2004/07/03 14:45:56 kloeri Exp $
-
-inherit 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="x86 ~ppc ~sparc alpha ~amd64"
-IUSE="nls postgres zlib crypt"
-
-DEPEND="app-arch/gzip
- sys-devel/bison
- sys-devel/flex
- app-crypt/mhash
- crypt? ( dev-libs/libgcrypt )
- postgres? ( dev-db/postgresql )
- zlib? ( sys-libs/zlib )"
-RDEPEND=""
-
-src_unpack() {
- unpack ${A}
- cd ${S}
- epatch ${FILESDIR}/${PF}-gentoo.diff
-}
-
-src_compile() {
- # passing --without-psql or --with-psql causes postgres to be enabled ...
- # it's a broken configure.in file ... so lets just work around it
- local myconf=""
- use postgres && myconf="$myconf --with-psql"
- use crypt && myconf="$myconf --with-gcrypt"
-
- econf \
- `use_with zlib` \
- `use_with nls locale` \
- --with-mhash \
- --sysconfdir=/etc/aide \
- --with-extra-lib=/usr/lib \
- ${myconf} \
- || die
- emake || die
-}
-
-src_install() {
- einstall || die
- use nls || rm -rf ${D}/usr/lib/locale
-
- insinto /etc/aide
- doins doc/aide.conf
-
- dodoc AUTHORS NEWS README
- dohtml doc/manual.html
-}
diff --git a/app-admin/aide/aide-0.9.ebuild b/app-admin/aide/aide-0.9.ebuild
deleted file mode 100644
index f712bcc1159e..000000000000
--- a/app-admin/aide/aide-0.9.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/aide/aide-0.9.ebuild,v 1.18 2004/06/24 21:22:23 agriffis Exp $
-
-inherit 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="x86 ppc sparc alpha"
-IUSE="nls postgres zlib crypt"
-
-DEPEND="app-arch/gzip
- sys-devel/bison
- sys-devel/flex
- app-crypt/mhash
- crypt? ( dev-libs/libgcrypt )
- postgres? ( dev-db/postgresql )
- zlib? ( sys-libs/zlib )"
-RDEPEND=""
-
-src_unpack() {
- unpack ${A}
- cd ${S}
- epatch ${FILESDIR}/${PF}-gentoo.diff
-}
-
-src_compile() {
- # passing --without-psql or --with-psql causes postgres to be enabled ...
- # it's a broken configure.in file ... so lets just work around it
- local myconf=""
- use postgres && myconf="$myconf --with-psql"
- use crypt && myconf="$myconf --with-gcrypt"
-
- econf \
- `use_with zlib` \
- `use_with nls locale` \
- --with-mhash \
- --sysconfdir=/etc/aide \
- --with-extra-lib=/usr/lib \
- ${myconf} \
- || die
- emake || die
-}
-
-src_install() {
- einstall || die
- use nls || rm -rf ${D}/usr/lib/locale
-
- insinto /etc/aide
- doins doc/aide.conf
-
- dodoc AUTHORS NEWS README
- dohtml doc/manual.html
-}
diff --git a/app-admin/aide/files/aide-0.10-gentoo.diff b/app-admin/aide/files/aide-0.10-gentoo.diff
deleted file mode 100644
index 4664df190c86..000000000000
--- a/app-admin/aide/files/aide-0.10-gentoo.diff
+++ /dev/null
@@ -1,81 +0,0 @@
-diff -Naur aide-0.10/src/commandconf.c aide-0.10.fixed/src/commandconf.c
---- aide-0.10/src/commandconf.c 2003-11-04 09:39:48.000000000 -0600
-+++ aide-0.10.fixed/src/commandconf.c 2004-09-11 09:37:44.143790160 -0500
-@@ -29,7 +29,7 @@
- #include "aide.h"
- #include "conf_lex.h"
- #include "conf_yacc.h"
--#include "db.h"
-+#include "../include/db.h"
- #include "db_config.h"
- #include "gen_list.h"
- #include "symboltable.h"
-@@ -224,7 +224,7 @@
- }
- /* FIXME This does not handle the case that @@end_config is on
- buffer boundary. */
-- if((tmp=strnstr(buf,"@@end_config",retval))!=NULL){
-+ if((conf->confmd != MHASH_FAILED) && ((tmp=strnstr(buf,"@@end_config",retval))!=NULL)){
- /* We have end of config don't feed the last line to mhash */
- mhash(conf->confmd,(void*)buf,tmp-buf);
- } else {
-diff -Naur aide-0.10/src/compare_db.c aide-0.10.fixed/src/compare_db.c
---- aide-0.10/src/compare_db.c 2003-11-04 09:39:48.000000000 -0600
-+++ aide-0.10.fixed/src/compare_db.c 2004-09-11 09:31:44.222506512 -0500
-@@ -30,7 +30,7 @@
- #include "gnu_regex.h"
- #include "gen_list.h"
- #include "list.h"
--#include "db.h"
-+#include "../include/db.h"
- #include "util.h"
- #include "commandconf.h"
- #include "gen_list.h"
-diff -Naur aide-0.10/src/conf_yacc.y aide-0.10.fixed/src/conf_yacc.y
---- aide-0.10/src/conf_yacc.y 2003-08-18 08:03:22.000000000 -0500
-+++ aide-0.10.fixed/src/conf_yacc.y 2004-09-11 09:31:44.223506360 -0500
-@@ -25,7 +25,7 @@
- #include <string.h>
- #include "list.h"
- #include "gen_list.h"
--#include "db.h"
-+#include "../include/db.h"
- #include "db_config.h"
- #include "symboltable.h"
- #include "commandconf.h"
-diff -Naur aide-0.10/src/db.c aide-0.10.fixed/src/db.c
---- aide-0.10/src/db.c 2003-11-04 09:13:06.000000000 -0600
-+++ aide-0.10.fixed/src/db.c 2004-09-11 09:31:44.224506208 -0500
-@@ -22,7 +22,7 @@
- #include <stdio.h>
- #include <stdlib.h>
- #include <errno.h>
--#include "db.h"
-+#include "../include/db.h"
- #include "db_file.h"
- #include "db_disk.h"
-
-diff -Naur aide-0.10/src/db_sql.c aide-0.10.fixed/src/db_sql.c
---- aide-0.10/src/db_sql.c 2003-01-16 04:37:34.000000000 -0600
-+++ aide-0.10.fixed/src/db_sql.c 2004-09-11 09:31:44.225506056 -0500
-@@ -31,7 +31,7 @@
- #include <string.h>
- #include <gcrypt.h>
- #include "base64.h"
--#include "db.h"
-+#include "../include/db.h"
-
- #include "db_sql.h"
- #include "db_config.h"
-diff -Naur aide-0.10/src/gen_list.c aide-0.10.fixed/src/gen_list.c
---- aide-0.10/src/gen_list.c 2003-11-04 09:39:48.000000000 -0600
-+++ aide-0.10.fixed/src/gen_list.c 2004-09-11 09:31:44.226505904 -0500
-@@ -38,7 +38,7 @@
- #include "list.h"
- #include "gen_list.h"
- #include "seltree.h"
--#include "db.h"
-+#include "../include/db.h"
- #include "db_config.h"
- #include "compare_db.h"
- #include "commandconf.h"
diff --git a/app-admin/aide/files/aide-0.9-gentoo.diff b/app-admin/aide/files/aide-0.9-gentoo.diff
deleted file mode 100644
index d423819abad9..000000000000
--- a/app-admin/aide/files/aide-0.9-gentoo.diff
+++ /dev/null
@@ -1,73 +0,0 @@
-diff -ru ./src/commandconf.c /var/tmp/portage/aide-0.9/work/aide-0.9/src/commandconf.c
---- src/commandconf.c 2002-05-29 08:04:27.000000000 +0000
-+++ src/commandconf.c 2002-10-29 13:44:29.000000000 +0000
-@@ -29,7 +29,7 @@
- #include "aide.h"
- #include "conf_lex.h"
- #include "conf_yacc.h"
--#include "db.h"
-+#include "../include/db.h"
- #include "db_config.h"
- #include "gen_list.h"
- #include "symboltable.h"
-diff -ru ./src/compare_db.c /var/tmp/portage/aide-0.9/work/aide-0.9/src/compare_db.c
---- src/compare_db.c 2002-05-30 09:42:46.000000000 +0000
-+++ src/compare_db.c 2002-10-29 13:44:29.000000000 +0000
-@@ -30,7 +30,7 @@
- #include "gnu_regex.h"
- #include "gen_list.h"
- #include "list.h"
--#include "db.h"
-+#include "../include/db.h"
- #include "util.h"
- #include "commandconf.h"
- #include "gen_list.h"
-diff -ru ./src/conf_yacc.y /var/tmp/portage/aide-0.9/work/aide-0.9/src/conf_yacc.y
---- src/conf_yacc.y 2002-05-29 08:04:27.000000000 +0000
-+++ src/conf_yacc.y 2002-10-29 13:46:11.000000000 +0000
-@@ -25,7 +25,7 @@
- #include <string.h>
- #include "list.h"
- #include "gen_list.h"
--#include "db.h"
-+#include "../include/db.h"
- #include "db_config.h"
- #include "symboltable.h"
- #include "commandconf.h"
-diff -ru ./src/db.c /var/tmp/portage/aide-0.9/work/aide-0.9/src/db.c
---- src/db.c 2002-05-29 08:04:27.000000000 +0000
-+++ src/db.c 2002-10-29 13:45:01.000000000 +0000
-@@ -22,7 +22,7 @@
- #include <stdio.h>
- #include <stdlib.h>
- #include <errno.h>
--#include "db.h"
-+#include "../include/db.h"
- #include "db_file.h"
- #include "db_disk.h"
-
-diff -ru ./src/db_sql.c /var/tmp/portage/aide-0.9/work/aide-0.9/src/db_sql.c
---- src/db_sql.c 2002-05-29 08:04:27.000000000 +0000
-+++ src/db_sql.c 2002-10-29 13:45:52.000000000 +0000
-@@ -31,7 +31,7 @@
- #include <string.h>
- #include <gcrypt.h>
- #include "base64.h"
--#include "db.h"
-+#include "../include/db.h"
-
- #include "db_sql.h"
- #include "db_config.h"
-diff -ru ./src/gen_list.c /var/tmp/portage/aide-0.9/work/aide-0.9/src/gen_list.c
---- src/gen_list.c 2002-05-30 09:53:52.000000000 +0000
-+++ src/gen_list.c 2002-10-29 13:44:29.000000000 +0000
-@@ -38,7 +38,7 @@
- #include "list.h"
- #include "gen_list.h"
- #include "seltree.h"
--#include "db.h"
-+#include "../include/db.h"
- #include "db_config.h"
- #include "compare_db.h"
- #include "commandconf.h"
-
diff --git a/app-admin/aide/files/digest-aide-0.10 b/app-admin/aide/files/digest-aide-0.10
deleted file mode 100644
index a875acd4cec5..000000000000
--- a/app-admin/aide/files/digest-aide-0.10
+++ /dev/null
@@ -1 +0,0 @@
-MD5 39eb7d21064cac7b409c45d038b86cd8 aide-0.10.tar.gz 234184
diff --git a/app-admin/aide/files/digest-aide-0.9 b/app-admin/aide/files/digest-aide-0.9
deleted file mode 100644
index 3a1ad78d9d33..000000000000
--- a/app-admin/aide/files/digest-aide-0.9
+++ /dev/null
@@ -1 +0,0 @@
-MD5 877b1f515a9e25afda75e06805d687fb aide-0.9.tar.gz 216096
diff --git a/app-admin/aide/metadata.xml b/app-admin/aide/metadata.xml
deleted file mode 100644
index d8b96be3c5cd..000000000000
--- a/app-admin/aide/metadata.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <herd>no-herd</herd>
- <maintainer>
- <email>bug-wranglers@gentoo.org</email>
- <description>This package lacks a primary herd or maintainer.</description>
- </maintainer>
-</pkgmetadata>