diff options
author | Sven Wegener <swegener@gentoo.org> | 2007-03-24 21:31:57 +0000 |
---|---|---|
committer | Sven Wegener <swegener@gentoo.org> | 2007-03-24 21:31:57 +0000 |
commit | 83a5140521a9b93511c1dc76f2feae19f1225582 (patch) | |
tree | b333d5e64b83e840cb6c2e91ce75741178d9f56e /net-irc | |
parent | Add new local USE flag for unrealircd. (diff) | |
download | gentoo-2-83a5140521a9b93511c1dc76f2feae19f1225582.tar.gz gentoo-2-83a5140521a9b93511c1dc76f2feae19f1225582.tar.bz2 gentoo-2-83a5140521a9b93511c1dc76f2feae19f1225582.zip |
Add local USE flag for chanadmin and chanowner prefix support.
(Portage version: 2.1.2.2)
Diffstat (limited to 'net-irc')
-rw-r--r-- | net-irc/unrealircd/ChangeLog | 5 | ||||
-rw-r--r-- | net-irc/unrealircd/unrealircd-3.2.6.ebuild | 16 |
2 files changed, 12 insertions, 9 deletions
diff --git a/net-irc/unrealircd/ChangeLog b/net-irc/unrealircd/ChangeLog index 9c6810a489a7..5102bf5966e5 100644 --- a/net-irc/unrealircd/ChangeLog +++ b/net-irc/unrealircd/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-irc/unrealircd # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/unrealircd/ChangeLog,v 1.52 2007/03/19 13:37:25 gustavoz Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-irc/unrealircd/ChangeLog,v 1.53 2007/03/24 21:31:57 swegener Exp $ + + 24 Mar 2007; Sven Wegener <swegener@gentoo.org> unrealircd-3.2.6.ebuild: + Add local USE flag for chanadmin and chanowner prefix support. 19 Mar 2007; Gustavo Zacarias <gustavoz@gentoo.org> unrealircd-3.2.6.ebuild: diff --git a/net-irc/unrealircd/unrealircd-3.2.6.ebuild b/net-irc/unrealircd/unrealircd-3.2.6.ebuild index 0b5d0be8670a..1df8ba48550b 100644 --- a/net-irc/unrealircd/unrealircd-3.2.6.ebuild +++ b/net-irc/unrealircd/unrealircd-3.2.6.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/net-irc/unrealircd/unrealircd-3.2.6.ebuild,v 1.3 2007/03/19 13:37:25 gustavoz Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-irc/unrealircd/unrealircd-3.2.6.ebuild,v 1.4 2007/03/24 21:31:57 swegener Exp $ inherit eutils ssl-cert versionator multilib @@ -16,7 +16,7 @@ SRC_URI="http://unreal.brueggisite.de/${MY_P}.tar.gz SLOT="0" LICENSE="GPL-2" KEYWORDS="~amd64 ~ppc sparc x86 ~x86-fbsd" -IUSE="hub ipv6 ssl zlib curl" +IUSE="hub ipv6 ssl zlib curl prefixaq" RDEPEND="ssl? ( dev-libs/openssl ) zlib? ( sys-libs/zlib ) @@ -52,11 +52,12 @@ src_unpack() { src_compile() { local myconf="" - use curl && myconf="${myconf} --enable-libcurl=/usr" - use ipv6 && myconf="${myconf} --enable-inet6" - use zlib && myconf="${myconf} --enable-ziplinks" - use hub && myconf="${myconf} --enable-hub" - use ssl && myconf="${myconf} --enable-ssl" + use curl && myconf="${myconf} --enable-libcurl=/usr" + use ipv6 && myconf="${myconf} --enable-inet6" + use zlib && myconf="${myconf} --enable-ziplinks" + use hub && myconf="${myconf} --enable-hub" + use ssl && myconf="${myconf} --enable-ssl" + use prefixaq && myconf="${myconf} --enable-prefixaq" econf \ --with-listen=5 \ @@ -69,7 +70,6 @@ src_compile() { --with-permissions=0600 \ --with-fd-setsize=1024 \ --enable-dynamic-linking \ - --enable-prefixaq \ ${myconf} \ || die "econf failed" |