From owner-svn-ports-head@FreeBSD.ORG Mon Jun 23 14:40:58 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 4CDF7EBB; Mon, 23 Jun 2014 14:40:58 +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)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 397652F68; Mon, 23 Jun 2014 14:40:58 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s5NEewr9069434; Mon, 23 Jun 2014 14:40:58 GMT (envelope-from vanilla@svn.freebsd.org) Received: (from vanilla@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s5NEewaS069433; Mon, 23 Jun 2014 14:40:58 GMT (envelope-from vanilla@svn.freebsd.org) Message-Id: <201406231440.s5NEewaS069433@svn.freebsd.org> From: "Vanilla I. Shu" Date: Mon, 23 Jun 2014 14:40:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r358962 - head/net/rabbitmq-c 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.18 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: Mon, 23 Jun 2014 14:40:58 -0000 Author: vanilla Date: Mon Jun 23 14:40:57 2014 New Revision: 358962 URL: http://svnweb.freebsd.org/changeset/ports/358962 QAT: https://qat.redports.org/buildarchive/r358962/ Log: Stagify, new syntax of LIB_DEPENDS. Approved by: portmgr@ Modified: head/net/rabbitmq-c/Makefile Modified: head/net/rabbitmq-c/Makefile ============================================================================== --- head/net/rabbitmq-c/Makefile Mon Jun 23 14:34:08 2014 (r358961) +++ head/net/rabbitmq-c/Makefile Mon Jun 23 14:40:57 2014 (r358962) @@ -15,8 +15,8 @@ DIST_SUBDIR= rabbitmq MAINTAINER= rabbitmq@geoffgarside.co.uk COMMENT= RabbitMQ C AMQP client library -LICENSE= GPLv2 MPL -LICENSE_COMB= dual +LICENSE= GPLv2 MPL +LICENSE_COMB= dual BUILD_DEPENDS= python:${PORTSDIR}/lang/python \ ${PYTHON_PKGNAMEPREFIX}simplejson>=2.0:${PORTSDIR}/devel/py-simplejson @@ -35,7 +35,6 @@ OPTIONS_DEFINE= 64BIT POPT 64BIT_DESC= Produce 64-bit library POPT_DESC= Popt support in tools -NO_STAGE= yes .include .if ${PORT_OPTIONS:M64BIT} @@ -45,14 +44,14 @@ CONFIGURE_ARGS+= --enable-64-bit .endif .if ${PORT_OPTIONS:MPOPT} -LIB_DEPENDS+= popt.0:${PORTSDIR}/devel/popt +LIB_DEPENDS+= libpopt.so:${PORTSDIR}/devel/popt CFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -PLIST_SUB+= POPT='' +PLIST_SUB+= POPT='' CONFIGURE_ARGS+= --with-popt .else -PLIST_SUB+= POPT='@comment ' +PLIST_SUB+= POPT='@comment ' CONFIGURE_ARGS+= --without-popt .endif @@ -63,6 +62,6 @@ pre-configure: @(cd ${CONFIGURE_WRKSRC} && ${SETENV} ${AUTOTOOLS_ENV} ${LIBTOOLIZE}) post-install: - ${STRIP_CMD} ${PREFIX}/lib/librabbitmq.so.0 + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/librabbitmq.so.0 .include