Gentoo Archives: gentoo-commits

From: "Marc Schiffbauer (mschiff)" <mschiff@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-misc/telnet-bsd: telnet-bsd-1.2-r1.ebuild ChangeLog
Date: Thu, 28 Feb 2013 17:09:43
Message-Id: 20130228170938.E2F8C2171D@flycatcher.gentoo.org
1 mschiff 13/02/28 17:09:38
2
3 Modified: telnet-bsd-1.2-r1.ebuild ChangeLog
4 Log:
5 Better fix for #459560
6
7 (Portage version: 2.2.0_alpha163/cvs/Linux x86_64, signed Manifest commit with key 0x296C6CCA35A64134)
8
9 Revision Changes Path
10 1.23 net-misc/telnet-bsd/telnet-bsd-1.2-r1.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/telnet-bsd/telnet-bsd-1.2-r1.ebuild?rev=1.23&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/telnet-bsd/telnet-bsd-1.2-r1.ebuild?rev=1.23&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/telnet-bsd/telnet-bsd-1.2-r1.ebuild?r1=1.22&r2=1.23
15
16 Index: telnet-bsd-1.2-r1.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-misc/telnet-bsd/telnet-bsd-1.2-r1.ebuild,v
19 retrieving revision 1.22
20 retrieving revision 1.23
21 diff -u -r1.22 -r1.23
22 --- telnet-bsd-1.2-r1.ebuild 28 Feb 2013 11:03:45 -0000 1.22
23 +++ telnet-bsd-1.2-r1.ebuild 28 Feb 2013 17:09:38 -0000 1.23
24 @@ -1,9 +1,9 @@
25 # Copyright 1999-2013 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-misc/telnet-bsd/telnet-bsd-1.2-r1.ebuild,v 1.22 2013/02/28 11:03:45 mschiff Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-misc/telnet-bsd/telnet-bsd-1.2-r1.ebuild,v 1.23 2013/02/28 17:09:38 mschiff Exp $
29
30 EAPI=5
31 -inherit eutils autotools
32 +inherit eutils autotools toolchain-funcs
33
34 DESCRIPTION="Telnet and telnetd ported from OpenBSD with IPv6 support"
35 HOMEPAGE="ftp://ftp.suse.com/pub/people/kukuk/ipv6/"
36 @@ -14,25 +14,25 @@
37 KEYWORDS="alpha amd64 arm hppa ia64 m68k ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos"
38 IUSE="nls xinetd"
39
40 -RDEPEND="sys-libs/ncurses[-tinfo]"
41 +RDEPEND="sys-libs/ncurses"
42 DEPEND="${RDEPEND}
43 !net-misc/netkit-telnetd
44 - xinetd? ( sys-apps/xinetd )"
45 + xinetd? ( sys-apps/xinetd )
46 + virtual/pkgconfig"
47
48 src_prepare() {
49 epatch "${FILESDIR}"/${P}-fbsd.patch
50 + eautoreconf
51 }
52
53 src_configure() {
54 - eautoreconf
55 -
56 # FreeBSD doesn't seem to support PIE neither does hppa
57 if use kernel_FreeBSD || use hppa; then
58 export libc_cv_fpie="no"
59 fi
60
61 econf
62 - emake
63 + emake CFLAGS="${CFLAGS} $("$(tc-getPKG_CONFIG)" --libs ncurses)"
64 }
65
66 src_install() {
67
68
69
70 1.50 net-misc/telnet-bsd/ChangeLog
71
72 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/telnet-bsd/ChangeLog?rev=1.50&view=markup
73 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/telnet-bsd/ChangeLog?rev=1.50&content-type=text/plain
74 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/telnet-bsd/ChangeLog?r1=1.49&r2=1.50
75
76 Index: ChangeLog
77 ===================================================================
78 RCS file: /var/cvsroot/gentoo-x86/net-misc/telnet-bsd/ChangeLog,v
79 retrieving revision 1.49
80 retrieving revision 1.50
81 diff -u -r1.49 -r1.50
82 --- ChangeLog 28 Feb 2013 11:03:45 -0000 1.49
83 +++ ChangeLog 28 Feb 2013 17:09:38 -0000 1.50
84 @@ -1,6 +1,9 @@
85 # ChangeLog for net-misc/telnet-bsd
86 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
87 -# $Header: /var/cvsroot/gentoo-x86/net-misc/telnet-bsd/ChangeLog,v 1.49 2013/02/28 11:03:45 mschiff Exp $
88 +# $Header: /var/cvsroot/gentoo-x86/net-misc/telnet-bsd/ChangeLog,v 1.50 2013/02/28 17:09:38 mschiff Exp $
89 +
90 + 28 Feb 2013; Marc Schiffbauer <mschiff@g.o> telnet-bsd-1.2-r1.ebuild:
91 + Better fix for #459560
92
93 28 Feb 2013; Marc Schiffbauer <mschiff@g.o> telnet-bsd-1.2-r1.ebuild:
94 EAPI bump, ebuild cleanups and fix bug #459560