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/sic: ChangeLog sic-1.0.ebuild
Date: Tue, 05 Aug 2008 16:57:32
Message-Id: E1KQPqj-0006ou-VC@stork.gentoo.org
1 armin76 08/08/05 16:57:29
2
3 Modified: ChangeLog
4 Added: sic-1.0.ebuild
5 Log:
6 Version bump, new HOMEPAGE
7 (Portage version: 2.2_rc6/cvs/Linux 2.6.25-gentoo-r7 i686)
8
9 Revision Changes Path
10 1.4 net-irc/sic/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-irc/sic/ChangeLog?rev=1.4&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-irc/sic/ChangeLog?rev=1.4&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-irc/sic/ChangeLog?r1=1.3&r2=1.4
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-irc/sic/ChangeLog,v
19 retrieving revision 1.3
20 retrieving revision 1.4
21 diff -u -r1.3 -r1.4
22 --- ChangeLog 17 Jul 2008 18:48:43 -0000 1.3
23 +++ ChangeLog 5 Aug 2008 16:57:29 -0000 1.4
24 @@ -1,6 +1,11 @@
25 # ChangeLog for net-irc/sic
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-irc/sic/ChangeLog,v 1.3 2008/07/17 18:48:43 aballier Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-irc/sic/ChangeLog,v 1.4 2008/08/05 16:57:29 armin76 Exp $
29 +
30 +*sic-1.0 (05 Aug 2008)
31 +
32 + 05 Aug 2008; Raúl Porcel <armin76@g.o> +sic-1.0.ebuild:
33 + Version bump, new HOMEPAGE
34
35 17 Jul 2008; Alexis Ballier <aballier@g.o> sic-0.9.ebuild:
36 keyword ~x86-fbsd, thanks to Davide Italiano <dav_it@g.o>, bug
37
38
39
40 1.1 net-irc/sic/sic-1.0.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-irc/sic/sic-1.0.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-irc/sic/sic-1.0.ebuild?rev=1.1&content-type=text/plain
44
45 Index: sic-1.0.ebuild
46 ===================================================================
47 # Copyright 1999-2008 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/net-irc/sic/sic-1.0.ebuild,v 1.1 2008/08/05 16:57:29 armin76 Exp $
50
51 inherit toolchain-funcs
52
53 DESCRIPTION="An extremly simple IRC client"
54 HOMEPAGE="http://www.suckless.org/programs/sic.html"
55 SRC_URI="http://code.suckless.org/dl/tools/${P}.tar.gz"
56
57 LICENSE="MIT"
58 SLOT="0"
59 KEYWORDS="~amd64 ~x86 ~x86-fbsd"
60 IUSE=""
61
62 DEPEND=""
63 RDEPEND=""
64
65 src_unpack() {
66 unpack ${A}
67 cd "${S}"
68
69 sed -i \
70 -e "s/CFLAGS =/CFLAGS +=/g" \
71 -e "s/-Os//" \
72 -e "s/LDFLAGS =/LDFLAGS +=/" \
73 -e "s/-s //g" \
74 -e "s/= cc/= $(tc-getCC)/g" \
75 config.mk || die "sed failed"
76 }
77
78 src_compile() {
79 emake CC="$(tc-getCC)" || die "emake failed"
80 }
81
82 src_install() {
83 emake DESTDIR="${D}" PREFIX="/usr" install || die "emake install failed"
84
85 dodoc README
86 }