summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRenat Lumpau <rl03@gentoo.org>2007-05-26 22:34:15 +0000
committerRenat Lumpau <rl03@gentoo.org>2007-05-26 22:34:15 +0000
commitf39f29c3f3bb1197312ec7fcc04c53c8e02d90c6 (patch)
tree85220a11e28069b193d19785801a90e3738e8206 /www-misc/htdig
parentVersion bump, fixes #179612, #175618, #175840. (diff)
downloadgentoo-2-f39f29c3f3bb1197312ec7fcc04c53c8e02d90c6.tar.gz
gentoo-2-f39f29c3f3bb1197312ec7fcc04c53c8e02d90c6.tar.bz2
gentoo-2-f39f29c3f3bb1197312ec7fcc04c53c8e02d90c6.zip
Fix bug 177278
(Portage version: 2.1.2.8)
Diffstat (limited to 'www-misc/htdig')
-rw-r--r--www-misc/htdig/ChangeLog5
-rw-r--r--www-misc/htdig/htdig-3.2.0_beta6-r2.ebuild11
2 files changed, 11 insertions, 5 deletions
diff --git a/www-misc/htdig/ChangeLog b/www-misc/htdig/ChangeLog
index adf84279bce6..6a5686058987 100644
--- a/www-misc/htdig/ChangeLog
+++ b/www-misc/htdig/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for www-misc/htdig
# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-misc/htdig/ChangeLog,v 1.26 2007/05/25 12:12:25 yoswink Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-misc/htdig/ChangeLog,v 1.27 2007/05/26 22:34:15 rl03 Exp $
+
+ 26 May 2007; Renat Lumpau <rl03@gentoo.org> htdig-3.2.0_beta6-r2.ebuild:
+ Fix bug 177278
25 May 2007; Jose Luis Rivero <yoswink@gentoo.org>
htdig-3.2.0_beta6-r2.ebuild:
diff --git a/www-misc/htdig/htdig-3.2.0_beta6-r2.ebuild b/www-misc/htdig/htdig-3.2.0_beta6-r2.ebuild
index 00a8c00ead60..9d9903442ad1 100644
--- a/www-misc/htdig/htdig-3.2.0_beta6-r2.ebuild
+++ b/www-misc/htdig/htdig-3.2.0_beta6-r2.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-misc/htdig/htdig-3.2.0_beta6-r2.ebuild,v 1.6 2007/05/25 12:12:25 yoswink Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-misc/htdig/htdig-3.2.0_beta6-r2.ebuild,v 1.7 2007/05/26 22:34:15 rl03 Exp $
inherit eutils autotools
@@ -30,14 +30,17 @@ src_unpack() {
}
src_compile() {
- econf $(use_with ssl) \
+ local conf="
--with-config-dir=/etc/${PN} \
--with-default-config-file=/etc/${PN}/${PN}.conf \
--with-database-dir=/var/lib/${PN}/db \
--with-cgi-bin-dir=/var/www/localhost/cgi-bin \
--with-search-dir=/var/www/localhost/htdocs/${PN} \
- --with-image-dir=/var/www/localhost/htdocs/${PN} \
- || die "configure failed"
+ --with-image-dir=/var/www/localhost/htdocs/${PN}
+ "
+ use ssl && conf="${conf} --with-ssl"
+
+ econf ${conf} || die "configure failed"
# --with-image-url-prefix=file:///var/www/localhost/htdocs/${PN} \