Gentoo Archives: gentoo-commits

From: "Raul Porcel (armin76)" <armin76@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-irc/miau: ChangeLog miau-0.6.5.ebuild
Date: Sat, 10 Nov 2007 16:08:10
Message-Id: E1IqssO-0003Gz-Dx@stork.gentoo.org
1 armin76 07/11/10 16:08:04
2
3 Modified: ChangeLog
4 Added: miau-0.6.5.ebuild
5 Log:
6 Version bump
7 (Portage version: 2.1.3.19)
8
9 Revision Changes Path
10 1.13 net-irc/miau/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-irc/miau/ChangeLog?rev=1.13&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-irc/miau/ChangeLog?rev=1.13&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-irc/miau/ChangeLog?r1=1.12&r2=1.13
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-irc/miau/ChangeLog,v
19 retrieving revision 1.12
20 retrieving revision 1.13
21 diff -u -r1.12 -r1.13
22 --- ChangeLog 28 May 2007 18:10:22 -0000 1.12
23 +++ ChangeLog 10 Nov 2007 16:08:03 -0000 1.13
24 @@ -1,6 +1,11 @@
25 # ChangeLog for net-irc/miau
26 # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-irc/miau/ChangeLog,v 1.12 2007/05/28 18:10:22 armin76 Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-irc/miau/ChangeLog,v 1.13 2007/11/10 16:08:03 armin76 Exp $
29 +
30 +*miau-0.6.5 (10 Nov 2007)
31 +
32 + 10 Nov 2007; Raúl Porcel <armin76@g.o> +miau-0.6.5.ebuild:
33 + Version bump
34
35 28 May 2007; Raúl Porcel <armin76@g.o> -miau-0.6.2.ebuild,
36 miau-0.6.4.ebuild:
37
38
39
40 1.1 net-irc/miau/miau-0.6.5.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-irc/miau/miau-0.6.5.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-irc/miau/miau-0.6.5.ebuild?rev=1.1&content-type=text/plain
44
45 Index: miau-0.6.5.ebuild
46 ===================================================================
47 # Copyright 1999-2007 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/net-irc/miau/miau-0.6.5.ebuild,v 1.1 2007/11/10 16:08:03 armin76 Exp $
50
51 inherit eutils
52
53 DESCRIPTION="Persistent IRC bouncer with multi-client support - a fork of muh"
54 HOMEPAGE="http://miau.sourceforge.net/"
55 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
56 LICENSE="GPL-2"
57 SLOT="0"
58 KEYWORDS="~amd64 ~ppc ~x86"
59 IUSE="debug ipv6"
60
61 DEPEND=""
62
63 pkg_setup() {
64 if use ipv6; then
65 echo
66 ewarn "Enabling the ipv6 useflag will disable ipv4 entirely. Press"
67 ewarn "Ctrl+C now if you don't want this."
68 echo
69 ebeep 5
70 fi
71 }
72
73 src_compile() {
74 # --disable-debug seems to actually enabled it, using if use rather than
75 # use_enable to get around it.
76 if use debug; then
77 myconf="--enable-debug"
78 fi
79 econf \
80 --enable-dccbounce \
81 --enable-automode \
82 --enable-releasenick \
83 --enable-ctcp-replies \
84 --enable-mkpasswd \
85 --enable-uptime \
86 --enable-chanlog \
87 --enable-privlog \
88 --enable-onconnect \
89 --enable-empty-awaymsg \
90 $(use_enable ipv6) \
91 ${myconf} \
92 $(use_enable debug enduserdebug) \
93 $(use_enable debug pingstat) \
94 $(use_enable debug dumpstatus) \
95 || die "econf failed."
96 emake || die "emake failed."
97 }
98
99 src_install() {
100 emake install DESTDIR="${D}" || die "emake install failed."
101 dodoc AUTHORS ChangeLog TODO README || die "dodoc failed."
102
103 mv "${D}/usr/share/doc/miau/examples/miaurc" \
104 "${D}/usr/share/doc/${PF}/miaurc.sample"
105 rm -rf "${D}/usr/share/doc/miau"
106 }
107
108 pkg_postinst() {
109 echo
110 elog "You'll need to configure miau before running it."
111 elog "Put your config in ~/.miau/miaurc"
112 elog "You can use the sample config is in /usr/share/doc/${PF}/miaurc.sample"
113 elog "For more information, see the documentation."
114 echo
115 }
116
117
118
119 --
120 gentoo-commits@g.o mailing list