From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 23:32:27 2014 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 ESMTPS id 902D22C2; Wed, 22 Jan 2014 23:32:27 +0000 (UTC) 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 7C306100C; Wed, 22 Jan 2014 23:32:27 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0MNWRJl020651; Wed, 22 Jan 2014 23:32:27 GMT (envelope-from amdmi3@svn.freebsd.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0MNWRLS020650; Wed, 22 Jan 2014 23:32:27 GMT (envelope-from amdmi3@svn.freebsd.org) Message-Id: <201401222332.s0MNWRLS020650@svn.freebsd.org> From: Dmitry Marakasov Date: Wed, 22 Jan 2014 23:32:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340748 - head/devel/librest 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.17 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: Wed, 22 Jan 2014 23:32:27 -0000 Author: amdmi3 Date: Wed Jan 22 23:32:26 2014 New Revision: 340748 URL: http://svnweb.freebsd.org/changeset/ports/340748 QAT: https://qat.redports.org/buildarchive/r340748/ Log: - Disable g-ir-scanner cache to not pollute /root/.cache on build - Support staging - Use new LIB_DEPENDS syntax - Convert USE_GMAKE to USES PR: 185924 Submitted by: amdmi3 Approved by: Christoph Moench-Tegeder (maintainer) Modified: head/devel/librest/Makefile Modified: head/devel/librest/Makefile ============================================================================== --- head/devel/librest/Makefile Wed Jan 22 23:21:56 2014 (r340747) +++ head/devel/librest/Makefile Wed Jan 22 23:32:26 2014 (r340748) @@ -13,27 +13,24 @@ LICENSE= LGPL21 BUILD_DEPENDS= g-ir-scanner:${PORTSDIR}/devel/gobject-introspection \ ${LOCALBASE}/share/certs/ca-root-nss.crt:${PORTSDIR}/security/ca_root_nss -LIB_DEPENDS= soup-gnome-2.4:${PORTSDIR}/devel/libsoup-gnome +LIB_DEPENDS= libsoup-gnome-2.4.so:${PORTSDIR}/devel/libsoup-gnome RUN_DEPENDS= ${LOCALBASE}/share/certs/ca-root-nss.crt:${PORTSDIR}/security/ca_root_nss -USES= pkgconfig +USES= pkgconfig gmake USE_XZ= yes -USE_GMAKE= yes GNU_CONFIGURE= yes USE_LDCONFIG= yes USE_GNOME= gnomehack glib20 intlhack libxml2 +MAKE_ENV= GI_SCANNER_DISABLE_CACHE=yes CONFIGURE_ARGS= --with-ca-certificates=${LOCALBASE}/share/certs/ca-root-nss.crt PORTEXAMPLES= *.c -NO_STAGE= yes -.include +OPTIONS_DEFINE= EXAMPLES -.if ${PORT_OPTIONS:MEXAMPLES} post-install: - @${MKDIR} ${EXAMPLESDIR} - ${INSTALL_DATA} ${WRKSRC}/examples/*.c ${EXAMPLESDIR} -.endif + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + ${INSTALL_DATA} ${WRKSRC}/examples/*.c ${STAGEDIR}${EXAMPLESDIR} .include