Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-lang/opendylan: opendylan-2013.2.ebuild ChangeLog
Date: Wed, 29 Oct 2014 03:47:12
Message-Id: 20141029034706.C540D8FA3@oystercatcher.gentoo.org
1 patrick 14/10/29 03:47:06
2
3 Modified: opendylan-2013.2.ebuild ChangeLog
4 Log:
5 Fix cc detection #527108
6
7 (Portage version: 2.2.14/cvs/Linux x86_64, unsigned Manifest commit)
8
9 Revision Changes Path
10 1.4 dev-lang/opendylan/opendylan-2013.2.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/opendylan/opendylan-2013.2.ebuild?rev=1.4&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/opendylan/opendylan-2013.2.ebuild?rev=1.4&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/opendylan/opendylan-2013.2.ebuild?r1=1.3&r2=1.4
15
16 Index: opendylan-2013.2.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-lang/opendylan/opendylan-2013.2.ebuild,v
19 retrieving revision 1.3
20 retrieving revision 1.4
21 diff -u -r1.3 -r1.4
22 --- opendylan-2013.2.ebuild 23 Jun 2014 08:41:34 -0000 1.3
23 +++ opendylan-2013.2.ebuild 29 Oct 2014 03:47:06 -0000 1.4
24 @@ -1,9 +1,9 @@
25 # Copyright 1999-2014 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/opendylan/opendylan-2013.2.ebuild,v 1.3 2014/06/23 08:41:34 patrick Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/opendylan/opendylan-2013.2.ebuild,v 1.4 2014/10/29 03:47:06 patrick Exp $
29 EAPI=4
30
31 -inherit autotools
32 +inherit autotools toolchain-funcs
33
34 RESTRICT="test"
35
36 @@ -50,6 +50,8 @@
37 S="${WORKDIR}/${PN}"
38
39 src_prepare() {
40 + # configure autodetects clang and prefers it, #527108
41 + sed -i -e 's/clang//' configure.ac || die
42 mkdir -p build-aux
43 elibtoolize && eaclocal || die "Fail"
44 automake --foreign --add-missing # this one dies wrongfully
45 @@ -76,6 +78,7 @@
46 else
47 PATH=/opt/opendylan/bin:$PATH
48 fi
49 +
50 if use amd64; then
51 econf --prefix=/opt/opendylan || die
52 else
53
54
55
56 1.18 dev-lang/opendylan/ChangeLog
57
58 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/opendylan/ChangeLog?rev=1.18&view=markup
59 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/opendylan/ChangeLog?rev=1.18&content-type=text/plain
60 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/opendylan/ChangeLog?r1=1.17&r2=1.18
61
62 Index: ChangeLog
63 ===================================================================
64 RCS file: /var/cvsroot/gentoo-x86/dev-lang/opendylan/ChangeLog,v
65 retrieving revision 1.17
66 retrieving revision 1.18
67 diff -u -r1.17 -r1.18
68 --- ChangeLog 23 Jun 2014 08:41:34 -0000 1.17
69 +++ ChangeLog 29 Oct 2014 03:47:06 -0000 1.18
70 @@ -1,6 +1,9 @@
71 # ChangeLog for dev-lang/opendylan
72 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
73 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/opendylan/ChangeLog,v 1.17 2014/06/23 08:41:34 patrick Exp $
74 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/opendylan/ChangeLog,v 1.18 2014/10/29 03:47:06 patrick Exp $
75 +
76 + 29 Oct 2014; Patrick Lauer <patrick@g.o> opendylan-2013.2.ebuild:
77 + Fix cc detection #527108
78
79 23 Jun 2014; Patrick Lauer <patrick@g.o> opendylan-2013.2.ebuild:
80 Fix dependencies #514630