blob: a0663b4f959dcea479fdb172b684d4b982583b86 (
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
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools
MY_PV1=$(ver_rs 2 'r')
MY_PV=$(ver_rs 1 '' $(ver_rs 2 'r'))
DEBIAN_PATCH_VERSION=1
DESCRIPTION="Computing automorphism groups of graphs and digraphs"
HOMEPAGE="https://pallini.di.uniroma1.it/"
SRC_URI="https://pallini.di.uniroma1.it/${PN}${MY_PV}.tar.gz
mirror://debian/pool/main/${PN:0:1}/${PN}/${PN}_${MY_PV1}+ds-${DEBIAN_PATCH_VERSION}.debian.tar.xz
https://src.fedoraproject.org/rpms/nauty/raw/f35/f/nauty-includes.patch"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="examples"
BDEPEND="sys-apps/help2man"
DEPEND="dev-libs/gmp:0
sys-libs/zlib
sci-mathematics/cliquer"
RDEPEND="${DEPEND}"
S="${WORKDIR}/${PN}${MY_PV}"
DOCS=( schreier.txt formats.txt changes24-27.txt )
PATCHES=(
"${WORKDIR}"/debian/patches/upstream-fix-gt_numorbits.patch
"${WORKDIR}"/debian/patches/upstream-C2help2man.patch
"${WORKDIR}"/debian/patches/upstream-autotoolization.patch
"${DISTDIR}"/nauty-includes.patch
"${WORKDIR}"/debian/patches/unbundle-cliquer.patch
)
src_prepare() {
default
rm makefile || die
# The debian patch looks for <cliquer.h>, but the autotools-form of
# cliquer installs that header as <cliquer/cliquer.h>.
sed -e 's~<cliquer\.h>~<cliquer/cliquer\.h>~' -i nautycliquer.h || die
eautoreconf
}
src_configure() {
# Fedora has a patch to enable popcnt at runtime on CPUs that support it,
# but their patch isn't applying cleanly. What's worse, the patch doesn't
# support clang (bug 732020).
econf --disable-static \
--disable-popcnt \
--enable-tls \
--enable-generic
}
src_install() {
default
if use examples; then
docinto examples
dodoc nautyex*.c
fi
find "${ED}" -name '*.la' -delete || die
}
|