summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaúl Porcel <armin76@gentoo.org>2007-10-25 13:01:53 +0000
committerRaúl Porcel <armin76@gentoo.org>2007-10-25 13:01:53 +0000
commita6a57e392c912c1223450f65770025a508e45b0f (patch)
tree8fdfe30515936014c86e2b5b247227308a9c0b43 /net-irc
parentold (diff)
downloadgentoo-2-a6a57e392c912c1223450f65770025a508e45b0f.tar.gz
gentoo-2-a6a57e392c912c1223450f65770025a508e45b0f.tar.bz2
gentoo-2-a6a57e392c912c1223450f65770025a508e45b0f.zip
old
(Portage version: 2.1.3.16)
Diffstat (limited to 'net-irc')
-rw-r--r--net-irc/znc/ChangeLog5
-rw-r--r--net-irc/znc/files/digest-znc-0.0473
-rw-r--r--net-irc/znc/znc-0.047.ebuild55
3 files changed, 4 insertions, 59 deletions
diff --git a/net-irc/znc/ChangeLog b/net-irc/znc/ChangeLog
index acfdba9d90f1..2b7597be7342 100644
--- a/net-irc/znc/ChangeLog
+++ b/net-irc/znc/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for net-irc/znc
# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/znc/ChangeLog,v 1.4 2007/10/23 22:09:54 cla Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-irc/znc/ChangeLog,v 1.5 2007/10/25 13:01:52 armin76 Exp $
+
+ 25 Oct 2007; Raúl Porcel <armin76@gentoo.org> -znc-0.047.ebuild:
+ old
23 Oct 2007; Dawid Węgliński <cla@gentoo.org> znc-0.050.ebuild:
Stable on x86 (bug #196760)
diff --git a/net-irc/znc/files/digest-znc-0.047 b/net-irc/znc/files/digest-znc-0.047
deleted file mode 100644
index 3c26561b82dc..000000000000
--- a/net-irc/znc/files/digest-znc-0.047
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 230e68947e1fea605de0fa21de10530f znc-0.047.tar.gz 414605
-RMD160 43476e1d6ef049c913efafd40a1401bcbeab0686 znc-0.047.tar.gz 414605
-SHA256 94cdb00d9f7f87f119efbd6737c7ead1b0bd42fd4cbb3f5b3513e7b868e327d9 znc-0.047.tar.gz 414605
diff --git a/net-irc/znc/znc-0.047.ebuild b/net-irc/znc/znc-0.047.ebuild
deleted file mode 100644
index f72f8204f425..000000000000
--- a/net-irc/znc/znc-0.047.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/znc/znc-0.047.ebuild,v 1.2 2007/04/20 11:27:41 armin76 Exp $
-
-inherit autotools
-
-DESCRIPTION="An advanced IRC Bouncer"
-HOMEPAGE="http://znc.sourceforge.net"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="debug ipv6 nomodules perl ssl"
-
-DEPEND="ssl? ( >=dev-libs/openssl-0.9.7d )
- perl? ( dev-lang/perl )"
-RDEPEND="${DEPEND}"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
-
- # Respect CFLAGS and don't strip
- sed -i -e "s/-Wall -s -O2 -fomit-frame-pointer/-Wall/g" \
- -e "s/CXXFLAGS=\"-D_GNU_SOURCE\"/CXXFLAGS=\"${CXXFLAGS} -D_GNU_SOURCE\"/g" \
- configure.in || die "sed failed"
-
- eautoreconf
-}
-
-src_compile() {
- econf \
- $(use_enable debug) \
- $(use_enable ipv6) \
- $(use_enable !nomodules modules) \
- $(use_enable perl) \
- $(use_enable ssl openssl) \
- || die "econf failed"
-
- emake || die "emake failed"
-}
-
-src_install() {
- emake install DESTDIR="${D}" || die "make install failed."
- dohtml docs/*.html || die "dohtml failed"
- dodoc AUTHORS znc.conf || die "dodoc failed"
-}
-
-pkg_postinst() {
- elog
- elog "Run 'znc --makeconf' as the user you want to run ZNC as"
- elog "to make a configuration file"
- elog
-}