From 94f06f0e8989640a3d79b0ed5f54c097602e52db Mon Sep 17 00:00:00 2001 From: Yuri Victorovich Date: Sat, 22 May 2021 15:34:29 -0700 Subject: [PATCH] math/conauto: New port: Program for graph isomorphism testing & automorphism group computation --- math/Makefile | 1 + math/conauto/Makefile | 24 ++++++++++++++++++++++++ math/conauto/distinfo | 3 +++ math/conauto/pkg-descr | 4 ++++ 4 files changed, 32 insertions(+) create mode 100644 math/conauto/Makefile create mode 100644 math/conauto/distinfo create mode 100644 math/conauto/pkg-descr diff --git a/math/Makefile b/math/Makefile index ae224dcd307a..d4c55f4dade9 100644 --- a/math/Makefile +++ b/math/Makefile @@ -211,6 +211,7 @@ SUBDIR += coinmumps SUBDIR += coinutils SUBDIR += combblas + SUBDIR += conauto SUBDIR += concorde SUBDIR += convertall SUBDIR += coq diff --git a/math/conauto/Makefile b/math/conauto/Makefile new file mode 100644 index 000000000000..3f63db71253e --- /dev/null +++ b/math/conauto/Makefile @@ -0,0 +1,24 @@ +PORTNAME= conauto +DISTVERSION= 2.03 +CATEGORIES= math +MASTER_SITES= https://sites.google.com/site/giconauto/home/ + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Program for graph isomorphism testing & automorphism group computation + +LICENSE= GPLv3+ + +USES= gmake + +WRKSRC_SUBDIR= src + +MAKE_ARGS= CC=${CC} CFLAGS="${CFLAGS}" + +CFLAGS+= -fcommon + +PLIST_FILES= bin/${PORTNAME} + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/../bin/${PORTNAME}* ${STAGEDIR}${PREFIX}/bin/${PORTNAME} + +.include diff --git a/math/conauto/distinfo b/math/conauto/distinfo new file mode 100644 index 000000000000..0ffb8ba85a8f --- /dev/null +++ b/math/conauto/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1621722175 +SHA256 (conauto-2.03.tar.gz) = d76e9ef4c2449294ec4ce9b3be0abe8f5cbf8884c0ce799f10d659ad644d158a +SIZE (conauto-2.03.tar.gz) = 21577 diff --git a/math/conauto/pkg-descr b/math/conauto/pkg-descr new file mode 100644 index 000000000000..7a90b60624e2 --- /dev/null +++ b/math/conauto/pkg-descr @@ -0,0 +1,4 @@ +Algorithm conauto for Graph Isomorphism Testing and automorphism group +computation. + +WWW: https://sites.google.com/site/giconauto/