You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
112 lines
2.8 KiB
112 lines
2.8 KiB
4 years ago
|
# Copyright 1999-2020 Gentoo Authors
|
||
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
|
||
|
EAPI=7
|
||
|
|
||
|
MY_P="${PN}-$(ver_cut 1-3)-b.$(ver_cut 5)"
|
||
|
|
||
|
BUILD2_PN=build2-toolchain
|
||
|
BUILD2_PV="0.13.0"
|
||
|
BUILD2_P="${BUILD2_PN}-${BUILD2_PV}"
|
||
|
|
||
|
inherit toolchain-funcs multiprocessing
|
||
|
SRC_URI="https://pkg.cppget.org/1/beta/odb/${MY_P}.tar.gz
|
||
|
https://download.build2.org/${BUILD2_PV}/${BUILD2_P}.tar.xz"
|
||
|
KEYWORDS="~amd64 ~x86"
|
||
|
DESCRIPTION="Common ODB runtime library"
|
||
|
HOMEPAGE="https://codesynthesis.com/products/odb/"
|
||
|
|
||
|
LICENSE="|| ( Code-Synthesis-ODB GPL-2 )"
|
||
|
SLOT="0"
|
||
|
IUSE="test"
|
||
|
RESTRICT="!test? ( test )"
|
||
|
|
||
|
DEPEND="
|
||
|
"
|
||
|
BDEPEND="virtual/pkgconfig"
|
||
|
RDEPEND="${DEPEND}
|
||
|
!<dev-util/build2-0.13.0
|
||
|
"
|
||
|
|
||
|
BS="${WORKDIR}/${BUILD2_P}"
|
||
|
S="${WORKDIR}/${MY_P}"
|
||
|
|
||
|
b() {
|
||
|
local myargs=(
|
||
|
--jobs $(makeopts_jobs)
|
||
|
--verbose 3
|
||
|
)
|
||
|
export LD_LIBRARY_PATH="${BS}/libbutl/libbutl:${BS}/build2/libbuild2:${BS}/build2/libbuild2/bash:${BS}/build2/libbuild2/in:${BS}/build2/libbuild2/bin:${BS}/build2/libbuild2/c:${BS}/build2/libbuild2/cc:${BS}/build2/libbuild2/cxx:${BS}/build2/libbuild2/version:${BS}/libpkgconf/libpkgconf:${LD_LIBRARY_PATH}"
|
||
|
set -- "${BS}"/build2/build2/b-boot "${@}" "${myargs[@]}"
|
||
|
echo "${@}"
|
||
|
"${@}" || die "${@} failed"
|
||
|
}
|
||
|
|
||
|
src_prepare() {
|
||
|
pushd "${BS}" || die
|
||
|
eapply "${FILESDIR}"/build2-0.13.0_alpha0_pre20200710-nousrlocal.patch
|
||
|
printf 'cxx.libs += %s\ncxx.poptions += %s\n' \
|
||
|
"-L${EPREFIX}/usr/$(get_libdir) $($(tc-getPKG_CONFIG) sqlite3 --libs)" \
|
||
|
"$($(tc-getPKG_CONFIG) sqlite3 --cflags)" >> \
|
||
|
libodb-sqlite/buildfile \
|
||
|
|| die
|
||
|
sed \
|
||
|
-e 's:libsqlite3[/]\?::' \
|
||
|
-i buildfile build/bootstrap.build \
|
||
|
|| die
|
||
|
|
||
|
if has_version dev-util/pkgconf; then
|
||
|
for i in build2/build2/buildfile build2/libbuild2/buildfile; do
|
||
|
printf 'cxx.libs += %s\ncxx.poptions += %s\n' \
|
||
|
"$($(tc-getPKG_CONFIG) libpkgconf --libs)" \
|
||
|
"$($(tc-getPKG_CONFIG) libpkgconf --cflags)" >> \
|
||
|
"${i}" \
|
||
|
|| die
|
||
|
done
|
||
|
sed \
|
||
|
-e 's:libpkgconf[/]\?::' \
|
||
|
-i buildfile build/bootstrap.build \
|
||
|
|| die
|
||
|
fi
|
||
|
popd || die
|
||
|
|
||
|
default
|
||
|
}
|
||
|
|
||
|
src_configure() {
|
||
|
pushd "${BS}" || die
|
||
|
emake -C build2 -f bootstrap.gmake \
|
||
|
CXX=$(tc-getCXX) \
|
||
|
CXXFLAGS="${CXXFLAGS}" \
|
||
|
LDFLAGS="${LDFLAGS}"
|
||
|
popd || die
|
||
|
|
||
|
b configure \
|
||
|
config.cxx="$(tc-getCXX)" \
|
||
|
config.cxx.coptions="${CXXFLAGS}" \
|
||
|
config.cxx.loptions="${LDFLAGS}" \
|
||
|
config.c="$(tc-getCC)" \
|
||
|
config.cc.coptions="${CFLAGS}" \
|
||
|
config.cc.loptions="${LDFLAGS}" \
|
||
|
config.bin.ar="$(tc-getAR)" \
|
||
|
config.bin.ranlib="$(tc-getRANLIB)" \
|
||
|
config.bin.lib=shared \
|
||
|
config.install.chroot="${D}" \
|
||
|
config.install.root="${EPREFIX}"/usr \
|
||
|
config.install.lib="${EPREFIX}"/usr/$(get_libdir) \
|
||
|
config.install.doc="${EPREFIX}"/usr/share/doc/${PF}
|
||
|
}
|
||
|
|
||
|
src_compile() {
|
||
|
b update-for-install
|
||
|
use test && b update-for-test
|
||
|
}
|
||
|
|
||
|
src_test() {
|
||
|
b test
|
||
|
}
|
||
|
|
||
|
src_install() {
|
||
|
b install
|
||
|
}
|