diff options
Diffstat (limited to 'app-admin')
-rw-r--r-- | app-admin/aide/ChangeLog | 5 | ||||
-rw-r--r-- | app-admin/aide/aide-0.9.ebuild | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/app-admin/aide/ChangeLog b/app-admin/aide/ChangeLog index 93e2bac2881d..268715804552 100644 --- a/app-admin/aide/ChangeLog +++ b/app-admin/aide/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-admin/aide # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/aide/ChangeLog,v 1.15 2003/10/17 02:51:24 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/aide/ChangeLog,v 1.16 2003/12/14 12:56:16 mholzer Exp $ + + 14 Dec 2003; Martin Holzer <mholzer@gentoo.org> aide-0.9.ebuild: + more configure options with IUSE. closes #35700 16 Oct 2003; Aron Griffis <agriffis@gentoo.org> aide-0.9.ebuild: Stable on alpha diff --git a/app-admin/aide/aide-0.9.ebuild b/app-admin/aide/aide-0.9.ebuild index b795bf5ce4cd..bd2622b918a6 100644 --- a/app-admin/aide/aide-0.9.ebuild +++ b/app-admin/aide/aide-0.9.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2003 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.15 2003/11/14 21:21:06 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/aide/aide-0.9.ebuild,v 1.16 2003/12/14 12:56:16 mholzer Exp $ inherit eutils @@ -32,12 +32,12 @@ 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="--with-psql" + use postgres && myconf="$myconf --with-psql" + use crypt && myconf="$myconf --with-gcrypt" econf \ `use_with zlib` \ `use_with nls locale` \ - `use_with crypt gcrypt` \ --with-mhash \ --sysconfdir=/etc/aide \ --with-extra-lib=/usr/lib \ |