svn commit: r424606 - head/devel/cjose

Dmitry Marakasov amdmi3 at FreeBSD.org
Tue Oct 25 08:44:31 UTC 2016


Author: amdmi3
Date: Tue Oct 25 08:44:29 2016
New Revision: 424606
URL: https://svnweb.freebsd.org/changeset/ports/424606

Log:
  - Mark broken on FreeBSD 9.x: does not build
  
  jwe.c:752: error: 'EVP_CTRL_GCM_GET_TAG' undeclared (first use in this function)
  jwe.c:752: error: (Each undeclared identifier is reported only once
  jwe.c:752: error: for each function it appears in.)
  
  - Remove unneeded GH_PROJECT
  - Add LICENSE_FILE
  
  Approved by:	portmgr blanket

Modified:
  head/devel/cjose/Makefile

Modified: head/devel/cjose/Makefile
==============================================================================
--- head/devel/cjose/Makefile	Tue Oct 25 08:34:03 2016	(r424605)
+++ head/devel/cjose/Makefile	Tue Oct 25 08:44:29 2016	(r424606)
@@ -8,8 +8,11 @@ MAINTAINER=	jamie at chair6.net
 COMMENT=	C library implementing Javascript Object Signing & Encryption (JOSE)
 
 LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/LICENSE
 
-LIB_DEPENDS+=	libjansson.so:devel/jansson
+LIB_DEPENDS=	libjansson.so:devel/jansson
+
+BROKEN_FreeBSD_9=	does not build
 
 USES=		libtool pathfix pkgconfig ssl
 USE_LDCONFIG=	yes
@@ -17,7 +20,6 @@ INSTALL_TARGET=	install-strip
 
 USE_GITHUB=	yes
 GH_ACCOUNT=	cisco
-GH_PROJECT=	cjose
 
 GNU_CONFIGURE=	yes
 CONFIGURE_ARGS=	--with-jansson=${PREFIX} --with-openssl=${OPENSSLBASE}


More information about the svn-ports-all mailing list