Gentoo Archives: gentoo-commits

From: "Justin Lecher (jlec)" <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-irc/znc: ChangeLog znc-0.206.ebuild
Date: Tue, 29 May 2012 17:49:52
Message-Id: 20120529174940.EAFE82004B@flycatcher.gentoo.org
1 jlec 12/05/29 17:49:40
2
3 Modified: ChangeLog
4 Added: znc-0.206.ebuild
5 Log:
6 Non maintainer Version BUmp
7
8 (Portage version: 2.2.0_alpha108/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.59 net-irc/znc/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/znc/ChangeLog?rev=1.59&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/znc/ChangeLog?rev=1.59&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/znc/ChangeLog?r1=1.58&r2=1.59
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-irc/znc/ChangeLog,v
20 retrieving revision 1.58
21 retrieving revision 1.59
22 diff -u -r1.58 -r1.59
23 --- ChangeLog 3 May 2012 06:27:13 -0000 1.58
24 +++ ChangeLog 29 May 2012 17:49:40 -0000 1.59
25 @@ -1,6 +1,11 @@
26 # ChangeLog for net-irc/znc
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-irc/znc/ChangeLog,v 1.58 2012/05/03 06:27:13 jdhore Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-irc/znc/ChangeLog,v 1.59 2012/05/29 17:49:40 jlec Exp $
30 +
31 +*znc-0.206 (29 May 2012)
32 +
33 + 29 May 2012; Justin Lecher <jlec@g.o> +znc-0.206.ebuild:
34 + Non maintainer Version BUmp
35
36 03 May 2012; Jeff Horelick <jdhore@g.o> znc-0.094.ebuild,
37 znc-0.202-r1.ebuild, znc-0.204.ebuild, znc-9999.ebuild:
38
39
40
41 1.1 net-irc/znc/znc-0.206.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/znc/znc-0.206.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/znc/znc-0.206.ebuild?rev=1.1&content-type=text/plain
45
46 Index: znc-0.206.ebuild
47 ===================================================================
48 # Copyright 1999-2012 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/net-irc/znc/znc-0.206.ebuild,v 1.1 2012/05/29 17:49:40 jlec Exp $
51
52 EAPI=4
53
54 PYTHON_DEPEND="python? 3"
55 inherit base python
56
57 DESCRIPTION="An advanced IRC Bouncer"
58 HOMEPAGE="http://znc.sourceforge.net"
59 SRC_URI="http://znc.in/releases/archive/${P}.tar.gz"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~amd64 ~arm ~x86"
64 IUSE="ares debug extras ipv6 perl python ssl sasl tcl"
65
66 RDEPEND="
67 ares? ( >=net-dns/c-ares-1.5 )
68 perl? ( >=dev-lang/perl-5.10 )
69 sasl? ( >=dev-libs/cyrus-sasl-2 )
70 ssl? ( >=dev-libs/openssl-0.9.7d )
71 tcl? ( dev-lang/tcl )
72 "
73 DEPEND="
74 virtual/pkgconfig
75 perl? ( dev-lang/swig )
76 python? (
77 >=dev-lang/swig-2.0.2
78 >=dev-lang/perl-5.10
79 )
80 ${RDEPEND}
81 "
82
83 pkg_setup() {
84 if use python; then
85 python_set_active_version 3
86 python_pkg_setup
87 fi
88 }
89
90 src_configure() {
91 econf \
92 $(use_enable ares c-ares) \
93 $(use_enable debug) \
94 $(use_enable extras extra) \
95 $(use_enable ipv6) \
96 $(use_enable perl) \
97 $(use python && echo "--enable-python=python-$(python_get_version)") \
98 $(use_enable sasl) \
99 $(use_enable ssl openssl) \
100 $(use_enable tcl tcl)
101 }
102
103 src_install() {
104 emake install DESTDIR="${D}"
105 dodoc AUTHORS README.md
106 }
107
108 pkg_postinst() {
109 elog
110 elog "Run 'znc --makeconf' as the user you want to run ZNC as"
111 elog "to make a configuration file"
112 elog "If you are using SSL you should also run 'znc --makepem'"
113 elog
114 }