mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-03 01:23:49 +00:00
8503536d38
Approved by: portmgr (kris)
90 lines
2.1 KiB
Makefile
90 lines
2.1 KiB
Makefile
# Ports collection makefile for: treecc
|
|
# Date created: Wed Jul 11 00:45:15 EDT 2001
|
|
# Whom: Michael Johnson <ahze@ahze.net>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= pnet
|
|
PORTVERSION= ${PNET_VERSION}
|
|
PORTREVISION= ${PNET_REVISION}
|
|
CATEGORIES= lang
|
|
MASTER_SITES= ${PNET_MASTER_SITES}
|
|
MASTER_SITE_SUBDIR= ${PNET_MASTER_SITE_SUBDIR}
|
|
PKGNAMESUFFIX= base
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= C\# compiler and runtime engine
|
|
|
|
BUILD_DEPENDS= treecc:${PORTSDIR}/lang/treecc
|
|
|
|
NOT_FOR_ARCHS= sparc64
|
|
|
|
.if !defined(WITHOUT_X11)
|
|
USE_XLIB= yes
|
|
.endif
|
|
|
|
USE_GCC= 3.4
|
|
GNU_CONFIGURE= yes
|
|
USE_GMAKE= yes
|
|
|
|
CONFIGURE_ARGS+= --enable-threads=posix
|
|
|
|
.if !defined(WITH_OPTIMIZED_CFLAGS)
|
|
CONFIGURE_ARGS+= --disable-optimizations
|
|
.endif
|
|
|
|
PORTDOCS= ChangeLog-1 ChangeLog-2 ChangeLog-3 ChangeLog-4 Doxyfile \
|
|
c_language_abi.html embedded.html gtk-sharp.HOWTO \
|
|
l10n.html libgc_changes.txt pinvoke.html pnet_faq.html pnetasm.texi \
|
|
unrolling.txt
|
|
INFO= pnettools
|
|
MAN1= clrwrap.1 csant.1 cscc.1 csdoc.1 csdoc2hier.1 csdoc2html.1 \
|
|
cscc-cpp.1 csdoc2texi.1 cssrc2html.1 ilalink.1 ilasm.1 ildasm.1 \
|
|
ildd.1 ilfind.1 ilgac.1 ilheader.1 ilnative.1 ilranlib.1 ilrun.1 \
|
|
ilsize.1 ilstrip.1 ilverify.1 resgen.1
|
|
MLINKS= ilasm.1 al.1 \
|
|
ar.1 cli-unknown-ar.1 \
|
|
cscc-cpp.1 cli-unknown-cpp.1 \
|
|
cscc.1 cli-unknown-gcc.1 \
|
|
ilranlib.1 cli-unknown-ranlib.1 \
|
|
ilsize.1 cli-unknown-size.1 \
|
|
ilstrip.1 cli-unknown-strip.1
|
|
|
|
.include "${.CURDIR}/../pnet/Makefile.pnet"
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${ARCH} != "i386"
|
|
CONFIGURE_ARGS+= --without-libffi \
|
|
--without-libgc
|
|
PLIST_SUB= I386="@comment "
|
|
.else
|
|
PLIST_SUB= I386=""
|
|
.endif
|
|
|
|
.if ${OSVERSION} < 500000
|
|
PLIST_SUB+= IS4X="@comment " ISNOT4X=""
|
|
.else
|
|
PLIST_SUB+= IS4X="" ISNOT4X="@comment "
|
|
.endif
|
|
|
|
post-everything::
|
|
.if !defined(WITH_OPTIMIZED_CFLAGS)
|
|
@${ECHO_MSG} "Define optimized CFLAGS with"
|
|
@${ECHO_MSG} "WITH_OPTIMIZED_CFLAGS=yes"
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|`$$CC -print-multi-os-directory 2>/dev/null`|elf|' \
|
|
${WRKSRC}/libffi/configure ${WRKSRC}/libffi/configure.in
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
.for docfile in ${PORTDOCS}
|
|
@${INSTALL_DATA} ${WRKSRC}/doc/${docfile} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|