Gentoo Archives: gentoo-commits

From: "Markos Chandras (hwoarang)" <hwoarang@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-misc/netpipe: netpipe-1.0.0_beta2-r1.ebuild ChangeLog
Date: Thu, 26 Aug 2010 20:02:17
Message-Id: 20100826200210.CE51D20051@flycatcher.gentoo.org
1 hwoarang 10/08/26 20:02:10
2
3 Modified: ChangeLog
4 Added: netpipe-1.0.0_beta2-r1.ebuild
5 Log:
6 Patch from Dane Smith <smithdanea@×××××.com> which fixes LDFLAGS (bug #334461), adding missing || dies and other QA fixes
7 (Portage version: 2.2_rc67/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.10 net-misc/netpipe/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/netpipe/ChangeLog?rev=1.10&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/netpipe/ChangeLog?rev=1.10&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/netpipe/ChangeLog?r1=1.9&r2=1.10
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-misc/netpipe/ChangeLog,v
19 retrieving revision 1.9
20 retrieving revision 1.10
21 diff -u -r1.9 -r1.10
22 --- ChangeLog 29 Sep 2007 12:56:05 -0000 1.9
23 +++ ChangeLog 26 Aug 2010 20:02:10 -0000 1.10
24 @@ -1,6 +1,13 @@
25 # ChangeLog for net-misc/netpipe
26 -# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-misc/netpipe/ChangeLog,v 1.9 2007/09/29 12:56:05 coldwind Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/net-misc/netpipe/ChangeLog,v 1.10 2010/08/26 20:02:10 hwoarang Exp $
30 +
31 +*netpipe-1.0.0_beta2-r1 (26 Aug 2010)
32 +
33 + 26 Aug 2010; Markos Chandras <hwoarang@g.o>
34 + +netpipe-1.0.0_beta2-r1.ebuild:
35 + Patch from Dane Smith <smithdanea@×××××.com> which fixes LDFLAGS (bug
36 + #334461), adding missing || dies and other QA fixes
37
38 29 Sep 2007; Santiago M. Mola <coldwind@g.o>
39 netpipe-1.0.0_beta2.ebuild:
40
41
42
43 1.1 net-misc/netpipe/netpipe-1.0.0_beta2-r1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/netpipe/netpipe-1.0.0_beta2-r1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/netpipe/netpipe-1.0.0_beta2-r1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: netpipe-1.0.0_beta2-r1.ebuild
49 ===================================================================
50 # Copyright 1999-2010 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/net-misc/netpipe/netpipe-1.0.0_beta2-r1.ebuild,v 1.1 2010/08/26 20:02:10 hwoarang Exp $
53
54 inherit toolchain-funcs
55
56 DESCRIPTION="tool to reliably distribute binary data using UDP broadcasting techniques"
57 HOMEPAGE="http://www.wudika.de/~jan/netpipe/"
58 SRC_URI="http://www.wudika.de/~jan/${PN}/${PN}.tar.gz"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~amd64 ~ppc ~x86"
63 IUSE=""
64
65 S="${WORKDIR}/${PN}"
66
67 src_unpack() {
68 unpack ${A}
69 cd "${S}"
70 sed -i \
71 -e "s:^OPT=.*:OPT = ${CFLAGS} ${LDFLAGS}:" \
72 -e "s:^CC=.*:CC = $(tc-getCC):" \
73 Makefile || die "sed failed"
74 }
75
76 src_install() {
77 dobin netpipe || die "dobin failed"
78 dodoc DOCUMENTATION INSTALL TECH-NOTES || die
79 }