blob: 7995a4055cb2052b613e9f4ab709e68476adfd98 (
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
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit autotools
SRC_URI="http://www.tcs.hut.fi/Software/${PN}/${P}.zip"
DESCRIPTION="A Tool for Computing Automorphism Groups and Canonical Labelings of Graphs"
HOMEPAGE="http://www.tcs.hut.fi/Software/bliss/index.shtml"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc gmp static-libs"
RDEPEND="gmp? ( dev-libs/gmp:0= )"
DEPEND="${RDEPEND}
doc? ( app-doc/doxygen )"
#patches from http://pkgs.fedoraproject.org/cgit/rpms/bliss.git/tree/
PATCHES=(
"${FILESDIR}/${P}-error.patch"
"${FILESDIR}/${P}-rehn.patch"
"${FILESDIR}/${P}-autotools.patch"
)
src_prepare() {
cp "${FILESDIR}/${P}.1.in" "${PN}.1.in" || die
rm Makefile || die
default
eautoreconf
}
src_configure() {
econf $(use_with gmp) $(use_enable static-libs static)
}
src_compile() {
emake all $(usex doc html "")
}
src_install() {
use doc && HTML_DOCS=( "${S}"/html/. )
default
#comes with pkg-config file
find "${ED}" -name '*.la' -delete || die
}
|