blob: 1a48e31ad7e575f64a8bcd6f76635173d3dc949c (
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
|
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit autotools
DESCRIPTION="Geometry-preserving Adaptive MeshER"
HOMEPAGE="http://fetk.org/codes/gamer/index.html"
SRC_URI="http://www.fetk.org/codes/download/${P}.tar.gz"
S="${WORKDIR}/${PN}"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="doc"
RDEPEND=">=dev-libs/maloc-1.4"
DEPEND="${RDEPEND}"
BDEPEND="
doc? (
media-gfx/graphviz
app-doc/doxygen
)"
PATCHES=(
"${FILESDIR}"/1.4-multilib.patch
"${FILESDIR}"/1.4-doc.patch
)
src_prepare() {
default
eautoreconf
}
src_configure() {
export FETK_INCLUDE="${ESYSROOT}"/usr/include
export FETK_LIBRARY="${ESYSROOT}"/usr/$(get_libdir)
econf \
--disable-static \
--disable-triplet \
--with-doxygen=$(usex doc "${BROOT}"/usr/bin/doxygen '') \
--with-dot=$(usex doc "${BROOT}"/usr/bin/dot '')
}
src_install() {
default
# no static archives
find "${ED}" -name '*.la' -delete || die
}
|