blob: 43be1c4b9b84df5750701a9ede008efb410e8aad (
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-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-libs/gamer/gamer-1.5-r2.ebuild,v 1.4 2015/01/31 13:15:05 ago Exp $
EAPI=5
AUTOTOOLS_AUTORECONF=yes
inherit autotools-utils multilib
DESCRIPTION="Geometry-preserving Adaptive MeshER"
HOMEPAGE="http://fetk.org/codes/gamer/index.html"
SRC_URI="http://www.fetk.org/codes/download/${P}.tar.gz"
SLOT="0"
KEYWORDS="amd64 ~x86 ~amd64-linux ~x86-linux"
LICENSE="GPL-2"
IUSE="doc static-libs"
RDEPEND=">=dev-libs/maloc-1.4"
DEPEND="
${RDEPEND}
doc? (
media-gfx/graphviz
app-doc/doxygen
)"
S="${WORKDIR}"/${PN}
PATCHES=(
"${FILESDIR}"/1.4-multilib.patch
"${FILESDIR}"/1.4-doc.patch
)
src_configure() {
local fetk_include
local fetk_lib
local myeconfargs
use doc || myeconfargs+=( ${myconf} --with-doxygen= --with-dot= )
fetk_include="${EPREFIX}"/usr/include
fetk_lib="${EPREFIX}"/usr/$(get_libdir)
export FETK_INCLUDE="${fetk_include}"
export FETK_LIBRARY="${fetk_lib}"
myeconfargs+=(
--docdir="${EPREFIX}"/usr/share/doc/${PF}
--disable-triplet
)
autotools-utils_src_configure
}
|