Summary: | security/opensaml2: fix for missing boost dependency | ||
---|---|---|---|
Product: | Ports & Packages | Reporter: | John Marino <draco> |
Component: | Individual Port(s) | Assignee: | Palle Girgensohn <girgen> |
Status: | Closed FIXED | ||
Severity: | Affects Only Me | ||
Priority: | Normal | ||
Version: | Latest | ||
Hardware: | Any | ||
OS: | Any |
Description
John Marino
2013-06-08 21:30:00 UTC
Responsible Changed From-To: freebsd-ports-bugs->girgen Over to maintainer (via the GNATS Auto Assign Tool) Author: girgen Date: Sun Jun 9 14:41:24 2013 New Revision: 320338 URL: http://svnweb.freebsd.org/changeset/ports/320338 Log: Add build dependency on boost for shibboleth and opensaml. PR: ports/179431 Modified: head/security/opensaml2/Makefile head/security/shibboleth2-sp/Makefile Modified: head/security/opensaml2/Makefile ============================================================================== --- head/security/opensaml2/Makefile Sun Jun 9 14:37:35 2013 (r320337) +++ head/security/opensaml2/Makefile Sun Jun 9 14:41:24 2013 (r320338) @@ -15,6 +15,8 @@ LIB_DEPENDS= curl.6:${PORTSDIR}/ftp/curl xerces-c.3:${PORTSDIR}/textproc/xerces-c3 \ xmltooling.6:${PORTSDIR}/devel/xmltooling +BUILD_DEPENDS= boost-libs>=0:${PORTSDIR}/devel/boost-libs + GNU_CONFIGURE= yes CONFIGURE_ARGS+=--with-log4shib=${LOCALBASE} --with-openssl=${OPENSSLBASE} \ --with-xmltooling=${LOCALBASE} --disable-doxygen-doc Modified: head/security/shibboleth2-sp/Makefile ============================================================================== --- head/security/shibboleth2-sp/Makefile Sun Jun 9 14:37:35 2013 (r320337) +++ head/security/shibboleth2-sp/Makefile Sun Jun 9 14:41:24 2013 (r320338) @@ -12,6 +12,8 @@ COMMENT= C++ Shibboleth Service Provider LIB_DEPENDS= saml.8:${PORTSDIR}/security/opensaml2 +BUILD_DEPENDS= boost-libs>=0:${PORTSDIR}/devel/boost-libs + MAKE_JOBS_SAFE= yes USE_GMAKE= yes GNU_CONFIGURE= yes _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org" State Changed From-To: open->closed Actually a build-depends is enough. It was hidden by the same dependency need by xmltooling. Now I've properly added it to opensaml and shibboleth-sp. Thanks! |