diff options
author | Christoph Junghans <junghans@gentoo.org> | 2017-07-10 22:07:39 -0600 |
---|---|---|
committer | Christoph Junghans <junghans@gentoo.org> | 2017-07-10 22:07:55 -0600 |
commit | bb14cf9a8b120a20a2874241b08650920991dabf (patch) | |
tree | c13f235e4c97fefb78970559d14859d9340e0faf /sci-mathematics/nauty/nauty-2.6.7.ebuild | |
parent | sys-cluster/ceph: Remove live ebuild since it no longer works (diff) | |
download | gentoo-bb14cf9a8b120a20a2874241b08650920991dabf.tar.gz gentoo-bb14cf9a8b120a20a2874241b08650920991dabf.tar.bz2 gentoo-bb14cf9a8b120a20a2874241b08650920991dabf.zip |
sci-mathematics/nauty: version bump
Package-Manager: Portage-2.3.6, Repoman-2.3.1
Diffstat (limited to 'sci-mathematics/nauty/nauty-2.6.7.ebuild')
-rw-r--r-- | sci-mathematics/nauty/nauty-2.6.7.ebuild | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/sci-mathematics/nauty/nauty-2.6.7.ebuild b/sci-mathematics/nauty/nauty-2.6.7.ebuild new file mode 100644 index 000000000000..2e01267a151a --- /dev/null +++ b/sci-mathematics/nauty/nauty-2.6.7.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit autotools versionator + +MY_PV1=$(replace_version_separator 2 'r') +MY_PV=$(delete_version_separator 1 ${MY_PV1}) + +DESCRIPTION="Computing automorphism groups of graphs and digraphs" +HOMEPAGE="http://pallini.di.uniroma1.it/" +DEBIAN_PATCH_VERSION="1" +SRC_URI="http://cs.anu.edu.au/~bdm/${PN}/${PN}${MY_PV}.tar.gz + mirror://debian/pool/main/${PN:0:1}/${PN}/${PN}_${MY_PV1}+ds-${DEBIAN_PATCH_VERSION}.debian.tar.xz + http://pkgs.fedoraproject.org/cgit/rpms/nauty.git/plain/nauty-popcnt.patch" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~arm ~x86" +IUSE="test" + +DEPEND="dev-libs/gmp:0 + sys-libs/zlib" +RDEPEND="${DEPEND}" + +S="${WORKDIR}/${PN}${MY_PV}" +DOCS=( schreier.txt config.txt formats.txt changes24-26.txt ) +PATCHES=( + "${WORKDIR}"/debian/patches/upstream-lintian-spelling-error.patch + "${WORKDIR}"/debian/patches/upstream-fix-gt_numorbits.patch + "${WORKDIR}"/debian/patches/upstream-fix-include-extern.patch + "${WORKDIR}"/debian/patches/upstream-zlib-blisstog_c.patch + "${WORKDIR}"/debian/patches/upstream-C2help2man.patch + "${WORKDIR}"/debian/patches/upstream-autotoolization.patch + "${WORKDIR}"/debian/patches/system-preprocessing-examples.patch + "${DISTDIR}"/nauty-popcnt.patch +) + +src_prepare() { + default + rm -f makefile + eautoreconf +} + +src_configure() { + econf --disable-static --enable-runtime-popcnt --enable-tls +} |