blob: 30668cbb935aa1282827958572cb5c40f4be3e7c (
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit autotools flag-o-matic toolchain-funcs
DESCRIPTION="GNU Linear Programming Kit"
HOMEPAGE="https://www.gnu.org/software/glpk/"
SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0/40"
KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~x86-macos"
IUSE="doc examples gmp odbc mysql"
BDEPEND="virtual/pkgconfig"
DEPEND="
sci-libs/amd:0=
sci-libs/colamd:=
sys-libs/zlib:0=
gmp? ( dev-libs/gmp:0= )
mysql? ( dev-db/mysql-connector-c )
odbc? (
|| (
dev-db/libiodbc:0
dev-db/unixODBC:0
)
)"
RDEPEND="${DEPEND}"
PATCHES=(
"${FILESDIR}"/${PN}-4.65-fix-mysql-include-prefix.patch
"${FILESDIR}"/${PN}-4.65-debundle-system-libs.patch
"${FILESDIR}"/${PN}-4.65-longstep_verbosity.patch
)
src_prepare() {
# TODO: the ODBC library is dlopen()ed, so we only want to append
# -I<foo> to the preprocessor flags, and not all of the CFLAGS that
# were used to build libiodbc. That fix and the pkg-config fallback
# should be sent upstream, and placed into CPPFLAGS rather than
# CFLAGS (as configure.ac does now).
use odbc && [[ -z $(type -P odbc_config) ]] && \
append-cppflags $($(tc-getPKG_CONFIG) --cflags libiodbc)
default
eautoreconf
}
src_configure() {
local myconf
if use mysql || use odbc; then
myconf="--enable-dl"
else
myconf="--disable-dl"
fi
econf ${myconf} \
--disable-static \
$(use_enable mysql) \
$(use_enable odbc) \
$(use_with gmp)
}
src_install() {
default
if use examples; then
insinto "/usr/share/doc/${PF}"
doins -r examples
docompress -x "/usr/share/doc/${PF}/examples"
fi
use doc && dodoc doc/*.pdf doc/notes/*.pdf doc/*.txt
# no static archives
find "${D}" -name '*.la' -delete || die
}
|