diff options
author | Daniel Ahlberg <aliz@gentoo.org> | 2002-10-29 13:55:56 +0000 |
---|---|---|
committer | Daniel Ahlberg <aliz@gentoo.org> | 2002-10-29 13:55:56 +0000 |
commit | e7c8498a787d2bfa7ff36583533e875048fecd02 (patch) | |
tree | 91bd86f300f74d39359be1529e2ec46fbdcfb77d /app-admin/aide | |
parent | unstable profile version update (diff) | |
download | gentoo-2-e7c8498a787d2bfa7ff36583533e875048fecd02.tar.gz gentoo-2-e7c8498a787d2bfa7ff36583533e875048fecd02.tar.bz2 gentoo-2-e7c8498a787d2bfa7ff36583533e875048fecd02.zip |
Closes #9750.
Diffstat (limited to 'app-admin/aide')
-rw-r--r-- | app-admin/aide/ChangeLog | 5 | ||||
-rw-r--r-- | app-admin/aide/aide-0.9.ebuild | 9 | ||||
-rw-r--r-- | app-admin/aide/files/aide-0.9-gentoo.diff | 73 |
3 files changed, 85 insertions, 2 deletions
diff --git a/app-admin/aide/ChangeLog b/app-admin/aide/ChangeLog index 9c3d426f0ef6..41ae5152edb9 100644 --- a/app-admin/aide/ChangeLog +++ b/app-admin/aide/ChangeLog @@ -1,9 +1,12 @@ # ChangeLog for app-admin/aide # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/app-admin/aide/ChangeLog,v 1.5 2002/10/21 09:27:18 aliz Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/aide/ChangeLog,v 1.6 2002/10/29 13:55:56 aliz Exp $ *aide-0.9 (21 Oct 2002) + 29 Oct 2002; Daniel Ahlberg <aliz@gentoo.org> aide-0.9.ebuild : + Added patch to fix compilation. Found by Janos Milus <j.milus@chello.hu> in #9750. + 21 Oct 2002; Daniel Ahlberg <aliz@gentoo.org> : Version bump. Found by Joshua Brindle <jbrindle@snu.edu> in #5372. Also contains updates from Paul Belt <gaarde@yahoo.com> in #5372. diff --git a/app-admin/aide/aide-0.9.ebuild b/app-admin/aide/aide-0.9.ebuild index d2c41cb05874..bb2656f49556 100644 --- a/app-admin/aide/aide-0.9.ebuild +++ b/app-admin/aide/aide-0.9.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # 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.1 2002/10/21 09:27:18 aliz Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/aide/aide-0.9.ebuild,v 1.2 2002/10/29 13:55:56 aliz Exp $ IUSE="nls postgres zlib crypt" @@ -23,6 +23,13 @@ DEPEND="sys-apps/gzip RDEPEND="" +src_unpack() { + unpack ${A} + + cd ${S} + patch -p0 <${FILESDIR}/${PF}-gentoo.diff || die +} + src_compile() { local myconf diff --git a/app-admin/aide/files/aide-0.9-gentoo.diff b/app-admin/aide/files/aide-0.9-gentoo.diff new file mode 100644 index 000000000000..d423819abad9 --- /dev/null +++ b/app-admin/aide/files/aide-0.9-gentoo.diff @@ -0,0 +1,73 @@ +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" + |