68 lines
1.6 KiB
Bash
68 lines
1.6 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="a54c695"
|
||
|
|
||
|
DESCRIPTION="Command Line Interface compiler for C++"
|
||
|
HOMEPAGE="https://www.codesynthesis.com/projects/cli/"
|
||
|
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"
|
||
|
|
||
|
RDEPEND="dev-cpp/libcutl"
|
||
|
DEPEND="${RDEPEND}"
|
||
|
BDEPEND="dev-util/build2"
|
||
|
|
||
|
src_prepare() {
|
||
|
default
|
||
|
|
||
|
# Create files needed for build
|
||
|
touch cli/doc/cli.{1,xhtml} || die "touch failed"
|
||
|
sed -i -e '/html2ps/d' \
|
||
|
-e '/ps2pdf14/d' \
|
||
|
cli/doc/doc.sh || die "sed failed"
|
||
|
}
|
||
|
|
||
|
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: cli/
|
||
|
}
|
||
|
|
||
|
src_compile() {
|
||
|
MAKE=b MAKEOPTS="--jobs $(makeopts_jobs) -V" \
|
||
|
emake cli/
|
||
|
# Compile man and docs
|
||
|
pushd cli/doc || die "pushd failed"
|
||
|
./doc.sh || die "doc.sh failed"
|
||
|
popd || die "popd failed"
|
||
|
}
|
||
|
|
||
|
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: cli/
|
||
|
}
|