summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDane Smith <c1pher@gentoo.org>2011-05-08 19:08:56 +0000
committerDane Smith <c1pher@gentoo.org>2011-05-08 19:08:56 +0000
commit09e51d90cfd101038e3d27a597d8f0a5daa0aac8 (patch)
treed70cd23726fb7f970bec99d81b9dcf0baeb3d36b /net-irc
parentstable x86, bug 295613 (diff)
downloadgentoo-2-09e51d90cfd101038e3d27a597d8f0a5daa0aac8.tar.gz
gentoo-2-09e51d90cfd101038e3d27a597d8f0a5daa0aac8.tar.bz2
gentoo-2-09e51d90cfd101038e3d27a597d8f0a5daa0aac8.zip
net-irc/inspircd: Fix failure in configure if there are no USE flags set wrt bug 366233.
(Portage version: 2.1.9.42/cvs/Linux x86_64)
Diffstat (limited to 'net-irc')
-rw-r--r--net-irc/inspircd/ChangeLog5
-rw-r--r--net-irc/inspircd/inspircd-2.0.3.ebuild8
2 files changed, 8 insertions, 5 deletions
diff --git a/net-irc/inspircd/ChangeLog b/net-irc/inspircd/ChangeLog
index 2349c99a26f1..fb79b18c528c 100644
--- a/net-irc/inspircd/ChangeLog
+++ b/net-irc/inspircd/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for net-irc/inspircd
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/inspircd/ChangeLog,v 1.34 2011/05/03 11:45:27 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-irc/inspircd/ChangeLog,v 1.35 2011/05/08 19:08:56 c1pher Exp $
+
+ 08 May 2011; Dane Smith <c1pher@gentoo.org> inspircd-2.0.3.ebuild:
+ Apply patch from Chema wrt bug 366233. Fix typo. No revbump.
03 May 2011; Markos Chandras <hwoarang@gentoo.org> inspircd-2.0.3.ebuild:
Stable on amd64 wrt bug #364905
diff --git a/net-irc/inspircd/inspircd-2.0.3.ebuild b/net-irc/inspircd/inspircd-2.0.3.ebuild
index ea6d0cae3640..8196e9b55f97 100644
--- a/net-irc/inspircd/inspircd-2.0.3.ebuild
+++ b/net-irc/inspircd/inspircd-2.0.3.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/inspircd/inspircd-2.0.3.ebuild,v 1.3 2011/05/03 11:45:27 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-irc/inspircd/inspircd-2.0.3.ebuild,v 1.4 2011/05/08 19:08:56 c1pher Exp $
EAPI=2
inherit eutils multilib flag-o-matic
@@ -61,9 +61,9 @@ src_configure() {
# allow inspircd to be built by root
touch .force-root-ok || die
- [ ${extras} ] && ./configure --disable-interactive \
+ [ ${extras} ] && ( ./configure --disable-interactive \
--enable-extras=${extras} \
- || die "configure failed"
+ || die "configure failed" )
./configure \
$(use_enable openssl) \
@@ -108,7 +108,7 @@ src_install() {
pkg_postinst() {
elog "Before starting inspircd the first time you should create"
elog "the /etc/inspircd/inspircd.conf file."
- elog "You can find an expample configuration files under /etc/inspircd."
+ elog "You can find example configuration files under /etc/inspircd."
elog "Read the inspircd.conf.example file carefully before starting "
elog "the service."
elog