2853197ac2
is written in Objective-C. With FT you can persistently manage graphs consisting of nodes and edges. Each node may provide so-called services. Such a service may be e.g. a dictionary services, which all nodes provide at present. This service allows the storage of any data in a node and is based on keys which uniquely identify content within a dictionary. WWW: http://FortyTwo.sourceforge.net/index.html
38 lines
993 B
Makefile
38 lines
993 B
Makefile
# New ports collection makefile for: fortytwo
|
|
# Date created: 28 Nov 2006
|
|
# Whom: dirk.meyer@dinoex.sub.org
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= fortytwo
|
|
PORTVERSION= 0.2.0
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= fortytwo
|
|
DISTFILES= FT-${PORTVERSION}-src.tgz \
|
|
FT-${PORTVERSION}-api-ref.tgz
|
|
|
|
MAINTAINER= dinoex@FreeBSD.org
|
|
COMMENT= Graph management system for GNUstep
|
|
|
|
USE_GNUSTEP= yes
|
|
USE_GNUSTEP_PREFIX= yes
|
|
USE_GNUSTEP_BACK= yes
|
|
USE_GNUSTEP_BUILD= yes
|
|
USE_GNUSTEP_INSTALL= yes
|
|
USE_GNUSTEP_LOCAL_LIBS+= Encore:${ENCORE_PORT}
|
|
USE_GNUSTEP_LOCAL_LIBS+= BDB:${FORTYTWO_BDB_PORT}
|
|
DEFAULT_LIBVERSION= 0.1
|
|
USE_GNUSTEP_LDCONFIG= ${LOCALLIBDIR}
|
|
USE_BDB= 43
|
|
|
|
WRKSRC= ${WRKDIR}/FT-${PORTVERSION}
|
|
DOCSDIR= ${GNUSTEP_PREFIX}/Local/Library/Documentation/FT
|
|
|
|
ENCORE_PORT?= devel/fortytwo-encore
|
|
FORTYTWO_BDB_PORT?= databases/fortytwo-bdb
|
|
ADDITIONAL_OBJCFLAGS+= -I${BDB_INCLUDE_DIR}
|
|
ADDITIONAL_LDFLAGS+= -L${BDB_LIB_DIR}
|
|
|
|
.include <bsd.port.mk>
|