mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-13 03:03:15 +00:00
a0bcd2cf68
PR: 213195 Submitted by: mat Exp-run by: antoine Sponsored by: Absolight Differential Revision: https://reviews.freebsd.org/D8093
32 lines
679 B
Makefile
32 lines
679 B
Makefile
# Created by: Wen Heping <wenheping@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= igraph
|
|
PORTVERSION= 0.7.1
|
|
CATEGORIES= math
|
|
MASTER_SITES= http://igraph.org/nightly/get/c/
|
|
|
|
MAINTAINER= wen@FreeBSD.org
|
|
COMMENT= Package For Manipulating Undirected And Directed Graphs
|
|
|
|
LICENSE= GPLv2
|
|
|
|
LIB_DEPENDS= libgmp.so:math/gmp
|
|
|
|
GNU_CONFIGURE= yes
|
|
USES= gmake libtool pathfix
|
|
USE_GNOME= libxml2
|
|
CONFIGURE_ARGS+= --enable-gmp
|
|
CFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
CONFIGURE_ARGS+= CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}"
|
|
USE_LDCONFIG= yes
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${ARCH} == "sparc64"
|
|
BROKEN= Does not compile on sparc64: uses i386 asm
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|