blob: 8b316c3595f4bbff9dbd40ddb16bccb9899b2f39 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
# New ports collection makefile for: cli
# Date Created: 28 March 2002
# Whom: Maxim Sobolev <sobomax@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= cli
PORTVERSION= 20021101
CATEGORIES= lang
MASTER_SITES= http://download.microsoft.com/download/.netframesdk/cli3/1.0/wxp/en-us/
DISTNAME= sscli_${PORTVERSION}
EXTRACT_SUFX= .tgz
MAINTAINER= ports@FreeBSD.org
COMMENT= An implementation of the ECMA CLI and the ECMA C\# language
WRKSRC= ${WRKDIR}/sscli
RESTRICTED= "license terms need to be reviewed"
IGNORE= cannot be installed until you read and agree to the license terms
ONLY_FOR_ARCHS= i386
USE_PERL5= yes
USE_REINPLACE= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS= ${BUILD_TYPE}
CONFIGURE_SCRIPT= portconfigure
MAKEFILE= makefile
MAKE_ENV= CC_NAME="${CC}" SHELL="${SH}"
BUILD_TYPE= free
PLIST_SUB= CLI_VERSION="${PORTVERSION}"
.include <bsd.port.pre.mk>
.if ${OSVERSION} >= 500000
GCC_LIB= -lstdc++ -lgcc -lc_r -lc
.else
CFLAGS+= -fpermissive
GCC_LIB= -lstdc++ -lgcc -lc_r
.endif
post-extract:
@${CP} ${SCRIPTDIR}/portconfigure ${WRKSRC}
post-patch:
@${REINPLACE_CMD} -e 's|%%GCC_LIB%%|${GCC_LIB}|g; \
s|-fno-rtti ||g; \
s|-fcheck-new ||g;' \
${WRKSRC}/makefile.common.in \
${WRKSRC}/rotorenv/bin/rotor_x86mk.inc
@${FIND} ${WRKSRC}/rotorenv/bin -type f | ${XARGS} \
${REINPLACE_CMD} -e 's|-Wno-non-virtual-dtor||g; \
s|-Wno-non-template-friend||g;'
@${FIND} ${WRKSRC}/clr/src -type f | ${XARGS} \
${REINPLACE_CMD} -e 's|-Wno-ctor-dtor-privacy||g'
do-build:
@(cd ${BUILD_WRKSRC}; ${SETENV} ${MAKE_ENV} ./buildall ${BUILD_TYPE})
.if !defined(I_AGREE_TO_LICENSE_TERMS)
pre-install:
@${ECHO_MSG} "Please make sure that you have read and understood license terms contained in"
@${ECHO_MSG} "the ${WRKSRC}/license.txt file and if you"
@${ECHO_MSG} "agree with them then add -DI_AGREE_TO_LICENSE_TERMS to command line to"
@${ECHO_MSG} "install the software (i.e. 'make -DI_AGREE_TO_LICENSE_TERMS install')."
@${FALSE}
.endif
do-install:
@${MKDIR} ${PREFIX}/cli-${PORTVERSION}
@${INSTALL_DATA} ${WRKSRC}/license.txt ${PREFIX}/cli-${PORTVERSION}
@cd ${WRKSRC}/build/v1.x86fre.rotor && ${FIND} . | \
${CPIO} -pdmu -R ${LIBOWN}:${LIBGRP} \
${PREFIX}/cli-${PORTVERSION}
.include <bsd.port.post.mk>
|