diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2003-03-25 22:50:12 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2003-03-25 22:50:12 +0000 |
commit | 46a8df1144cd3c3473d1406137ab52086ac230c4 (patch) | |
tree | 2acf07f0154d49f271d31faf3905be5c44861d1e /net-irc | |
parent | removed old ebuilds (diff) | |
download | gentoo-2-46a8df1144cd3c3473d1406137ab52086ac230c4.tar.gz gentoo-2-46a8df1144cd3c3473d1406137ab52086ac230c4.tar.bz2 gentoo-2-46a8df1144cd3c3473d1406137ab52086ac230c4.zip |
USE fix
Diffstat (limited to 'net-irc')
-rw-r--r-- | net-irc/unrealircd/ChangeLog | 5 | ||||
-rw-r--r-- | net-irc/unrealircd/unrealircd-3.1.5.1.ebuild | 13 |
2 files changed, 10 insertions, 8 deletions
diff --git a/net-irc/unrealircd/ChangeLog b/net-irc/unrealircd/ChangeLog index b82d03c9b65d..bdb734a49507 100644 --- a/net-irc/unrealircd/ChangeLog +++ b/net-irc/unrealircd/ChangeLog @@ -1,8 +1,11 @@ # ChangeLog for net-irc/unrealircd # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/unrealircd/ChangeLog,v 1.2 2003/02/12 08:05:00 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-irc/unrealircd/ChangeLog,v 1.3 2003/03/25 22:47:03 seemant Exp $ *unrealircd-3.1.5.1 (31 Jan 2003) + 25 Mar 2003; Seemant Kulleen <seemant@gentoo.org> unrealircd-3.1.5.1.ebuild: + openssl USE is actually ssl + 31 Jan 2003; Mike Frysinger <vapier@gentoo.org> : Initial import. Ebuild submitted by me. diff --git a/net-irc/unrealircd/unrealircd-3.1.5.1.ebuild b/net-irc/unrealircd/unrealircd-3.1.5.1.ebuild index d3903dc25080..ee16f757bcd1 100644 --- a/net-irc/unrealircd/unrealircd-3.1.5.1.ebuild +++ b/net-irc/unrealircd/unrealircd-3.1.5.1.ebuild @@ -1,24 +1,23 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/unrealircd/unrealircd-3.1.5.1.ebuild,v 1.2 2003/02/13 14:16:54 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-irc/unrealircd/unrealircd-3.1.5.1.ebuild,v 1.3 2003/03/25 22:47:03 seemant Exp $ -inherit eutils +IUSE="ssl" MY_P="Unreal${PV}" + +S=${WORKDIR}/${MY_P} DESCRIPTION="aimed to be an advanced, not an easy IRCd" HOMEPAGE="http://www.unrealircd.com/" SRC_URI="http://www.gower.net/unrealircd/${MY_P}-Valek.tar.gz ftp://unreal.secure-tech.net/${MY_P}-Valek.tar.gz" -LICENSE="GPL-2" SLOT="0" +LICENSE="GPL-2" KEYWORDS="~x86" -IUSE="openssl" -DEPEND="virtual/glibc - openssl? ( dev-libs/openssl )" +DEPEND="ssl? ( dev-libs/openssl )" -S=${WORKDIR}/${MY_P} src_unpack() { unpack ${A} && cd ${S} |