From owner-svn-ports-head@FreeBSD.ORG Sat Nov 2 23:13:24 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id F11F8B45; Sat, 2 Nov 2013 23:13:23 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id DD5512E0F; Sat, 2 Nov 2013 23:13:23 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rA2NDN7I087926; Sat, 2 Nov 2013 23:13:23 GMT (envelope-from feld@svn.freebsd.org) Received: (from feld@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id rA2NDNKK087925; Sat, 2 Nov 2013 23:13:23 GMT (envelope-from feld@svn.freebsd.org) Message-Id: <201311022313.rA2NDNKK087925@svn.freebsd.org> From: Mark Felder Date: Sat, 2 Nov 2013 23:13:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r332553 - head/devel/libopkele X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Nov 2013 23:13:24 -0000 Author: feld Date: Sat Nov 2 23:13:23 2013 New Revision: 332553 URL: http://svnweb.freebsd.org/changeset/ports/332553 Log: Support STAGE Fix build on FreeBSD 10+ Use newer LIB_DEPENDS syntax PR: ports/182293 Approved by: swills (mentor, implicit) Modified: head/devel/libopkele/Makefile Modified: head/devel/libopkele/Makefile ============================================================================== --- head/devel/libopkele/Makefile Sat Nov 2 23:09:33 2013 (r332552) +++ head/devel/libopkele/Makefile Sat Nov 2 23:13:23 2013 (r332553) @@ -11,13 +11,14 @@ MAINTAINER= zhoushuqun@gmail.com COMMENT= A c++ implementation of an OpenID decentralized identity system BUILD_DEPENDS= ${LOCALBASE}/include/boost/shared_ptr.hpp:${PORTSDIR}/devel/boost-libs -LIB_DEPENDS= curl:${PORTSDIR}/ftp/curl \ - pcre.3:${PORTSDIR}/devel/pcre \ - expat.6:${PORTSDIR}/textproc/expat2 \ - tidy:${PORTSDIR}/www/tidy-lib \ - xslt:${PORTSDIR}/textproc/libxslt +LIB_DEPENDS= libcurl.so:${PORTSDIR}/ftp/curl \ + libpcre.so:${PORTSDIR}/devel/pcre \ + libexpat.so:${PORTSDIR}/textproc/expat2 \ + libtidy.so:${PORTSDIR}/www/tidy-lib \ + libxslt.so:${PORTSDIR}/textproc/libxslt USE_LDCONFIG= yes +USE_GCC= 4.6 USES= gmake pkgconfig GNU_CONFIGURE= yes CONFIGURE_ENV= "OPENSSL_CFLAGS=${CFLAGS} -l${OPENSSLINC}" \ @@ -29,7 +30,6 @@ LDFLAGS+= -L${LOCALBASE}/lib # This port needs OpenSSL 0.9.8b which is present in 7.0 and up USE_OPENSSL= yes -NO_STAGE= yes .include .include "${PORTSDIR}/Mk/bsd.openssl.mk"