summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaúl Porcel <armin76@gentoo.org>2008-01-21 11:06:34 +0000
committerRaúl Porcel <armin76@gentoo.org>2008-01-21 11:06:34 +0000
commit4c7e4d90737cf58641101ba0443a678c56279787 (patch)
tree20cb75c83c25f593618726d6cff1e2ed1948b822 /net-irc/znc
parentMask =dev-java/freemarker-2.3.11 (diff)
downloadgentoo-2-4c7e4d90737cf58641101ba0443a678c56279787.tar.gz
gentoo-2-4c7e4d90737cf58641101ba0443a678c56279787.tar.bz2
gentoo-2-4c7e4d90737cf58641101ba0443a678c56279787.zip
old
(Portage version: 2.1.3.19)
Diffstat (limited to 'net-irc/znc')
-rw-r--r--net-irc/znc/ChangeLog5
-rw-r--r--net-irc/znc/files/digest-znc-0.0503
-rw-r--r--net-irc/znc/znc-0.050.ebuild55
3 files changed, 4 insertions, 59 deletions
diff --git a/net-irc/znc/ChangeLog b/net-irc/znc/ChangeLog
index 3aadb193f16e..9e12421eb69e 100644
--- a/net-irc/znc/ChangeLog
+++ b/net-irc/znc/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for net-irc/znc
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/znc/ChangeLog,v 1.9 2008/01/20 19:12:21 angelos Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-irc/znc/ChangeLog,v 1.10 2008/01/21 11:06:33 armin76 Exp $
+
+ 21 Jan 2008; Raúl Porcel <armin76@gentoo.org> -znc-0.050.ebuild:
+ old
20 Jan 2008; Christoph Mende <angelos@gentoo.org> znc-0.052.ebuild:
Stable on amd64 wrt bug #206655
diff --git a/net-irc/znc/files/digest-znc-0.050 b/net-irc/znc/files/digest-znc-0.050
deleted file mode 100644
index 8dc47597463a..000000000000
--- a/net-irc/znc/files/digest-znc-0.050
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 8d8fa279150b6fd92b967dbfbf3f05c6 znc-0.050.tar.gz 427541
-RMD160 1fcacb459fee48e749eb8eb9a7aebc03dc4eb4c5 znc-0.050.tar.gz 427541
-SHA256 78314862c3f32c7572cdd0763048e8fd7d5d12cbf5cd27904a234edc0b2f83d1 znc-0.050.tar.gz 427541
diff --git a/net-irc/znc/znc-0.050.ebuild b/net-irc/znc/znc-0.050.ebuild
deleted file mode 100644
index 96a015e90b37..000000000000
--- a/net-irc/znc/znc-0.050.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.050.ebuild,v 1.3 2007/11/04 14:16:50 angelos 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
-}