diff options
author | marcus <marcus@FreeBSD.org> | 2004-03-28 02:01:50 +0800 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2004-03-28 02:01:50 +0800 |
commit | 2706f335c380dcded9dd350703f5be53a61b89c2 (patch) | |
tree | 2c990658b9547869be0cefb26be0f1247bcf507a /security/nss | |
parent | 34da96b37fc6e741f605e4a212bcd746e34a5537 (diff) | |
download | freebsd-ports-gnome-2706f335c380dcded9dd350703f5be53a61b89c2.tar.gz freebsd-ports-gnome-2706f335c380dcded9dd350703f5be53a61b89c2.tar.zst freebsd-ports-gnome-2706f335c380dcded9dd350703f5be53a61b89c2.zip |
* Shorten COMMENT to appease portlint
* Mark IGNORE on 4.X and old 5.X versions on the Alpha architecture
Diffstat (limited to 'security/nss')
-rw-r--r-- | security/nss/Makefile | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/security/nss/Makefile b/security/nss/Makefile index b9e3e4fa86a4..99e0288a1047 100644 --- a/security/nss/Makefile +++ b/security/nss/Makefile @@ -13,7 +13,7 @@ MASTER_SITES= ${MASTER_SITE_MOZILLA} MASTER_SITE_SUBDIR= security/nss/releases/NSS_${PORTVERSION:S/./_/g}_RTM/src MAINTAINER= gnome@FreeBSD.org -COMMENT= A set of libraries to support development of security-enabled applications +COMMENT= Libraries to support development of security-enabled applications BUILD_DEPENDS= zip:${PORTSDIR}/archivers/zip LIB_DEPENDS= nspr4.1:${PORTSDIR}/devel/nspr @@ -34,6 +34,12 @@ DIST= ${WRKSRC}/../../dist CONFLICTS= btoa-5.* digest-* emboss-2.4.* oases-2.* p5-PAR-0.* +.include <bsd.port.pre.mk> + +.if ${ARCH} == "alpha" && ${OSVERSION} < 500035 +IGNORE= "core dumps on alpha during build" +.endif + post-patch: @${REINPLACE_CMD} -e "s|-pthread|${PTHREAD_LIBS}|g" \ ${WRKSRC}/../../security/coreconf/FreeBSD.mk @@ -49,4 +55,4 @@ do-install: cd ${DIST}/FreeBSD${OSREL:C/.$/*/}_OPT.OBJ/lib && \ ${TAR} -cf - *.so | ${TAR} --unlink -C ${PREFIX}/lib -xf - -.include <bsd.port.mk> +.include <bsd.port.post.mk> |