Gentoo Archives: gentoo-commits

From: Justin Lecher <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:ccp4 commit in: sci-chemistry/pointless/
Date: Sat, 01 Jun 2013 17:24:41
Message-Id: 1370106130.df19e6c5ac85cf869b2dc306e7468dd8910a69dd.jlec@gentoo
1 commit: df19e6c5ac85cf869b2dc306e7468dd8910a69dd
2 Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jun 1 17:02:10 2013 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Sat Jun 1 17:02:10 2013 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=df19e6c5
7
8 sci-chemistry/pointless: tc-getPKG_CONFIG is callable
9
10 Package-Manager: portage-2.2.0_alpha177
11
12 ---
13 sci-chemistry/pointless/ChangeLog | 3 +++
14 sci-chemistry/pointless/pointless-1.8.2.ebuild | 12 ++++++------
15 2 files changed, 9 insertions(+), 6 deletions(-)
16
17 diff --git a/sci-chemistry/pointless/ChangeLog b/sci-chemistry/pointless/ChangeLog
18 index d80d30f..b7e8a14 100644
19 --- a/sci-chemistry/pointless/ChangeLog
20 +++ b/sci-chemistry/pointless/ChangeLog
21 @@ -3,6 +3,9 @@
22 # $Header: /var/cvsroot/gentoo-x86/sci-chemistry/pointless/ChangeLog,v 1.34 2012/10/19 15:19:34 jlec Exp $
23
24 01 Jun 2013; Justin Lecher <jlec@g.o> pointless-1.8.2.ebuild:
25 + tc-getPKG_CONFIG is callable
26 +
27 + 01 Jun 2013; Justin Lecher <jlec@g.o> pointless-1.8.2.ebuild:
28 Use tc-getPKG_CONFIG
29
30 *pointless-1.8.2 (01 Jun 2013)
31
32 diff --git a/sci-chemistry/pointless/pointless-1.8.2.ebuild b/sci-chemistry/pointless/pointless-1.8.2.ebuild
33 index f255930..e3d89e2 100644
34 --- a/sci-chemistry/pointless/pointless-1.8.2.ebuild
35 +++ b/sci-chemistry/pointless/pointless-1.8.2.ebuild
36 @@ -37,12 +37,12 @@ src_compile() {
37 LFLAGS="${LDFLAGS}" \
38 CLIB="${EPREFIX}/usr/$(get_libdir)" \
39 CCTBX_VERSION=2013 \
40 - ICCP4="$(tc-getPKG_CONFIG --cflags libccp4c libccp4f mmdb)" \
41 - ICLPR="$(tc-getPKG_CONFIG --cflags clipper)" \
42 - ITBX="$(tc-getPKG_CONFIG --cflags cctbx)" \
43 - LCCP4="$(tc-getPKG_CONFIG --libs libccp4c libccp4f mmdb)"\
44 - LCLPR="$(tc-getPKG_CONFIG --libs clipper)" \
45 - LTBX="$(tc-getPKG_CONFIG --libs cctbx)" \
46 + ICCP4="$($(tc-getPKG_CONFIG) --cflags libccp4c libccp4f mmdb)" \
47 + ICLPR="$($(tc-getPKG_CONFIG) --cflags clipper)" \
48 + ITBX="$($(tc-getPKG_CONFIG) --cflags cctbx)" \
49 + LCCP4="$($(tc-getPKG_CONFIG) --libs libccp4c libccp4f mmdb)"\
50 + LCLPR="$($(tc-getPKG_CONFIG) --libs clipper)" \
51 + LTBX="$($(tc-getPKG_CONFIG) --libs cctbx)" \
52 SLIB=""
53 }