Alarig Le Lay
e1c793b7b9
Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Alarig Le Lay <alarig@swordarmor.fr
52 lines
1.2 KiB
Bash
52 lines
1.2 KiB
Bash
# Copyright 1999-2022 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit multiprocessing toolchain-funcs vcs-snapshot
|
|
|
|
MY_PV="8653eff"
|
|
|
|
DESCRIPTION="A collection of C++ libraries (successor of libcult)"
|
|
HOMEPAGE="https://www.codesynthesis.com/projects/libcutl/"
|
|
SRC_URI="https://git.codesynthesis.com/cgit/${PN}/${PN}/snapshot/${MY_PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE="static-libs"
|
|
|
|
BDEPEND="dev-util/build2"
|
|
|
|
src_configure() {
|
|
local myconfigargs=(
|
|
config.cxx="$(tc-getCXX)"
|
|
config.cxx.coptions="${CXXFLAGS}"
|
|
config.cxx.loptions="${LDFLAGS}"
|
|
config.bin.ar="$(tc-getAR)"
|
|
config.bin.ranlib="$(tc-getRANLIB)"
|
|
config.bin.lib="$(usex static-libs both shared)"
|
|
config.install.lib="exec_root/$(get_libdir)"
|
|
config.install.doc="data_root/share/doc/${PF}"
|
|
)
|
|
|
|
MAKE=b MAKEOPTS="--jobs $(makeopts_jobs) -V" \
|
|
emake "${myconfigargs[@]}" configure
|
|
}
|
|
|
|
src_compile() {
|
|
MAKE=b MAKEOPTS="--jobs $(makeopts_jobs) -V" \
|
|
emake
|
|
}
|
|
|
|
src_test() {
|
|
MAKE=b MAKEOPTS="--jobs $(makeopts_jobs) -V" \
|
|
emake test
|
|
}
|
|
|
|
src_install() {
|
|
einstalldocs
|
|
MAKE=b MAKEOPTS="--jobs $(makeopts_jobs) -V" \
|
|
emake config.install.root="${ED}/usr" install
|
|
}
|