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: bip-0.8.0.ebuild ChangeLog
Date: Mon, 23 Mar 2009 15:58:17
Message-Id: E1LlmXX-0003tx-4C@stork.gentoo.org
1 a3li 09/03/23 15:58:15
2
3 Modified: ChangeLog
4 Added: bip-0.8.0.ebuild
5 Log:
6 Version bump
7 (Portage version: 2.2_rc26/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.6 net-irc/bip/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-irc/bip/ChangeLog?rev=1.6&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-irc/bip/ChangeLog?rev=1.6&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-irc/bip/ChangeLog?r1=1.5&r2=1.6
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-irc/bip/ChangeLog,v
19 retrieving revision 1.5
20 retrieving revision 1.6
21 diff -u -r1.5 -r1.6
22 --- ChangeLog 23 Mar 2009 14:43:11 -0000 1.5
23 +++ ChangeLog 23 Mar 2009 15:58:15 -0000 1.6
24 @@ -1,6 +1,11 @@
25 # ChangeLog for net-irc/bip
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-irc/bip/ChangeLog,v 1.5 2009/03/23 14:43:11 a3li Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-irc/bip/ChangeLog,v 1.6 2009/03/23 15:58:15 a3li Exp $
29 +
30 +*bip-0.8.0 (23 Mar 2009)
31 +
32 + 23 Mar 2009; Alex Legler <a3li@g.o> +bip-0.8.0.ebuild:
33 + Version bump. Fixing oidentd and ssl USE flags.
34
35 23 Mar 2009; Alex Legler <a3li@g.o> metadata.xml:
36 Taking over maintenance.
37
38
39
40 1.1 net-irc/bip/bip-0.8.0.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-irc/bip/bip-0.8.0.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-irc/bip/bip-0.8.0.ebuild?rev=1.1&content-type=text/plain
44
45 Index: bip-0.8.0.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/bip/bip-0.8.0.ebuild,v 1.1 2009/03/23 15:58:15 a3li Exp $
50
51 EAPI="2"
52
53 DESCRIPTION="Multiuser IRC proxy with ssl support"
54 HOMEPAGE="http://bip.t1r.net/"
55 SRC_URI="http://bip.t1r.net/downloads/${P}.tar.gz"
56
57 LICENSE="GPL-2"
58 SLOT="0"
59 KEYWORDS="~amd64 ~x86"
60 IUSE="debug ssl vim-syntax oidentd"
61
62 DEPEND="ssl? ( dev-libs/openssl )"
63 RDEPEND="${DEPEND}
64 vim-syntax? ( || ( app-editors/vim
65 app-editors/gvim ) )
66 oidentd? ( >=net-misc/oidentd-2.0 )"
67
68 src_configure() {
69 # configure broken: --disable-oidentd enables it, too
70 local my_conf
71 use oidentd && my_conf="--enable-oidentd"
72
73 econf \
74 $(use_enable ssl openssl)\
75 $(use_enable debug)\
76 ${my_conf}
77 }
78
79 src_compile() {
80 # Parallel make fails.
81 # {C,CXX,LD}FLAGS aren't respected, bug 241030.
82 emake CFLAGS="${CFLAGS}" CPPFLAGS="${CXXFLAGS}" \
83 LDFLAGS="${LDFLAGS}" -j1 || die "emake failed"
84 }
85
86 src_install() {
87 dobin src/bip src/bipmkpw || die "dobin failed"
88
89 dodoc AUTHORS ChangeLog README NEWS TODO || die "dodoc failed"
90 newdoc samples/bip.conf bip.conf.sample || die "newdoc failed"
91 doman bip.1 bip.conf.5 bipmkpw.1 || die "doman failed"
92
93 if use vim-syntax; then
94 insinto /usr/share/vim/vimfiles/syntax
95 doins samples/bip.vim || die "doins failed"
96 insinto /usr/share/vim/vimfiles/ftdetect
97 doins "${FILESDIR}"/bip.vim || die "doins failed"
98 fi
99 }
100
101 pkg_postinst() {
102 elog 'Default configuration file is "~/.bip/bip.conf"'
103 elog "You can find a sample configuration file in"
104 elog "/usr/share/doc/${PF}/bip.conf.sample"
105 }