freebsd-ports/devel/stlport/Makefile
Alexander Leidinger 4f51476e2a Fix stlport:
---snip---
The patch is tested (and works) on FreeBSD/i386 -stable and -current with
GCC. Although there are no ICC-specific changes I verified that it doesn't
break lang/stlport-icc.
On FreeBSD/alpha and FreeBSD/sparc64 -current lang/stlport compiles with
this patch however the exception handling test fails. On alpha this looks
like a GCC-bug, on sparc64 it could be also a bug in FreeBSD however GCC
is known to have bugs there.
The patch has also a small fix for the Makefile of the port to allow
concurrent buils with `make -jX`.
The wchar-related part of the patch (which is also needed to fix
compilation on -current) is obtained from the STLport CVS repository.
---snip---

PR:		57267
Submitted by:	Marius Strobl <marius@alchemy.franken.de>
Approved by:	maintainer
2003-10-05 08:29:55 +00:00

82 lines
2.1 KiB
Makefile

# ex:ts=8
# Ports collection makefile for: stlport
# Date Created: 2 December 1998
# Whom: Josh Gilliam <josh@quick.net>
#
# $FreeBSD$
#
PORTNAME= stlport
PORTVERSION= 4.5.3
PORTREVISION= 1
CATEGORIES= devel
MASTER_SITES= http://www.stlport.com/archive/
PKGNAMESUFFIX= -${COMPILER}
DISTNAME= STLport-${PORTVERSION:S/.b/-b/}
MAINTAINER?= pmarquis@pobox.com
COMMENT?= Adaptation of SGI's Standard Template Library
.include <bsd.port.pre.mk>
.if !exists(/usr/include/wchar.h)
BROKEN= "Requires /usr/include/wchar.h for compilation"
.endif
WRKSRC= ${WRKDIR}/STLport-${PORTVERSION:S/.b/b/}/src
PATCH_WRKSRC= ${WRKDIR}/STLport-${PORTVERSION:S/.b/b/}
USE_GMAKE= yes
COMPILER?= gcc
MAKEFILE= ${COMPILER}-freebsd.mak
MAKE_ARGS+= INSTALLDIR=${PREFIX} PTHREAD_CFLAGS=${PTHREAD_CFLAGS} \
PTHREAD_LIBS=${PTHREAD_LIBS}
PLIST_SUB= COMPILER=${COMPILER}
INSTALL_TARGET= install_unix
INSTALLS_SHLIB= yes
.if ${OSVERSION} < 440000
BROKEN= "Not supported on systems prior to FreeBSD 4.4"
.endif
.if ${COMPILER} == icc
CC= icc
CXX= icpc
.endif
.if ${COMPILER} == gcc && ${OSVERSION} < 460000
pre-everything::
@${ECHO_MSG}
@${ECHO_MSG} "There may be a bug in your version of gcc's exception"
@${ECHO_MSG} "handling code. Consider upgrading to FreeBSD 4.6"
@${ECHO_MSG} "or above."
.endif
post-patch:
@${CP} ${FILESDIR}/src::icc-freebsd.mak ${WRKSRC}/icc-freebsd.mak
@${CP} ${FILESDIR}/stlport::stl_icc.h \
${WRKSRC}/../stlport/config/stl_icc.h
@${CP} ${FILESDIR}/test::eh::icc-freebsd.mak \
${WRKSRC}/../test/eh/icc-freebsd.mak
post-install:
${FIND} ${PREFIX}/include/stlport -name \*.orig -delete
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}/images
${INSTALL_DATA} ${WRKSRC}/../doc/*.css ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/../doc/*.html ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/../doc/images/* ${DOCSDIR}/images
.endif
.if ${OSVERSION} >= 46000 || ${COMPILER} == icc
post-build: test
.endif
test: do-build
cd ${WRKSRC}/../test/eh && ${SETENV} CC=${CC} CXX=${CXX} \
${GMAKE} -f ${MAKEFILE} PTHREAD_CFLAGS=${PTHREAD_CFLAGS} \
PTHREAD_LIBS=${PTHREAD_LIBS} PTHREAD_CFLAGS=${PTHREAD_CFLAGS} \
PTHREAD_LIBS=${PTHREAD_LIBS} CC=${CC} CXX=${CXX}
.include <bsd.port.post.mk>