Gentoo Archives: gentoo-commits

From: "Andrey Grozin (grozin)" <grozin@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-gfx/asymptote/files: asymptote-2.23-info.patch asymptote-2.23-configure-ac.patch asymptote-2.23-xdg-utils.patch asymptote-2.22-configure-ac.patch asymptote-2.22-xdg-utils.patch asymptote-2.22-info.patch
Date: Tue, 21 May 2013 03:10:26
Message-Id: 20130521031020.658002171F@flycatcher.gentoo.org
1 grozin 13/05/21 03:10:20
2
3 Added: asymptote-2.23-info.patch
4 asymptote-2.23-configure-ac.patch
5 asymptote-2.23-xdg-utils.patch
6 Removed: asymptote-2.22-configure-ac.patch
7 asymptote-2.22-xdg-utils.patch
8 asymptote-2.22-info.patch
9 Log:
10 Version bump fixing #470150
11
12 (Portage version: 2.2.0_alpha175/cvs/Linux i686, signed Manifest commit with key 0x3AFFCE974D34BD8C!)
13
14 Revision Changes Path
15 1.1 media-gfx/asymptote/files/asymptote-2.23-info.patch
16
17 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/asymptote/files/asymptote-2.23-info.patch?rev=1.1&view=markup
18 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/asymptote/files/asymptote-2.23-info.patch?rev=1.1&content-type=text/plain
19
20 Index: asymptote-2.23-info.patch
21 ===================================================================
22 Index: asymptote-2.22/doc/asymptote.texi
23 ===================================================================
24 --- asymptote-2.22.orig/doc/asymptote.texi
25 +++ asymptote-2.22/doc/asymptote.texi
26 @@ -21,7 +21,7 @@ file LICENSE in the top-level source dir
27
28 @dircategory Languages
29 @direntry
30 -* asymptote: (asymptote/asymptote). Vector graphics language.
31 +* asymptote: (asymptote). Vector graphics language.
32 @end direntry
33
34 @titlepage
35
36
37
38 1.1 media-gfx/asymptote/files/asymptote-2.23-configure-ac.patch
39
40 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/asymptote/files/asymptote-2.23-configure-ac.patch?rev=1.1&view=markup
41 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/asymptote/files/asymptote-2.23-configure-ac.patch?rev=1.1&content-type=text/plain
42
43 Index: asymptote-2.23-configure-ac.patch
44 ===================================================================
45 Index: asymptote-2.22/configure.ac
46 ===================================================================
47 --- asymptote-2.22.orig/configure.ac
48 +++ asymptote-2.22/configure.ac
49 @@ -154,7 +154,7 @@ if test "x$ac_cv_use_gc" != "xno" ; then
50 fi
51 CPPFLAGS_SAVE=$CPPFLAGS
52 CPPFLAGS=$CPPFLAGS" $INCL"
53 - AC_CHECK_HEADER(gc.h,
54 + AC_CHECK_HEADER([gc/gc.h],
55 AC_CHECK_LIB([gc],[GC_malloc],[
56 LIBS=$LIBS"-lgc "
57 AC_MSG_NOTICE([enabling system $GCNAME])],[
58 @@ -227,7 +227,17 @@ AC_MSG_ERROR([*** Please install libm on
59 AC_CHECK_LIB([z], [deflate],,
60 AC_MSG_ERROR([*** Please install libz on your system ***]))
61 AX_PTHREAD
62 -AC_CHECK_LIB([sigsegv], [stackoverflow_install_handler])
63 +
64 +AC_ARG_WITH(sigsegv,
65 + [ --with-sigsegv use libsigsegv],
66 + [with_sigsegv=$withval],
67 + [with_sigsegv="no"])
68 +if test "$with_sigsegv" = "yes"; then
69 +AC_CHECK_HEADER([sigsegv.h],
70 + AC_CHECK_LIB([sigsegv], [stackoverflow_install_handler]),
71 + AC_MSG_NOTICE([*** Header file sigsegv.h not found ***]))
72 +fi
73 +
74 AC_CHECK_LIB([rt], [sched_yield])
75
76 AC_ARG_ENABLE(readline,
77
78
79
80 1.1 media-gfx/asymptote/files/asymptote-2.23-xdg-utils.patch
81
82 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/asymptote/files/asymptote-2.23-xdg-utils.patch?rev=1.1&view=markup
83 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/asymptote/files/asymptote-2.23-xdg-utils.patch?rev=1.1&content-type=text/plain
84
85 Index: asymptote-2.23-xdg-utils.patch
86 ===================================================================
87 Index: asymptote-2.22/settings.cc
88 ===================================================================
89 --- asymptote-2.22.orig/settings.cc
90 +++ asymptote-2.22/settings.cc
91 @@ -90,14 +90,14 @@ bool msdos=false;
92 string HOME="HOME";
93 string docdir=ASYMPTOTE_DOCDIR;
94 const char pathSeparator=':';
95 -string defaultPSViewer="gv";
96 +string defaultPSViewer="xdg-open";
97 #ifdef __APPLE__
98 string defaultPDFViewer="open";
99 #else
100 -string defaultPDFViewer="acroread";
101 +string defaultPDFViewer="xdg-open";
102 #endif
103 string defaultGhostscript="gs";
104 -string defaultDisplay="display";
105 +string defaultDisplay="xdg-open";
106 string defaultAnimate="animate";
107 void queryRegistry() {}
108 const string dirsep="/";