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-analyzer/netcat6: ChangeLog netcat6-1.0-r2.ebuild
Date: Tue, 08 Sep 2009 21:22:05
Message-Id: E1Ml88Z-0007fa-FU@stork.gentoo.org
1 patrick 09/09/08 21:22:03
2
3 Modified: ChangeLog
4 Added: netcat6-1.0-r2.ebuild
5 Log:
6 Adding /bin/nc symlink and blocking normal netcat for libvirt #280650
7 (Portage version: 2.2_rc40/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.21 net-analyzer/netcat6/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/netcat6/ChangeLog?rev=1.21&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/netcat6/ChangeLog?rev=1.21&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/netcat6/ChangeLog?r1=1.20&r2=1.21
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-analyzer/netcat6/ChangeLog,v
19 retrieving revision 1.20
20 retrieving revision 1.21
21 diff -u -r1.20 -r1.21
22 --- ChangeLog 19 Jul 2009 18:53:52 -0000 1.20
23 +++ ChangeLog 8 Sep 2009 21:22:03 -0000 1.21
24 @@ -1,6 +1,11 @@
25 # ChangeLog for net-analyzer/netcat6
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/netcat6/ChangeLog,v 1.20 2009/07/19 18:53:52 nixnut Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/netcat6/ChangeLog,v 1.21 2009/09/08 21:22:03 patrick Exp $
29 +
30 +*netcat6-1.0-r2 (08 Sep 2009)
31 +
32 + 08 Sep 2009; Patrick Lauer <patrick@g.o> +netcat6-1.0-r2.ebuild:
33 + Adding /bin/nc symlink and blocking normal netcat for libvirt #280650
34
35 19 Jul 2009; nixnut <nixnut@g.o> netcat6-1.0-r1.ebuild:
36 ppc stable #275386
37
38
39
40 1.1 net-analyzer/netcat6/netcat6-1.0-r2.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/netcat6/netcat6-1.0-r2.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/netcat6/netcat6-1.0-r2.ebuild?rev=1.1&content-type=text/plain
44
45 Index: netcat6-1.0-r2.ebuild
46 ===================================================================
47 # Copyright 1999-2009 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/net-analyzer/netcat6/netcat6-1.0-r2.ebuild,v 1.1 2009/09/08 21:22:03 patrick Exp $
50
51 inherit eutils autotools
52
53 DESCRIPTION="netcat clone with better IPv6 support, improved code, etc..."
54 HOMEPAGE="http://netcat6.sourceforge.net/"
55 SRC_URI="ftp://ftp.deepspace6.net/pub/ds6/sources/nc6/nc6-${PV}.tar.bz2"
56
57 LICENSE="GPL-2"
58 SLOT="0"
59 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
60 IUSE="ipv6 nls bluetooth"
61
62 # need to block netcat as we provide the "nc" file now too
63 DEPEND="bluetooth? ( || ( net-wireless/bluez net-wireless/bluez-libs ) )
64 !net-analyzer/netcat"
65 RDEPEND="${DEPEND}"
66
67 S=${WORKDIR}/nc6-${PV}
68
69 src_unpack() {
70 unpack ${A}
71 cd "${S}"
72
73 epatch "${FILESDIR}/netcat6-1.0-unix-sockets.patch"
74 eautoreconf
75 }
76
77 src_compile() {
78 econf \
79 $(use_enable ipv6) \
80 $(use_enable bluetooth bluez) \
81 $(use_enable nls)
82 emake || die
83 }
84
85 src_install() {
86 make DESTDIR="${D}" install || die
87 dodir /usr/bin
88 dosym /usr/bin/nc6 /usr/bin/nc
89 dodoc AUTHORS BUGS README NEWS TODO CREDITS ChangeLog
90 }