Gentoo Archives: gentoo-commits

From: "Kevin McCarthy (signals)" <signals@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-im/reaim: ChangeLog reaim-0.8-r1.ebuild
Date: Fri, 06 May 2011 14:38:22
Message-Id: 20110506143812.310D020054@flycatcher.gentoo.org
1 signals 11/05/06 14:38:12
2
3 Modified: ChangeLog
4 Added: reaim-0.8-r1.ebuild
5 Log:
6 Respect CC,CFLAGS #365863. Use dohtml -r #365861. Install CREDITS file. EAPI=4 bump.
7
8 (Portage version: 2.2.0_alpha30/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.8 net-im/reaim/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/reaim/ChangeLog?rev=1.8&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/reaim/ChangeLog?rev=1.8&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/reaim/ChangeLog?r1=1.7&r2=1.8
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-im/reaim/ChangeLog,v
20 retrieving revision 1.7
21 retrieving revision 1.8
22 diff -u -r1.7 -r1.8
23 --- ChangeLog 14 Jan 2009 04:45:22 -0000 1.7
24 +++ ChangeLog 6 May 2011 14:38:12 -0000 1.8
25 @@ -1,6 +1,12 @@
26 # ChangeLog for net-im/reaim
27 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-im/reaim/ChangeLog,v 1.7 2009/01/14 04:45:22 vapier Exp $
29 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/net-im/reaim/ChangeLog,v 1.8 2011/05/06 14:38:12 signals Exp $
31 +
32 +*reaim-0.8-r1 (06 May 2011)
33 +
34 + 06 May 2011; Kevin McCarthy <signals@g.o> +reaim-0.8-r1.ebuild:
35 + Respect CC,CFLAGS #365863. Use dohtml -r #365861. Install CREDITS file.
36 + EAPI=4 bump.
37
38 14 Jan 2009; Mike Frysinger <vapier@g.o> reaim-0.8.ebuild:
39 Cleanup ebuild a bit.
40
41
42
43 1.1 net-im/reaim/reaim-0.8-r1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/reaim/reaim-0.8-r1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/reaim/reaim-0.8-r1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: reaim-0.8-r1.ebuild
49 ===================================================================
50 # Copyright 1999-2011 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/net-im/reaim/reaim-0.8-r1.ebuild,v 1.1 2011/05/06 14:38:12 signals Exp $
53
54 EAPI=4
55
56 inherit toolchain-funcs
57
58 DESCRIPTION="AIM transport proxy over NAT firewalls"
59 HOMEPAGE="http://reaim.sourceforge.net/"
60 SRC_URI="mirror://sourceforge/reaim/${P}.tar.gz"
61
62 LICENSE="GPL-2"
63 SLOT="0"
64 KEYWORDS="~amd64 ~ppc ~x86"
65 IUSE=""
66
67 DEPEND=">=sys-apps/sed-4"
68 RDEPEND="net-firewall/iptables"
69
70 pkg_setup() {
71 tc-export CC
72 }
73
74 src_prepare() {
75 sed -i -e 's/gcc/$(CC) $(CFLAGS) $(LDFLAGS)/' \
76 -e 's/ -g / /' Makefile || die "sed failed" #365863
77 }
78
79 src_install() {
80 dosbin reaim || die
81 doman reaim.8
82 dodoc CREDITS
83 dohtml -r -x CVS html/*
84 newinitd "${FILESDIR}"/reaim reaim
85 }