diff options
author | Mikhail Teterin <mi@FreeBSD.org> | 2004-11-25 08:44:01 +0000 |
---|---|---|
committer | Mikhail Teterin <mi@FreeBSD.org> | 2004-11-25 08:44:01 +0000 |
commit | 85aa4d9ae869a0c1b02a0a7a447efee93322c109 (patch) | |
tree | 0030c0d4959a028927d665f380ebe25e756e741e /devel/icu4 | |
parent | 46161b9f5932b800182e785a228ee30cdfc5fb70 (diff) | |
download | ports-85aa4d9ae869a0c1b02a0a7a447efee93322c109.tar.gz ports-85aa4d9ae869a0c1b02a0a7a447efee93322c109.zip |
Notes
Diffstat (limited to 'devel/icu4')
-rw-r--r-- | devel/icu4/Makefile | 28 |
1 files changed, 21 insertions, 7 deletions
diff --git a/devel/icu4/Makefile b/devel/icu4/Makefile index a7ffeede24c3..c13c83345f41 100644 --- a/devel/icu4/Makefile +++ b/devel/icu4/Makefile @@ -73,15 +73,29 @@ pre-patch: # VPATH does not work due to IBM's mistake: ${LN} -s ${FILESDIR}/*.ucm ${WRKSRC}/source/data/mappings/ @for l in ${FILESDIR}/*.ucm ; do \ - echo UCM_SOURCE_LOCAL+=`basename $$l` >> \ + ${ECHO} UCM_SOURCE_LOCAL+=`basename $$l` >> \ ${WRKSRC}/source/data/mappings/ucmlocal.mk ; \ done -post-build test: - ${GMAKE} -C ${ICUWRKSRC}/test -.for t in intltest iotest cintltst - cd ${ICUWRKSRC}/test/$t && ${SETENV} \ - LD_LIBRARY_PATH=${ICUWRKSRC}/lib:${ICUWRKSRC}/tools/ctestfw ./$t -.endfor +iotest cintltst intltest: + -${GMAKE} -C ${ICUWRKSRC}/test + cd ${ICUWRKSRC}/test/${.TARGET} && ${SETENV} \ + LD_LIBRARY_PATH=${ICUWRKSRC}/lib:${ICUWRKSRC}/tools/ctestfw \ + ./${.TARGET} + +test: iotest cintltst intltest + +post-build: iotest cintltst + # + # Note, due to occasional hangs in one of the intltest's + # multi-threading subtests, the intltest is not part of automatic + # test in the current version of this port. This an unresolved + # problem so far: + # http://www.jtcsv.com/cgibin/icu-bugs/incoming?id=1141 + # + # If you wish to help resolving it, try + # + # `make intltest' manually. + # .include <bsd.port.mk> |