Files
guru/sci-mathematics/chaco/chaco-2.2.ebuild
Anna Vyalkova d89786cb1d sci-mathematics/chaco: fix CC
Closes: https://bugs.gentoo.org/785166
Signed-off-by: Anna Vyalkova <cyber@sysrq.in>
2021-05-16 19:05:03 +05:00

28 lines
596 B
Bash

# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit toolchain-funcs
DESCRIPTION="Software for Partitioning Graphs"
HOMEPAGE="https://www3.cs.stonybrook.edu/~algorith/implement/chaco/implement.shtml"
SRC_URI="https://www3.cs.stonybrook.edu/~algorith/implement/${PN}/distrib/Chaco-${PV}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~x86"
PATCHES=( "${FILESDIR}/makefile.patch" )
S="${WORKDIR}/Chaco-${PV}"
src_compile() {
cd code || die
tc-export CC
default
}
src_install() {
dobin "exec/chaco"
dodoc -r doc/.
}