Gentoo Archives: gentoo-commits

From: "Victor Ostorga (vostorga)" <vostorga@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-irc/znc: ChangeLog znc-0.070.ebuild
Date: Fri, 17 Jul 2009 15:41:11
Message-Id: E1MRpYb-0006O0-Et@stork.gentoo.org
1 vostorga 09/07/17 15:41:09
2
3 Modified: ChangeLog
4 Added: znc-0.070.ebuild
5 Log:
6 Version bump to 0.070
7 (Portage version: 2.1.6.13/cvs/Linux i686)
8
9 Revision Changes Path
10 1.22 net-irc/znc/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-irc/znc/ChangeLog?rev=1.22&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-irc/znc/ChangeLog?rev=1.22&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-irc/znc/ChangeLog?r1=1.21&r2=1.22
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-irc/znc/ChangeLog,v
19 retrieving revision 1.21
20 retrieving revision 1.22
21 diff -u -r1.21 -r1.22
22 --- ChangeLog 25 Feb 2009 20:09:26 -0000 1.21
23 +++ ChangeLog 17 Jul 2009 15:41:09 -0000 1.22
24 @@ -1,6 +1,11 @@
25 # ChangeLog for net-irc/znc
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-irc/znc/ChangeLog,v 1.21 2009/02/25 20:09:26 maekke Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-irc/znc/ChangeLog,v 1.22 2009/07/17 15:41:09 vostorga Exp $
29 +
30 +*znc-0.070 (17 Jul 2009)
31 +
32 + 17 Jul 2009; VĂ­ctor Ostorga <vostorga@g.o> +znc-0.070.ebuild:
33 + Version bump
34
35 25 Feb 2009; Markus Meier <maekke@g.o> znc-0.066.ebuild:
36 amd64/x86 stable, bug #260148
37
38
39
40 1.1 net-irc/znc/znc-0.070.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-irc/znc/znc-0.070.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-irc/znc/znc-0.070.ebuild?rev=1.1&content-type=text/plain
44
45 Index: znc-0.070.ebuild
46 ===================================================================
47 # Copyright 1999-2009 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/net-irc/znc/znc-0.070.ebuild,v 1.1 2009/07/17 15:41:09 vostorga Exp $
50
51 DESCRIPTION="An advanced IRC Bouncer"
52 HOMEPAGE="http://znc.sourceforge.net"
53 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
54
55 LICENSE="GPL-2"
56 SLOT="0"
57 KEYWORDS="~amd64 ~x86"
58 IUSE="debug ipv6 nomodules perl ssl sasl"
59
60 DEPEND="ssl? ( >=dev-libs/openssl-0.9.7d )
61 perl? ( dev-lang/perl )
62 sasl? ( >=dev-libs/cyrus-sasl-2 )"
63 RDEPEND="${DEPEND}"
64
65 src_compile() {
66 econf \
67 $(use_enable debug) \
68 $(use_enable ipv6) \
69 $(use_enable !nomodules modules) \
70 $(use_enable perl) \
71 $(use_enable ssl openssl) \
72 $(use_enable sasl) \
73 || die "econf failed"
74
75 emake || die "emake failed"
76 }
77
78 src_install() {
79 emake install DESTDIR="${D}" || die "make install failed."
80 dodoc AUTHORS znc.conf || die "dodoc failed"
81 }
82
83 pkg_postinst() {
84 elog
85 elog "Run 'znc --makeconf' as the user you want to run ZNC as"
86 elog "to make a configuration file"
87 elog "If you are using SSL you should also run 'znc --makepem'"
88 elog
89 }