You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.2 KiB
56 lines
1.2 KiB
# Copyright 1999-2023 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="mirror://sourceforge/${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
|
|
}
|