blob: 27af7e59e3b8b747e7e834b7eb426f6e8d9ec8ff (
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
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit toolchain-funcs
DESCRIPTION="Mixed Integer Linear Programming (MILP) solver"
HOMEPAGE="https://sourceforge.net/projects/lpsolve/"
SRC_URI="https://downloads.sourceforge.net/${PN}/lp_solve_${PV}_source.tar.gz"
S="${WORKDIR}"/lp_solve_$(ver_cut 1-2)
LICENSE="LGPL-2.1"
SLOT="0/55"
KEYWORDS="amd64 ~arm arm64 ~loong ~ppc ppc64 ~riscv x86 ~amd64-linux ~x86-linux"
DEPEND="sci-libs/colamd"
RDEPEND="${DEPEND}"
PATCHES=(
"${FILESDIR}"/${PN}-5.5.2.11-misc.patch
)
src_prepare() {
default
local actual_soname=$(grep -iEo -- "-soname,liblpsolve([A-z0-9]+)" lpsolve*/ccc | sed -e 's:-soname,liblpsolve::')
if [[ ${actual_soname} != ${SLOT##*/} ]] ; then
eerror "Actual SONAME: ${actual_soname}"
eerror "Expected SONAME: ${SLOT##*/}"
die "Expected SONAME not found! Please update the subslot in the ebuild!"
fi
}
src_compile() {
tc-export AR CC RANLIB LD
cd lpsolve55 || die
sh -x ccc || die
rm bin/ux*/liblpsolve55.a || die
cd ../lp_solve || die
sh -x ccc || die
}
src_install() {
einstalldocs
dobin lp_solve/bin/ux*/lp_solve
dolib.so lpsolve55/bin/ux*/liblpsolve55.so
insinto /usr/include/lpsolve
doins *.h
}
|