Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-libs/libXaw3d: ChangeLog libXaw3d-1.6.1-r1.ebuild
Date: Mon, 05 Mar 2012 09:42:58
Message-Id: 20120305094247.6CE4C2004B@flycatcher.gentoo.org
1 ssuominen 12/03/05 09:42:47
2
3 Modified: ChangeLog
4 Added: libXaw3d-1.6.1-r1.ebuild
5 Log:
6 Fix use after free in DestroyAllIM (causing segmentation fault in app-text/gv exit) wrt #406487 by Matt Turner
7
8 (Portage version: 2.2.0_alpha89/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.8 x11-libs/libXaw3d/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libXaw3d/ChangeLog?rev=1.8&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libXaw3d/ChangeLog?rev=1.8&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libXaw3d/ChangeLog?r1=1.7&r2=1.8
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-libs/libXaw3d/ChangeLog,v
20 retrieving revision 1.7
21 retrieving revision 1.8
22 diff -u -r1.7 -r1.8
23 --- ChangeLog 15 Feb 2012 23:53:15 -0000 1.7
24 +++ ChangeLog 5 Mar 2012 09:42:47 -0000 1.8
25 @@ -1,6 +1,13 @@
26 # ChangeLog for x11-libs/libXaw3d
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/libXaw3d/ChangeLog,v 1.7 2012/02/15 23:53:15 mattst88 Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libXaw3d/ChangeLog,v 1.8 2012/03/05 09:42:47 ssuominen Exp $
30 +
31 +*libXaw3d-1.6.1-r1 (05 Mar 2012)
32 +
33 + 05 Mar 2012; Samuli Suominen <ssuominen@g.o>
34 + +libXaw3d-1.6.1-r1.ebuild, +files/libXaw3d-1.6.1-use_after_free.patch:
35 + Fix use after free in DestroyAllIM (causing segmentation fault in app-text/gv
36 + exit) wrt #406487 by Matt Turner
37
38 *libXaw3d-1.6.1 (15 Feb 2012)
39
40
41
42
43 1.1 x11-libs/libXaw3d/libXaw3d-1.6.1-r1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libXaw3d/libXaw3d-1.6.1-r1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libXaw3d/libXaw3d-1.6.1-r1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: libXaw3d-1.6.1-r1.ebuild
49 ===================================================================
50 # Copyright 1999-2012 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/x11-libs/libXaw3d/libXaw3d-1.6.1-r1.ebuild,v 1.1 2012/03/05 09:42:47 ssuominen Exp $
53
54 EAPI=4
55 inherit xorg-2
56
57 DESCRIPTION="X.Org Xaw3d library"
58
59 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
60 IUSE="unicode"
61
62 RDEPEND="x11-libs/libX11
63 x11-libs/libXext
64 x11-libs/libXmu
65 x11-libs/libXt"
66 DEPEND="${RDEPEND}
67 sys-devel/flex
68 virtual/yacc
69 x11-proto/xextproto
70 x11-proto/xproto"
71
72 pkg_setup() {
73 PATCHES=( "${FILESDIR}"/${P}-use_after_free.patch )
74
75 XORG_CONFIGURE_OPTIONS=(
76 $(use_enable unicode internationalization)
77 )
78
79 xorg-2_pkg_setup
80 }