blob: 5e54a459ea6399876e1d8ffa74c146ec3b2f2e3e (
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
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit gap-pkg prefix
DESCRIPTION="GRaph Algorithms using PErmutation groups"
SRC_URI="https://github.com/gap-packages/${PN}/releases/download/v${PV}/${P}.tar.gz"
LICENSE="Apache-2.0 GPL-2+"
SLOT="0"
KEYWORDS="~amd64 ~riscv"
IUSE="bliss"
RDEPEND="bliss? ( sci-libs/bliss )
!bliss? ( sci-mathematics/nauty )"
PATCHES=( "${FILESDIR}/${PN}-4.9.0-exec.patch" )
DOCS=( README.md CHANGES.md )
GAP_PKG_HTML_DOCDIR="htm"
GAP_PKG_EXTRA_INSTALL=( grh )
gap-pkg_enable_tests
src_prepare() {
# The ./configure script and Makefile are only used to build
# the "dreadnaut" executable that we don't want anyway (we
# use the system copy; see $PATCHES).
rm -r nauty2_8_6 || die
rm configure Makefile.in || die
default
local nauty="true"
use bliss && nauty="false"
sed -i "s:@nauty@:${nauty}:" lib/grape.g || die
eprefixify lib/grape.g
}
|