freebsd-ports/lang/libobjc2/Makefile
Dirk Meyer c6b74337ad Replacement for the GNU Objective-C runtime supporting the features
of Objective-C 2 for use with GNUstep and other Objective-C programs.
This runtime is based on the Etoile Objective-C Runtime, an earlier
research prototype, and includes support for non-fragile instance
variables, type-dependent dispatch, and object planes. It is fully
compatible with the FSF's GCC Objective-C ABI and also implements
a new ABI that is supported by Clang and is required for some of
the newer features.
2011-10-19 18:56:47 +00:00

61 lines
1.3 KiB
Makefile

# New ports collection makefile for: libobjc2
# Date created: 7 October 2010
# Whom: Pete French <pete@twisted.org.uk>
#
# $FreeBSD$
#
PORTNAME= libobjc2
PORTVERSION= 1.5.1
CATEGORIES= lang devel gnustep
MASTER_SITES= http://download.gna.org/gnustep/
MAINTAINER= dinoex@FreeBSD.org
COMMENT= Replacement Objective-C runtime supporting Obj-C 2 features
BUILD_DEPENDS= ${LOCALBASE}/bin/as:${PORTSDIR}/devel/binutils
USE_BZIP2= yes
USE_LDCONFIG= yes
MAKE_ENV+= LD=${LOCALBASE}/bin/ld
MAKE_ENV+= SHLIB_VERSION="${SHLIB_VERSION}"
PLIST_SUB= SHLIB=${SHLIB_VERSION}
OPTIONS= NSOBJECT_ROOT "Root class is NSObject not Object" On \
LIBDISPATCH "Build with libdispatch from ports" Off
SHLIB_VERSION?= 15
.include <bsd.port.options.mk>
.if defined(WITH_LIBDISPATCH)
LIB_DEPENDS+= dispatch.0:${PORTSDIR}/devel/libdispatch
MAKE_ARGS+= -DWITHOUT_TOYDISPATCH
PLIST_SUB+= WITH_TOYDISPATCH="@comment "
.else
PLIST_SUB+= WITH_TOYDISPATCH=""
.endif
.if !defined(WITHOUT_NSOBJECT_ROOT)
CPPFLAGS+= -DGNUSTEP
.endif
.include <bsd.port.pre.mk>
.if ${OSVERSION} >= 900000
BROKEN= does not compile on 9.X
.endif
.if (${ARCH} == i386) || (${ARCH} == i486)
CFLAGS+= -march=i586
.endif
post-patch:
${RM} ${WRKSRC}/GNUmakefile
post-install:
.if defined(WITH_LIBDISPATCH)
${RM} ${PREFIX}/include/objc/toydispatch.h
.endif
.include <bsd.port.post.mk>