Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-irc/epic5: ChangeLog epic5-1.0.ebuild
Date: Sat, 28 Feb 2009 23:35:56
Message-Id: E1LdYio-0007xF-Hw@stork.gentoo.org
1 patrick 09/02/28 23:35:54
2
3 Modified: ChangeLog
4 Added: epic5-1.0.ebuild
5 Log:
6 Bump to 1.0, fixes #258144. Small ebuild modifications thanks to Marco Paolone
7 (Portage version: 2.2_rc23/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.16 net-irc/epic5/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-irc/epic5/ChangeLog?rev=1.16&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-irc/epic5/ChangeLog?rev=1.16&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-irc/epic5/ChangeLog?r1=1.15&r2=1.16
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-irc/epic5/ChangeLog,v
19 retrieving revision 1.15
20 retrieving revision 1.16
21 diff -u -r1.15 -r1.16
22 --- ChangeLog 14 Nov 2007 04:11:38 -0000 1.15
23 +++ ChangeLog 28 Feb 2009 23:35:54 -0000 1.16
24 @@ -1,6 +1,12 @@
25 # ChangeLog for net-irc/epic5
26 -# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-irc/epic5/ChangeLog,v 1.15 2007/11/14 04:11:38 beandog Exp $
28 +# Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/net-irc/epic5/ChangeLog,v 1.16 2009/02/28 23:35:54 patrick Exp $
30 +
31 +*epic5-1.0 (28 Feb 2009)
32 +
33 + 28 Feb 2009; Patrick Lauer <patrick@g.o> +epic5-1.0.ebuild:
34 + Bump to 1.0, fixes #258144. Small ebuild modifications thanks to Marco
35 + Paolone
36
37 14 Nov 2007; Steve Dibb <beandog@g.o> epic5-0.3.5.ebuild:
38 amd64 stable, bug 198872
39
40
41
42 1.1 net-irc/epic5/epic5-1.0.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-irc/epic5/epic5-1.0.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-irc/epic5/epic5-1.0.ebuild?rev=1.1&content-type=text/plain
46
47 Index: epic5-1.0.ebuild
48 ===================================================================
49 # Copyright 1999-2009 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51
52 inherit eutils toolchain-funcs
53
54 DESCRIPTION="Epic5 IRC Client"
55 SRC_URI="ftp://ftp.epicsol.org/pub/epic/EPIC5-PRODUCTION/${P}.tar.bz2"
56 HOMEPAGE="http://epicsol.org/"
57 SLOT="0"
58 LICENSE="as-is"
59 KEYWORDS="~x86 ~amd64"
60 IUSE="iconv ipv6 perl ssl tcl socks5"
61
62 DEPEND=">=sys-libs/ncurses-5.6-r2
63 iconv? ( sys-libs/glibc )
64 perl? ( >=dev-lang/perl-5.8.8-r2 )
65 ssl? ( >=dev-libs/openssl-0.9.8e-r3 )
66 tcl? ( dev-lang/tcl )
67 socks5? ( net-proxy/dante )"
68 # ruby? ( >=dev-lang/ruby-1.8.6_p287-r1 ) # fails at the moment
69
70 src_unpack() {
71 unpack ${A}
72 }
73
74 src_compile() {
75 econf \
76 --libexecdir=/usr/lib/misc \
77 $(use_with iconv) \
78 $(use_with ipv6) \
79 $(use_with perl) \
80 $(use_with ssl) \
81 $(use_with tcl tcl) \
82 $(use_with socks5) \
83 || die "econf failed"
84 # $(use_with ruby) fails at the moment
85
86 # parallel build failure
87 emake -j1 CC="$(tc-getCC)" || die "emake failed"
88 }
89
90 src_install () {
91 einstall \
92 sharedir="${D}"/usr/share \
93 libexecdir="${D}"/usr/lib/misc || die "einstall failed"
94
95 dodoc BUG_FORM COPYRIGHT README KNOWNBUGS VOTES
96
97 cd "${S}"/doc
98 docinto doc
99 dodoc \
100 *.txt colors EPIC* IRCII_VERSIONS local_vars missing new-load \
101 nicknames outputhelp README.SSL SILLINESS TS4
102 }