Gentoo Archives: gentoo-dev

From: hasufell <hasufell@g.o>
To: "Manuel Rüger" <mrueg@g.o>
Cc: gentoo-dev@l.g.o
Subject: [gentoo-dev] Re: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libgit2/
Date: Sat, 10 Oct 2015 12:20:04
Message-Id: 56190260.3090005@gentoo.org
1 On 10/10/2015 01:31 PM, Manuel Rüger wrote:
2 > commit: 9d15a1c12b3c4f98445a45c051733eb2a67fdb28
3 > Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
4 > AuthorDate: Sat Oct 10 11:30:54 2015 +0000
5 > Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
6 > CommitDate: Sat Oct 10 11:30:54 2015 +0000
7 > URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d15a1c1
8 >
9 > dev-libs/libgit2: Version bump
10 >
11
12 [...]
13
14 > +
15 > +RDEPEND="
16 > + !libressl? ( dev-libs/openssl:0 )
17 > + libressl? ( dev-libs/libressl )
18 > + sys-libs/zlib
19 > + net-libs/http-parser
20
21 Please order deps alphabetically (I know I added libressl without
22 reordering, but that was just to keep the diff as small as possible).
23
24 > + gssapi? ( virtual/krb5 )
25 > + ssh? ( net-libs/libssh2 )
26 > +"
27 > +DEPEND="${RDEPEND}
28 > + virtual/pkgconfig
29 > +"
30 > +
31
32 [...]
33
34 > +
35 > +src_configure() {
36 > + local mycmakeargs=(
37 > + -DLIB_INSTALL_DIR="${EPREFIX}/usr/$(get_libdir)"
38
39 Something here seems to "break" the pkgconfig file, see:
40
41 # pkg-config --variable libdir libgit2
42 /usr//usr/lib64
43
44 > + $(cmake-utils_use_build test CLAR)
45 > + $(cmake-utils_use_enable trace TRACE)
46 > + $(cmake-utils_use_use gssapi GSSAPI)
47 > + $(cmake-utils_use_use ssh SSH)
48 > + $(cmake-utils_use threads THREADSAFE)
49 > + )
50 > + cmake-utils_src_configure
51 > +}
52
53 [...]

Replies