Note: Due to technical difficulties, the Archives are currently not up to date.
GMANE provides an alternative service for most mailing lists. c.f. bug 424647
List Archive: gentoo-commits
vostorga 09/07/17 15:41:09
Modified: ChangeLog
Added: znc-0.070.ebuild
Log:
Version bump to 0.070
(Portage version: 2.1.6.13/cvs/Linux i686)
Revision Changes Path
1.22 net-irc/znc/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-irc/znc/ChangeLog?rev=1.22&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-irc/znc/ChangeLog?rev=1.22&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-irc/znc/ChangeLog?r1=1.21&r2=1.22
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-irc/znc/ChangeLog,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- ChangeLog 25 Feb 2009 20:09:26 -0000 1.21
+++ ChangeLog 17 Jul 2009 15:41:09 -0000 1.22
@@ -1,6 +1,11 @@
# ChangeLog for net-irc/znc
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/znc/ChangeLog,v 1.21 2009/02/25 20:09:26 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-irc/znc/ChangeLog,v 1.22 2009/07/17 15:41:09 vostorga Exp $
+
+*znc-0.070 (17 Jul 2009)
+
+ 17 Jul 2009; VĂctor Ostorga <vostorga@g.o> +znc-0.070.ebuild:
+ Version bump
25 Feb 2009; Markus Meier <maekke@g.o> znc-0.066.ebuild:
amd64/x86 stable, bug #260148
1.1 net-irc/znc/znc-0.070.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-irc/znc/znc-0.070.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-irc/znc/znc-0.070.ebuild?rev=1.1&content-type=text/plain
Index: znc-0.070.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-irc/znc/znc-0.070.ebuild,v 1.1 2009/07/17 15:41:09 vostorga Exp $
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 sasl"
DEPEND="ssl? ( >=dev-libs/openssl-0.9.7d )
perl? ( dev-lang/perl )
sasl? ( >=dev-libs/cyrus-sasl-2 )"
RDEPEND="${DEPEND}"
src_compile() {
econf \
$(use_enable debug) \
$(use_enable ipv6) \
$(use_enable !nomodules modules) \
$(use_enable perl) \
$(use_enable ssl openssl) \
$(use_enable sasl) \
|| 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 "If you are using SSL you should also run 'znc --makepem'"
elog
}
|
|