aboutsummaryrefslogtreecommitdiffstats
path: root/security/nss/Makefile
blob: 55e6923262c281204082cfb39648145c8f57e0cd (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
88
89
# Ports collection Makefile for:    nss
# Date created:             18 December 2001
# Whom:                 Maxim Sobolev <sobomax@FreeBSD.org>
#
# $FreeBSD$
#

PORTNAME=   nss
PORTVERSION=    3.10
CATEGORIES= security
MASTER_SITES=   ${MASTER_SITE_LOCAL} \
        http://people.freebsd.org/~pav/
MASTER_SITE_SUBDIR= pav
#MASTER_SITES=  ${MASTER_SITE_MOZILLA}
#MASTER_SITE_SUBDIR=    security/nss/releases/NSS_${PORTVERSION:S/./_/g}_RTM/src

MAINTAINER= gnome@FreeBSD.org
COMMENT=    Libraries to support development of security-enabled applications

BUILD_DEPENDS=  zip:${PORTSDIR}/archivers/zip
LIB_DEPENDS=    nspr4.1:${PORTSDIR}/devel/nspr

WRKSRC=     ${WRKDIR}/${DISTNAME}/mozilla/security/nss

INSTALLS_SHLIB= yes
USE_GMAKE=  yes
USE_PERL5_BUILD=yes
USE_REINPLACE=  yes
MAKE_ENV=   BSD_LDOPTS="${PTHREAD_LIBS} -L${LOCALBASE}/lib" \
        BUILD_OPT=1
ALL_TARGET= nss_build_all
CFLAGS+=    -I${LOCALBASE}/include/nspr

DIST=       ${WRKSRC:H:H}/dist

CONFLICTS=  btoa-5.* digest-[0-9]* emboss-2.* oases-2.* p5-PAR-0.* \
        qmail-ldap2-[0-9]*

.include <bsd.port.pre.mk>

.if ${ARCH} == "alpha" && ${OSVERSION} < 500035
IGNORE= core dumps on alpha during build
.endif

EXTERNALS=  CVS dbm security/nss/cmd/zlib
EXTRACT_AFTER_ARGS=| ${TAR} -xf -   \
    ${EXTERNALS:C,^,--exclude ${DISTNAME}/mozilla/,}

post-patch:
    @${REINPLACE_CMD} -e "s|-pthread|${PTHREAD_LIBS}|g" \
        ${WRKSRC:H:H}/security/coreconf/FreeBSD.mk

BINS=${DIST}/${OPSYS}${OSREL}_OPT.OBJ

test:
    cd ${WRKSRC}/tests; \
        ${SETENV} PATH="${BINS}/bin:${PATH}" \
            LD_LIBRARY_PATH="${BINS}/lib" \
            ./all.sh
    @if ${GREP} -F '>Failed<'   \
        ${WRKSRC:H:H}/tests_results/security/*/results.html; then   \
        echo "Some tests have failed. Let ${MAINTAINER} know."; \
        exit 1; \
    else    \
        echo "All tests succeeded. Good news."; \
    fi

#.if defined(PARALLEL_PACKAGE_BUILD) && ${OSVERSION} >= 500000
#post-build: test
#.else
post-build:
    #
    # Please, consider running ``make test'' now and fixing any problems
    # and/or reporting them to ${MAINTAINER} . Thanks!
    #
#.endif

do-install:
    ${MKDIR} ${PREFIX}/include/nss
    ${TAR} -C ${DIST}/public --dereference -cf - . | \
        ${TAR} -C ${PREFIX}/include/nss -xf -
    ${INSTALL_PROGRAM} ${DIST}/FreeBSD${OSREL:C/.$/*/}_OPT.OBJ/lib/*.so.1 \
        ${PREFIX}/lib
    ${INSTALL_PROGRAM} ${DIST}/FreeBSD${OSREL:C/.$/*/}_OPT.OBJ/bin/* \
        ${PREFIX}/bin
    cd ${DIST}/FreeBSD${OSREL:C/.$/*/}_OPT.OBJ/lib && \
        ${TAR} -cf - *.so | ${TAR} --unlink -C ${PREFIX}/lib -xf -

.include <bsd.port.post.mk>