Gentoo Archives: gentoo-commits

From: "Fabian Groffen (grobian)" <grobian@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-misc/screen: screen-4.2.1-r2.ebuild ChangeLog
Date: Thu, 02 Oct 2014 18:42:03
Message-Id: 20141002184159.A08D76C91@oystercatcher.gentoo.org
1 grobian 14/10/02 18:41:59
2
3 Modified: screen-4.2.1-r2.ebuild ChangeLog
4 Log:
5 Extend Solaris fix to allow compilation
6
7 (Portage version: 2.2.14_rc1-prefix/cvs/SunOS i386, signed Manifest commit with key 0x5F75F607C5C74E89)
8
9 Revision Changes Path
10 1.5 app-misc/screen/screen-4.2.1-r2.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/screen/screen-4.2.1-r2.ebuild?rev=1.5&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/screen/screen-4.2.1-r2.ebuild?rev=1.5&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/screen/screen-4.2.1-r2.ebuild?r1=1.4&r2=1.5
15
16 Index: screen-4.2.1-r2.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-misc/screen/screen-4.2.1-r2.ebuild,v
19 retrieving revision 1.4
20 retrieving revision 1.5
21 diff -u -r1.4 -r1.5
22 --- screen-4.2.1-r2.ebuild 30 Aug 2014 10:32:59 -0000 1.4
23 +++ screen-4.2.1-r2.ebuild 2 Oct 2014 18:41:59 -0000 1.5
24 @@ -1,6 +1,6 @@
25 # Copyright 1999-2014 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-misc/screen/screen-4.2.1-r2.ebuild,v 1.4 2014/08/30 10:32:59 polynomial-c Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-misc/screen/screen-4.2.1-r2.ebuild,v 1.5 2014/10/02 18:41:59 grobian Exp $
29
30 EAPI=5
31
32 @@ -52,7 +52,13 @@
33 src_configure() {
34 append-cppflags "-DMAXWIN=${MAX_SCREEN_WINDOWS:-100}"
35
36 - [[ ${CHOST} == *-solaris* ]] && append-libs -lsocket -lnsl
37 + if [[ ${CHOST} == *-solaris* ]] ; then
38 + # https://lists.gnu.org/archive/html/screen-devel/2014-04/msg00095.html
39 + append-cppflags -D_XOPEN_SOURCE \
40 + -D_XOPEN_SOURCE_EXTENDED=1 \
41 + -D__EXTENSIONS__
42 + append-libs -lsocket -lnsl
43 + fi
44
45 use nethack || append-cppflags "-DNONETHACK"
46 use debug && append-cppflags "-DDEBUG"
47
48
49
50 1.201 app-misc/screen/ChangeLog
51
52 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/screen/ChangeLog?rev=1.201&view=markup
53 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/screen/ChangeLog?rev=1.201&content-type=text/plain
54 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/screen/ChangeLog?r1=1.200&r2=1.201
55
56 Index: ChangeLog
57 ===================================================================
58 RCS file: /var/cvsroot/gentoo-x86/app-misc/screen/ChangeLog,v
59 retrieving revision 1.200
60 retrieving revision 1.201
61 diff -u -r1.200 -r1.201
62 --- ChangeLog 26 Sep 2014 19:56:10 -0000 1.200
63 +++ ChangeLog 2 Oct 2014 18:41:59 -0000 1.201
64 @@ -1,6 +1,9 @@
65 # ChangeLog for app-misc/screen
66 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
67 -# $Header: /var/cvsroot/gentoo-x86/app-misc/screen/ChangeLog,v 1.200 2014/09/26 19:56:10 axs Exp $
68 +# $Header: /var/cvsroot/gentoo-x86/app-misc/screen/ChangeLog,v 1.201 2014/10/02 18:41:59 grobian Exp $
69 +
70 + 02 Oct 2014; Fabian Groffen <grobian@g.o> screen-4.2.1-r2.ebuild:
71 + Extend Solaris fix to allow compilation
72
73 26 Sep 2014; Ian Stakenvicius (_AxS_) <axs@g.o>
74 +files/4.0.3-extend-d_termname-ng2.patch: