2008-07-18 14:36:04 +02:00
|
|
|
# New ports collection makefile for: igarph
|
|
|
|
# Date created: 07 July 2008
|
|
|
|
# Whom: Wen Heping <wenheping@gmail.com>
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
|
|
|
PORTNAME= igraph
|
2010-11-08 08:18:52 +01:00
|
|
|
PORTVERSION= 0.5.4
|
2008-07-18 14:36:04 +02:00
|
|
|
CATEGORIES= math
|
2010-11-08 08:18:52 +01:00
|
|
|
MASTER_SITES= SF/${PORTNAME}/C%20library/${PORTVERSION}
|
2008-07-18 14:36:04 +02:00
|
|
|
|
2010-11-08 08:18:52 +01:00
|
|
|
MAINTAINER= wen@FreeBSD.org
|
2008-07-18 14:36:04 +02:00
|
|
|
COMMENT= Package For Manipulating Undirected And Directed Graphs
|
|
|
|
|
2010-05-02 05:04:57 +02:00
|
|
|
LIB_DEPENDS= gmp.10:${PORTSDIR}/math/gmp \
|
|
|
|
xml2.5:${PORTSDIR}/textproc/libxml2
|
2008-07-18 14:36:04 +02:00
|
|
|
|
|
|
|
GNU_CONFIGURE= yes
|
2012-10-10 00:12:13 +02:00
|
|
|
USE_GCC= any
|
2008-07-18 14:36:04 +02:00
|
|
|
USE_GMAKE= yes
|
|
|
|
CONFIGURE_ARGS+= --enable-gmp
|
|
|
|
CFLAGS+= -I${LOCALBASE}/include
|
|
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
|
|
CONFIGURE_ARGS+= CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}"
|
|
|
|
USE_LDCONFIG= yes
|
|
|
|
|
|
|
|
post-patch:
|
|
|
|
@${REINPLACE_CMD} -e 's|@libdir@/pkgconfig|@prefix@/libdata/pkgconfig|' \
|
|
|
|
${WRKSRC}/Makefile.in
|
|
|
|
|
2009-05-29 06:28:20 +02:00
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
|
|
|
|
.if ${ARCH} == "sparc64"
|
|
|
|
BROKEN= Does not compile on sparc64: uses i386 asm
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.include <bsd.port.post.mk>
|