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/ngircd: ChangeLog ngircd-0.10.4.ebuild
Date: Tue, 08 Jan 2008 16:54:06
Message-Id: E1JCHiE-0002QF-HR@stork.gentoo.org
1 armin76 08/01/08 16:54:02
2
3 Modified: ChangeLog
4 Added: ngircd-0.10.4.ebuild
5 Log:
6 Version bump wrt #204834
7 (Portage version: 2.1.3.19)
8
9 Revision Changes Path
10 1.34 net-irc/ngircd/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-irc/ngircd/ChangeLog?rev=1.34&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-irc/ngircd/ChangeLog?rev=1.34&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-irc/ngircd/ChangeLog?r1=1.33&r2=1.34
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-irc/ngircd/ChangeLog,v
19 retrieving revision 1.33
20 retrieving revision 1.34
21 diff -u -r1.33 -r1.34
22 --- ChangeLog 8 Oct 2007 15:17:39 -0000 1.33
23 +++ ChangeLog 8 Jan 2008 16:54:01 -0000 1.34
24 @@ -1,6 +1,11 @@
25 # ChangeLog for net-irc/ngircd
26 -# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-irc/ngircd/ChangeLog,v 1.33 2007/10/08 15:17:39 armin76 Exp $
28 +# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/net-irc/ngircd/ChangeLog,v 1.34 2008/01/08 16:54:01 armin76 Exp $
30 +
31 +*ngircd-0.10.4 (08 Jan 2008)
32 +
33 + 08 Jan 2008; Raúl Porcel <armin76@g.o> +ngircd-0.10.4.ebuild:
34 + Version bump wrt #204834
35
36 08 Oct 2007; Raúl Porcel <armin76@g.o> -ngircd-0.10.1.ebuild,
37 -ngircd-0.10.2.ebuild:
38
39
40
41 1.1 net-irc/ngircd/ngircd-0.10.4.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-irc/ngircd/ngircd-0.10.4.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-irc/ngircd/ngircd-0.10.4.ebuild?rev=1.1&content-type=text/plain
45
46 Index: ngircd-0.10.4.ebuild
47 ===================================================================
48 # Copyright 1999-2008 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/net-irc/ngircd/ngircd-0.10.4.ebuild,v 1.1 2008/01/08 16:54:01 armin76 Exp $
51
52 inherit eutils
53
54 DESCRIPTION="A IRC server written from scratch."
55 HOMEPAGE="http://ngircd.barton.de/"
56 SRC_URI="ftp://ftp.berlios.de/${PN}/${P}.tar.gz
57 ftp://ngircd.barton.de/pub//${PN}/${P}.tar.gz"
58
59 LICENSE="GPL-2"
60 SLOT="0"
61 KEYWORDS="~amd64 ~ppc ~x86"
62 IUSE="zlib tcpd debug ident"
63 RESTRICT="test"
64
65 DEPEND="virtual/libc
66 zlib? ( sys-libs/zlib )
67 ident? ( net-libs/libident )
68 tcpd? ( sys-apps/tcp-wrappers )
69 >=sys-apps/sed-4"
70
71 src_compile() {
72 econf \
73 --sysconfdir=/etc/ngircd \
74 $(use_with zlib) \
75 $(use_with tcpd tcp-wrappers) \
76 $(use_with ident ) \
77 $(use_enable debug) \
78 $(use_enable debug sniffer) \
79 || die "econf failed"
80 emake || die "emake failed"
81 }
82
83 src_install() {
84 sed -i \
85 -e "s:/usr/local/etc/ngircd.motd:/etc/ngircd/ngircd.motd:" \
86 -e "s:;ServerUID = 65534:ServerUID = ngircd:" \
87 -e "s:;ServerGID = 65534:ServerGID = nogroup:" \
88 doc/sample-ngircd.conf
89
90 make \
91 DESTDIR="${D}" \
92 docdir=/usr/share/doc/${PF} \
93 install || die "make install failed"
94
95 newinitd "${FILESDIR}"/ngircd.init.d ngircd
96 }
97
98 pkg_postinst() {
99 enewuser ngircd
100 chown ngircd "${ROOT}"/etc/ngircd/ngircd.conf
101 }
102
103
104
105 --
106 gentoo-commits@l.g.o mailing list