blob: 2ac5f3c664f966d18067bbb969c5f0ab593dbb3c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python3_{10..11} pypy3 )
inherit python-any-r1 scons-utils toolchain-funcs
DESCRIPTION="diff template library written by C++"
HOMEPAGE="https://github.com/cubicdaiya/dtl"
SRC_URI="https://github.com/cubicdaiya/dtl/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="BSD"
SLOT="0/${PV}"
KEYWORDS="~amd64"
IUSE="examples test"
DEPEND="test? ( dev-cpp/gtest )"
RESTRICT="!test? ( test )"
PATCHES=( "${FILESDIR}/${PN}-1.19_p20210531-do-not-append-O2.patch" )
src_compile() {
escons CC="$(tc-getCC)"
if use test; then
pushd test || die
escons CC="$(tc-getCC)"
popd || die
fi
if use examples; then
pushd examples || die
escons CC="$(tc-getCC)"
popd || die
fi
}
src_install() {
escons prefix="${T}" install
insinto /usr/include/dtl
doins "${T}/dtl/include"/*
if use examples; then
pushd examples || die
rm SConstruct *.o *.cpp *.hpp || die
exeinto /usr/libexec/dtl/examples
doexe *
fi
}
src_test() {
pushd test || die
escons check
}
|