Gentoo Archives: gentoo-commits

From: "Sergei Trofimovich (slyfox)" <slyfox@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/include-what-you-use: include-what-you-use-3.4.ebuild ChangeLog
Date: Wed, 05 Feb 2014 21:01:55
Message-Id: 20140205210140.7FE992004C@flycatcher.gentoo.org
1 slyfox 14/02/05 21:01:40
2
3 Modified: ChangeLog
4 Added: include-what-you-use-3.4.ebuild
5 Log:
6 Version bump (bug #500312 by Dirkjan Ochtman).
7
8 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 611FF3AA)
9
10 Revision Changes Path
11 1.3 dev-util/include-what-you-use/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/include-what-you-use/ChangeLog?rev=1.3&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/include-what-you-use/ChangeLog?rev=1.3&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/include-what-you-use/ChangeLog?r1=1.2&r2=1.3
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-util/include-what-you-use/ChangeLog,v
20 retrieving revision 1.2
21 retrieving revision 1.3
22 diff -u -r1.2 -r1.3
23 --- ChangeLog 3 Oct 2013 06:17:19 -0000 1.2
24 +++ ChangeLog 5 Feb 2014 21:01:40 -0000 1.3
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-util/include-what-you-use
27 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-util/include-what-you-use/ChangeLog,v 1.2 2013/10/03 06:17:19 slyfox Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-util/include-what-you-use/ChangeLog,v 1.3 2014/02/05 21:01:40 slyfox Exp $
31 +
32 +*include-what-you-use-3.4 (05 Feb 2014)
33 +
34 + 05 Feb 2014; Sergei Trofimovich <slyfox@g.o>
35 + +include-what-you-use-3.4.ebuild:
36 + Version bump (bug #500312 by Dirkjan Ochtman).
37
38 03 Oct 2013; Sergei Trofimovich <slyfox@g.o>
39 include-what-you-use-3.3-r1.ebuild:
40
41
42
43 1.1 dev-util/include-what-you-use/include-what-you-use-3.4.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/include-what-you-use/include-what-you-use-3.4.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/include-what-you-use/include-what-you-use-3.4.ebuild?rev=1.1&content-type=text/plain
47
48 Index: include-what-you-use-3.4.ebuild
49 ===================================================================
50 # Copyright 1999-2014 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-util/include-what-you-use/include-what-you-use-3.4.ebuild,v 1.1 2014/02/05 21:01:40 slyfox Exp $
53
54 EAPI=5
55 inherit eutils cmake-utils flag-o-matic
56
57 DESCRIPTION="find unused include directives in C/C++ programs"
58 HOMEPAGE="https://code.google.com/p/include-what-you-use/"
59 # picked from google drive
60 SRC_URI="http://dev.gentoo.org/~slyfox/distfiles/${P}.src.tar.gz"
61
62 LICENSE="GPL-2"
63 SLOT="0"
64 KEYWORDS="~amd64 ~x86"
65
66 RDEPEND="=sys-devel/llvm-3.4*
67 =sys-devel/clang-3.4*"
68 DEPEND="${RDEPEND}"
69
70 S=${WORKDIR}/${PN}
71
72 src_prepare() {
73 epatch_user
74 }
75
76 src_configure() {
77 append-ldflags -L$(llvm-config --libdir)
78
79 local mycmakeargs=(
80 -DLLVM_PATH=$(llvm-config --libdir)
81 )
82 cmake-utils_src_configure
83 }