Gentoo Archives: gentoo-commits

From: "Peter Volkov (pva)" <pva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-misc/socat: ChangeLog socat-1.6.0.1.ebuild
Date: Mon, 25 Feb 2008 16:07:15
Message-Id: E1JTfrD-0007xo-Np@stork.gentoo.org
1 pva 08/02/25 16:07:11
2
3 Modified: ChangeLog
4 Added: socat-1.6.0.1.ebuild
5 Log:
6 Version bump, thank Aron Griffis <agriffis AT n01se.net> for report, bug #210328.
7 (Portage version: 2.1.4.4)
8
9 Revision Changes Path
10 1.33 net-misc/socat/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/socat/ChangeLog?rev=1.33&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/socat/ChangeLog?rev=1.33&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/socat/ChangeLog?r1=1.32&r2=1.33
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-misc/socat/ChangeLog,v
19 retrieving revision 1.32
20 retrieving revision 1.33
21 diff -u -r1.32 -r1.33
22 --- ChangeLog 26 Jul 2007 13:07:19 -0000 1.32
23 +++ ChangeLog 25 Feb 2008 16:07:11 -0000 1.33
24 @@ -1,6 +1,12 @@
25 # ChangeLog for net-misc/socat
26 -# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-misc/socat/ChangeLog,v 1.32 2007/07/26 13:07:19 falco Exp $
28 +# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/net-misc/socat/ChangeLog,v 1.33 2008/02/25 16:07:11 pva Exp $
30 +
31 +*socat-1.6.0.1 (25 Feb 2008)
32 +
33 + 25 Feb 2008; <pva@g.o> +socat-1.6.0.1.ebuild:
34 + Version bump, thank Aron Griffis <agriffis AT n01se.net> for report, bug
35 + #210328.
36
37 *socat-2.0.0_beta1 (26 Jul 2007)
38
39
40
41
42 1.1 net-misc/socat/socat-1.6.0.1.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/socat/socat-1.6.0.1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/socat/socat-1.6.0.1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: socat-1.6.0.1.ebuild
48 ===================================================================
49 # Copyright 1999-2008 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/net-misc/socat/socat-1.6.0.1.ebuild,v 1.1 2008/02/25 16:07:11 pva Exp $
52
53 inherit eutils
54
55 DESCRIPTION="Multipurpose relay (SOcket CAT)"
56 HOMEPAGE="http://www.dest-unreach.org/socat/"
57 SRC_URI="http://www.dest-unreach.org/socat/download/${P}.tar.bz2"
58
59 LICENSE="GPL-2"
60 SLOT="0"
61 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~sparc ~x86"
62 IUSE="ssl readline ipv6 tcpd"
63
64 DEPEND="ssl? ( >=dev-libs/openssl-0.9.6 )
65 readline? ( >=sys-libs/ncurses-5.1 >=sys-libs/readline-4.1 )
66 tcpd? ( sys-apps/tcp-wrappers )
67 virtual/libc"
68
69 src_compile() {
70 econf \
71 $(use_enable ssl openssl) \
72 $(use_enable readline) \
73 $(use_enable ipv6 ip6) \
74 $(use_enable tcpd libwrap) \
75 || die "econf failed"
76 emake || die
77 }
78
79 src_test() {
80 TMPDIR="${T}" make test || die 'self test failed'
81 }
82
83 src_install() {
84 #dodir /usr/bin /usr/share/man/man1
85 make install DESTDIR="${D}" || die
86
87 dodoc BUGREPORTS CHANGES DEVELOPMENT EXAMPLES \
88 FAQ FILES PORTING README SECURITY VERSION
89 docinto examples
90 dodoc *.sh
91 dohtml socat.html
92 }
93
94
95
96 --
97 gentoo-commits@l.g.o mailing list