Gentoo Archives: gentoo-commits

From: "Alex Legler (a3li)" <a3li@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-irc/bip: ChangeLog bip-0.8.1.ebuild bip-0.7.4-r1.ebuild bip-0.8.0_rc1.ebuild
Date: Fri, 31 Jul 2009 18:51:32
Message-Id: E1MWxCT-0000Yz-Eu@stork.gentoo.org
1 a3li 09/07/31 18:51:29
2
3 Modified: ChangeLog
4 Added: bip-0.8.1.ebuild
5 Removed: bip-0.7.4-r1.ebuild bip-0.8.0_rc1.ebuild
6 Log:
7 Version bump, remove old, fix configure. Thanks, diego.
8 (Portage version: 2.2_rc33/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.7 net-irc/bip/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-irc/bip/ChangeLog?rev=1.7&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-irc/bip/ChangeLog?rev=1.7&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-irc/bip/ChangeLog?r1=1.6&r2=1.7
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-irc/bip/ChangeLog,v
20 retrieving revision 1.6
21 retrieving revision 1.7
22 diff -u -r1.6 -r1.7
23 --- ChangeLog 23 Mar 2009 15:58:15 -0000 1.6
24 +++ ChangeLog 31 Jul 2009 18:51:29 -0000 1.7
25 @@ -1,6 +1,13 @@
26 # ChangeLog for net-irc/bip
27 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-irc/bip/ChangeLog,v 1.6 2009/03/23 15:58:15 a3li Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-irc/bip/ChangeLog,v 1.7 2009/07/31 18:51:29 a3li Exp $
30 +
31 +*bip-0.8.1 (31 Jul 2009)
32 +
33 + 31 Jul 2009; Alex Legler <a3li@g.o> -bip-0.7.4-r1.ebuild,
34 + -bip-0.8.0_rc1.ebuild, +bip-0.8.1.ebuild,
35 + +files/bip-0.8.1-configure-oidentd.patch:
36 + Version bump, removing old versions, fix configure (thanks to flameeyes)
37
38 *bip-0.8.0 (23 Mar 2009)
39
40
41
42
43 1.1 net-irc/bip/bip-0.8.1.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-irc/bip/bip-0.8.1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-irc/bip/bip-0.8.1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: bip-0.8.1.ebuild
49 ===================================================================
50 # Copyright 1999-2009 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/net-irc/bip/bip-0.8.1.ebuild,v 1.1 2009/07/31 18:51:29 a3li Exp $
53
54 EAPI="2"
55
56 inherit autotools
57
58 DESCRIPTION="Multiuser IRC proxy with ssl support"
59 HOMEPAGE="http://bip.t1r.net/"
60 SRC_URI="http://bip.t1r.net/downloads/${P}.tar.gz"
61
62 LICENSE="GPL-2"
63 SLOT="0"
64 KEYWORDS="~amd64 ~x86"
65 IUSE="debug ssl vim-syntax oidentd"
66
67 DEPEND="ssl? ( dev-libs/openssl )"
68 RDEPEND="${DEPEND}
69 vim-syntax? ( || ( app-editors/vim
70 app-editors/gvim ) )
71 oidentd? ( >=net-misc/oidentd-2.0 )"
72
73 src_prepare() {
74 # configure broken: --disable-oidentd enables it, too
75 epatch "${FILESDIR}/${P}-configure-oidentd.patch"
76
77 eautoreconf
78 }
79
80 src_configure() {
81 econf \
82 $(use_enable ssl openssl)\
83 $(use_enable debug)\
84 $(use_enable oidentd)
85 }
86
87 src_compile() {
88 # Parallel make fails.
89 # {C,CXX,LD}FLAGS aren't respected, bug 241030.
90 emake CFLAGS="${CFLAGS}" CPPFLAGS="${CXXFLAGS}" \
91 LDFLAGS="${LDFLAGS}" -j1 || die "emake failed"
92 }
93
94 src_install() {
95 dobin src/bip src/bipmkpw || die "dobin failed"
96
97 dodoc AUTHORS ChangeLog README NEWS TODO || die "dodoc failed"
98 newdoc samples/bip.conf bip.conf.sample || die "newdoc failed"
99 doman bip.1 bip.conf.5 bipmkpw.1 || die "doman failed"
100
101 if use vim-syntax; then
102 insinto /usr/share/vim/vimfiles/syntax
103 doins samples/bip.vim || die "doins failed"
104 insinto /usr/share/vim/vimfiles/ftdetect
105 doins "${FILESDIR}"/bip.vim || die "doins failed"
106 fi
107 }
108
109 pkg_postinst() {
110 elog 'Default configuration file is "~/.bip/bip.conf"'
111 elog "You can find a sample configuration file in"
112 elog "/usr/share/doc/${PF}/bip.conf.sample"
113 }