forked from Lainports/freebsd-ports
automatic persistence and versioning by recording messages sent to objects. It offers a flexible versioning scheme where both individual objects and their entire object graph can be versioned separately. The built-in object model is a generalization of the property model used by the AddressBook framework. Foreign model objects can be also integrated by wrapping them with a special proxy. CoreObject uses the EtoileSerialize framework which, in many cases, allows objects and messages to be automatically serialized with no extra code being written. WWW: http://www.etoile-project.org/
39 lines
1 KiB
Makefile
39 lines
1 KiB
Makefile
# New ports collection makefile for: etoile-coreobject
|
|
# Date created: 23 Nov 2008
|
|
# Whom: dirk.meyer@dinoex.sub.org
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= coreobject
|
|
PORTVERSION= 0.4.0
|
|
CATEGORIES= devel gnustep
|
|
MASTER_SITES= http://download.gna.org/etoile/
|
|
PKGNAMEPREFIX= etoile-
|
|
DISTNAME= etoile-${PORTVERSION}
|
|
|
|
MAINTAINER= dinoex@FreeBSD.org
|
|
COMMENT= Etoile Project CoreObject framework
|
|
|
|
USE_BZIP2= yes
|
|
USE_GNUSTEP= yes
|
|
USE_GNUSTEP_PREFIX= yes
|
|
USE_GNUSTEP_BACK= yes
|
|
USE_GNUSTEP_BUILD= yes
|
|
USE_GNUSTEP_INSTALL= yes
|
|
USE_GNUSTEP_LDCONFIG= ${GNUSTEP_LOCAL_LIBRARIES}
|
|
USE_GNUSTEP_LOCAL_LIBS+= EtoileFoundation:${FOUNDATION_PORT}
|
|
USE_GNUSTEP_LOCAL_LIBS+= EtoileSerialize:${SERIALIZE_PORT}
|
|
USE_PGSQL= yes
|
|
|
|
DEFAULT_LIBVERSION= 0.4
|
|
WRKSRC= ${WRKDIR}/Etoile-${PORTVERSION}
|
|
USE_GNUSTEP_MAKE_DIRS+= Frameworks/CoreObject
|
|
DEFAULT_LIBVERSION2= 0.1
|
|
PLIST_SUB+= LIBVERSION2=${DEFAULT_LIBVERSION2}
|
|
PLIST_SUB+= MAJORLIBVERSION2=${DEFAULT_LIBVERSION2:C/([0-9]).*/\1/1}
|
|
|
|
FOUNDATION_PORT?= devel/etoile-foundation
|
|
SERIALIZE_PORT?= devel/etoile-serialize
|
|
|
|
.include <bsd.port.mk>
|