aboutsummaryrefslogtreecommitdiffstats
path: root/devel/icu/Makefile
blob: a7ffeede24c3f49c82c2ff05aee4c156e52d8bc1 (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
78
79
80
81
82
83
84
85
86
87
# New ports collection makefile for:    icu
# Date created:             22 Jan 2001
# Whom:                 dwm
#
# $FreeBSD$
#

PORTNAME=   icu
PORTVERSION=    3.2
CATEGORIES= devel
MASTER_SITES=   ftp://www-126.ibm.com/pub/icu/${PORTVERSION}/
EXTRACT_SUFX=   .tgz

MAINTAINER= ports@FreeBSD.org
COMMENT=    International Components for Unicode (from IBM)

INSTALLS_SHLIB=     yes
NO_FILTER_SHLIBS=   yes

WRKSRC=         ${WRKDIR}/icu
ICUWRKSRC=      ${WRKSRC}/source
CONFIGURE_WRKSRC=   ${ICUWRKSRC}
BUILD_WRKSRC=       ${ICUWRKSRC}
INSTALL_WRKSRC=     ${ICUWRKSRC}

GNU_CONFIGURE=      yes
CONFIGURE_SCRIPT=   runConfigureICU
CONFIGURE_ARGS+=    ${OPSYS}
CONFIGURE_ARGS+=    --enable-shared
CONFIGURE_ARGS+=    --enable-static
CONFIGURE_ARGS+=    --enable-samples=no --enable-tests=yes
.if defined(NO_THREADS)
CONFIGURE_ARGS+=    --enable-threads=no
.else
CONFIGURE_ENV+=     THREADSCPPFLAGS="${PTHREAD_CFLAGS}" \
            THREADSCFLAGS="${PTHREAD_CFLAGS}" \
            THREADSCXXFLAGS="${PTHREAD_CFLAGS}" \
            PTHREAD_LIBS="${PTHREAD_LIBS}"
.endif
USE_GMAKE=      yes
CONFIGURE_ENV+=     CFLAGS="${CFLAGS}" CC="${CC}" CXX="${CXX}"

MAN1+=  gencnval.1
MAN1+=  genrb.1
MAN1+=  icu-config.1
MAN1+=  makeconv.1
MAN1+=  pkgdata.1
MAN1+=  uconv.1
MAN8+=  decmn.8
MAN8+=  genccode.8
MAN8+=  gencmn.8
MAN8+=  gennames.8
MAN8+=  gennorm.8
MAN8+=  genprops.8
MAN8+=  gensprep.8
MAN8+=  genuca.8

ICUMAJOR=   ${PORTVERSION:S/.//:R}
PLIST_SUB+= ICUMAJOR=${ICUMAJOR}
PLIST_SUB+= ICUVER=${PORTVERSION}

pre-fetch:
.if !defined(BATCH) && !defined(PACKAGE_BUILDING)
    #
    # You may use the following build options by defining
    # them on the command line with -D
    #
    # NO_THREADS    do not build a thread enabled library
    #
.endif

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` >> \
            ${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

.include <bsd.port.mk>