diff options
author | Sven Wegener <swegener@gentoo.org> | 2005-06-29 16:08:58 +0000 |
---|---|---|
committer | Sven Wegener <swegener@gentoo.org> | 2005-06-29 16:08:58 +0000 |
commit | 7001319e0f0db49a4b531e48c2ae238848d2d436 (patch) | |
tree | 315b9d76254904ff2a85bba023165dbf19a5f4a4 /net-irc/unrealircd | |
parent | marked stable (diff) | |
download | gentoo-2-7001319e0f0db49a4b531e48c2ae238848d2d436.tar.gz gentoo-2-7001319e0f0db49a4b531e48c2ae238848d2d436.tar.bz2 gentoo-2-7001319e0f0db49a4b531e48c2ae238848d2d436.zip |
Updated the curl check to also check for the ipv6 USE flag.
(Portage version: 2.0.51.22-r1)
Diffstat (limited to 'net-irc/unrealircd')
-rw-r--r-- | net-irc/unrealircd/ChangeLog | 6 | ||||
-rw-r--r-- | net-irc/unrealircd/unrealircd-3.2.3-r1.ebuild | 7 |
2 files changed, 9 insertions, 4 deletions
diff --git a/net-irc/unrealircd/ChangeLog b/net-irc/unrealircd/ChangeLog index 41a03cccae02..398edea327d6 100644 --- a/net-irc/unrealircd/ChangeLog +++ b/net-irc/unrealircd/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-irc/unrealircd # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/unrealircd/ChangeLog,v 1.33 2005/05/03 22:17:13 swegener Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-irc/unrealircd/ChangeLog,v 1.34 2005/06/29 16:08:58 swegener Exp $ + + 29 Jun 2005; Sven Wegener <swegener@gentoo.org> + unrealircd-3.2.3-r1.ebuild: + Updated the curl check to also check for the ipv6 USE flag. *unrealircd-3.2.3-r1 (03 May 2005) diff --git a/net-irc/unrealircd/unrealircd-3.2.3-r1.ebuild b/net-irc/unrealircd/unrealircd-3.2.3-r1.ebuild index d77ada295613..060519ada52e 100644 --- a/net-irc/unrealircd/unrealircd-3.2.3-r1.ebuild +++ b/net-irc/unrealircd/unrealircd-3.2.3-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/unrealircd/unrealircd-3.2.3-r1.ebuild,v 1.2 2005/05/09 09:14:02 swegener Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-irc/unrealircd/unrealircd-3.2.3-r1.ebuild,v 1.3 2005/06/29 16:08:58 swegener Exp $ inherit eutils ssl-cert versionator @@ -25,10 +25,11 @@ DEPEND="${RDEPEND} S="${WORKDIR}/Unreal$(get_version_component_range 1-2)" pkg_setup() { - if use curl && ! built_with_use net-misc/curl ares + if use curl && ( ! built_with_use net-misc/curl ares || built_with_use net-misc/curl ipv6 ) then eerror "You need net-misc/curl compiled with the ares USE flag to be able to use" - eerror "net-irc/unrealircd with the curl USE flag." + eerror "net-irc/unrealircd with the curl USE flag. Please note that ares support" + eerror "for net-misc/curl is incompatible with the ipv6 USE flag." die "need net-misc/curl with ares support" fi |