On 10/10/2015 01:31 PM, Manuel Rüger wrote:
> commit: 9d15a1c12b3c4f98445a45c051733eb2a67fdb28
> Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
> AuthorDate: Sat Oct 10 11:30:54 2015 +0000
> Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
> CommitDate: Sat Oct 10 11:30:54 2015 +0000
> URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d15a1c1
>
> dev-libs/libgit2: Version bump
>
[...]
> +
> +RDEPEND="
> + !libressl? ( dev-libs/openssl:0 )
> + libressl? ( dev-libs/libressl )
> + sys-libs/zlib
> + net-libs/http-parser
Please order deps alphabetically (I know I added libressl without
reordering, but that was just to keep the diff as small as possible).
> + gssapi? ( virtual/krb5 )
> + ssh? ( net-libs/libssh2 )
> +"
> +DEPEND="${RDEPEND}
> + virtual/pkgconfig
> +"
> +
[...]
> +
> +src_configure() {
> + local mycmakeargs=(
> + -DLIB_INSTALL_DIR="${EPREFIX}/usr/$(get_libdir)"
Something here seems to "break" the pkgconfig file, see:
# pkg-config --variable libdir libgit2
/usr//usr/lib64
> + $(cmake-utils_use_build test CLAR)
> + $(cmake-utils_use_enable trace TRACE)
> + $(cmake-utils_use_use gssapi GSSAPI)
> + $(cmake-utils_use_use ssh SSH)
> + $(cmake-utils_use threads THREADSAFE)
> + )
> + cmake-utils_src_configure
> +}
[...]