summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaúl Porcel <armin76@gentoo.org>2007-12-19 17:49:25 +0000
committerRaúl Porcel <armin76@gentoo.org>2007-12-19 17:49:25 +0000
commitef4c9625ca7d13aec5b5b9de2e5a1a3c16ba990b (patch)
treee2f43c04399bc494c8870b6f193e3d85920ae092 /net-irc/znc
parentVersion bump. Prevent "pid X is not a child of this shell" message by shuttin... (diff)
downloadgentoo-2-ef4c9625ca7d13aec5b5b9de2e5a1a3c16ba990b.tar.gz
gentoo-2-ef4c9625ca7d13aec5b5b9de2e5a1a3c16ba990b.tar.bz2
gentoo-2-ef4c9625ca7d13aec5b5b9de2e5a1a3c16ba990b.zip
Version bump
(Portage version: 2.1.4_rc10)
Diffstat (limited to 'net-irc/znc')
-rw-r--r--net-irc/znc/ChangeLog7
-rw-r--r--net-irc/znc/files/digest-znc-0.0523
-rw-r--r--net-irc/znc/znc-0.052.ebuild42
3 files changed, 51 insertions, 1 deletions
diff --git a/net-irc/znc/ChangeLog b/net-irc/znc/ChangeLog
index e15c6163bc3a..b689f8d90a86 100644
--- a/net-irc/znc/ChangeLog
+++ b/net-irc/znc/ChangeLog
@@ -1,6 +1,11 @@
# 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.6 2007/11/04 14:16:50 angelos Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-irc/znc/ChangeLog,v 1.7 2007/12/19 17:49:24 armin76 Exp $
+
+*znc-0.052 (19 Dec 2007)
+
+ 19 Dec 2007; Raúl Porcel <armin76@gentoo.org> +znc-0.052.ebuild:
+ Version bump
04 Nov 2007; Christoph Mende <angelos@gentoo.org> znc-0.050.ebuild:
Stable on amd64 wrt bug #196760
diff --git a/net-irc/znc/files/digest-znc-0.052 b/net-irc/znc/files/digest-znc-0.052
new file mode 100644
index 000000000000..e9412e878c82
--- /dev/null
+++ b/net-irc/znc/files/digest-znc-0.052
@@ -0,0 +1,3 @@
+MD5 726046e3b44d811ededf4e850b5e0f06 znc-0.052.tar.gz 430736
+RMD160 6d399da8f3c36dc38d98e6e4eeb10debeb74a594 znc-0.052.tar.gz 430736
+SHA256 e817d5963cd9b9f74f776041dacfb4f1a0ef75a420f852ed3eec2a2cfdd5c6a6 znc-0.052.tar.gz 430736
diff --git a/net-irc/znc/znc-0.052.ebuild b/net-irc/znc/znc-0.052.ebuild
new file mode 100644
index 000000000000..08e26eb2a465
--- /dev/null
+++ b/net-irc/znc/znc-0.052.ebuild
@@ -0,0 +1,42 @@
+# 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.052.ebuild,v 1.1 2007/12/19 17:49:24 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_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."
+ 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
+}