blob: 6697623bf914aa587426e98f4696a8c5fe48d361 (
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
|
# New ports collection makefile for: systemc
# Date created: 15 December 2005
# Whom: Daniel Thiele
#
# $FreeBSD$
#
PORTNAME= systemc
PORTVERSION= 2.2.0
CATEGORIES= cad devel
EXTRACT_SUFX= .tgz
MAINTAINER= dthiele@gmx.net
COMMENT= A modeling platform for system-level C++ models
RESTRICTED= You have to register at http://www.systemc.org/kmembership_info/individual_signup first
USE_GMAKE= yes
HAS_CONFIGURE= yes
CONFIGURE_SCRIPT= ../configure
CONFIGURE_ARGS= --prefix=${PREFIX}/systemc ${CONFIGURE_TARGET}
CONFIGURE_WRKSRC= ${WRKSRC}/objdir
BUILD_WRKSRC= ${WRKSRC}/objdir
INSTALL_WRKSRC= ${WRKSRC}/objdir
.include <bsd.port.pre.mk>
.if !exists(${DISTDIR}/${DISTNAME}${EXTRACT_SUFX})
IGNORE= is restricted. You have to register at http://www.systemc.org/kmembership_info/individual_signup and download ${DISTFILES} from http://www.systemc.org/downloads/standards/ first. Then put ${DISTFILES} into ${DISTDIR} and run make again
.endif
.if defined(WITH_OPTIMIZED_CFLAGS)
CXXFLAGS+= -O3
.endif
pre-everything::
.if !defined(WITH_OPTIMIZED_CFLAGS)
@${ECHO_MSG} "You can enable additional compilation optimizations"
@${ECHO_MSG} "by defining WITH_OPTIMIZED_CFLAGS"
.endif
pre-configure:
@${MKDIR} ${WRKSRC}/objdir
@${REINPLACE_CMD} -e 's|\(OPT_CXXFLAGS="\).*"|\1${CXXFLAGS}"|g' \
${CONFIGURE_WRKSRC}/${CONFIGURE_SCRIPT}
post-patch:
@find ${WRKSRC} -name .DS_Store -delete
.include <bsd.port.post.mk>
|