blob: a878b51963e2d168a0972ae60fdd1675bf7484c4 (
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-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/nauty/nauty-2.4.2.ebuild,v 1.4 2012/05/16 12:47:23 tomka Exp $
EAPI="2"
inherit versionator
MY_PV=$(replace_version_separator 2 'r')
MY_PV=$(delete_version_separator 1 ${MY_PV})
DESCRIPTION="program for computing automorphism groups of graphs and digraphs."
HOMEPAGE="http://cs.anu.edu.au/~bdm/nauty/"
SRC_URI="http://cs.anu.edu.au/~bdm/${PN}/${PN}${MY_PV}.tar.gz"
LICENSE="nauty"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE="doc"
S="${WORKDIR}/${PN}${MY_PV}"
src_prepare () {
sed -i "s/LDFLAGS=/LDFLAGS=${LDFLAGS}/" makefile.in || die
}
src_test () {
make checks || die "tests failed"
}
src_install () {
dobin addedgeg amtog biplabg catg complg copyg countg \
deledgeg directg dreadnaut dretog genbg geng genrang \
gentourng labelg listg multig newedgeg NRswitchg pickg \
planarg shortg showg || die "install failed"
dodoc README formats.txt
if use doc; then
einfo "The pdf manual is to be found in /usr/share/doc/${PF}."
dodoc nug.pdf
fi
}
|