Gentoo Archives: gentoo-commits

From: "Markus Ullmann (jokey)" <jokey@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-irc/charybdis: ChangeLog charybdis-2.2.1_pre20080108.ebuild
Date: Tue, 08 Jan 2008 14:18:34
Message-Id: E1JCFHj-00015P-4n@stork.gentoo.org
1 jokey 08/01/08 14:18:31
2
3 Modified: ChangeLog
4 Added: charybdis-2.2.1_pre20080108.ebuild
5 Log:
6 Add pre-release snapshot
7 (Portage version: 2.1.4_rc14)
8
9 Revision Changes Path
10 1.7 net-irc/charybdis/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-irc/charybdis/ChangeLog?rev=1.7&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-irc/charybdis/ChangeLog?rev=1.7&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-irc/charybdis/ChangeLog?r1=1.6&r2=1.7
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-irc/charybdis/ChangeLog,v
19 retrieving revision 1.6
20 retrieving revision 1.7
21 diff -u -r1.6 -r1.7
22 --- ChangeLog 8 Jan 2008 13:33:28 -0000 1.6
23 +++ ChangeLog 8 Jan 2008 14:18:30 -0000 1.7
24 @@ -1,6 +1,12 @@
25 # ChangeLog for net-irc/charybdis
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-irc/charybdis/ChangeLog,v 1.6 2008/01/08 13:33:28 jokey Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-irc/charybdis/ChangeLog,v 1.7 2008/01/08 14:18:30 jokey Exp $
29 +
30 +*charybdis-2.2.1_pre20080108 (08 Jan 2008)
31 +
32 + 08 Jan 2008; Markus Ullmann <jokey@g.o>
33 + +charybdis-2.2.1_pre20080108.ebuild:
34 + Add pre-release snapshot
35
36 08 Jan 2008; Markus Ullmann <jokey@g.o> charybdis-2.2.0.ebuild:
37 Keyword ~x86
38
39
40
41 1.1 net-irc/charybdis/charybdis-2.2.1_pre20080108.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-irc/charybdis/charybdis-2.2.1_pre20080108.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-irc/charybdis/charybdis-2.2.1_pre20080108.ebuild?rev=1.1&content-type=text/plain
45
46 Index: charybdis-2.2.1_pre20080108.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/charybdis/charybdis-2.2.1_pre20080108.ebuild,v 1.1 2008/01/08 14:18:30 jokey Exp $
51
52 inherit eutils
53
54 DESCRIPTION="A non-monolithic ircd loosely based on ircd-ratbox"
55 HOMEPAGE="http://www.ircd-charybdis.org/"
56 SRC_URI="mirror://gentoo/${P}.tar.bz2"
57
58 LICENSE="GPL-2"
59 SLOT="0"
60 KEYWORDS=""
61 IUSE="ipv6 ssl debug smallnet zlib static"
62
63 DEPEND="zlib? ( sys-libs/zlib )
64 ssl? ( dev-libs/openssl )"
65
66 pkg_setup() {
67 enewuser ircd
68 }
69
70 src_unpack() {
71 unpack ${A}
72 cd "${S}"
73 epatch "${FILESDIR}"/${PN}-dircreate.patch
74 }
75
76 src_compile() {
77 econf \
78 $(use_enable ipv6) \
79 $(use_enable ssl openssl) \
80 $(use_enable debug assert) \
81 $(use_enable smallnet small-net) \
82 $(use_enable zlib) \
83 $(use_enable !static shared-modules) \
84 --with-confdir=/etc/charybdis \
85 --with-logdir=/var/log/charybdis \
86 --with-helpdir=/usr/share/charybdis/help \
87 --with-moduledir=/usr/lib/charybdis \
88 || die "econf failed"
89
90 emake || die "emake failed"
91 }
92
93 src_install() {
94 emake DESTDIR="${D}" install
95 }
96
97
98
99 --
100 gentoo-commits@l.g.o mailing list