From owner-freebsd-ports-bugs@FreeBSD.ORG Sat May 10 23:30:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.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 B530D713 for ; Sat, 10 May 2014 23:30:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 9695A1BBE for ; Sat, 10 May 2014 23:30:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s4ANU1it053488 for ; Sat, 10 May 2014 23:30:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s4ANU1oS053487; Sat, 10 May 2014 23:30:01 GMT (envelope-from gnats) Date: Sat, 10 May 2014 23:30:01 GMT Message-Id: <201405102330.s4ANU1oS053487@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: dfilter@FreeBSD.ORG (dfilter service) Subject: Re: ports/185839: commit references a PR Reply-To: dfilter@FreeBSD.ORG (dfilter service) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 10 May 2014 23:30:01 -0000 The following reply was made to PR ports/185839; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/185839: commit references a PR Date: Sat, 10 May 2014 23:24:38 +0000 (UTC) Author: rakuco Date: Sat May 10 23:24:34 2014 New Revision: 353629 URL: http://svnweb.freebsd.org/changeset/ports/353629 QAT: https://qat.redports.org/buildarchive/r353629/ Log: MFH: r353614 - Fix the build by building and installing from the right subdirectory. - Support staging. PR: ports/185839 Approved by: portmgr (bapt) Modified: branches/2014Q2/devel/thrift-cpp/Makefile Directory Properties: branches/2014Q2/ (props changed) Modified: branches/2014Q2/devel/thrift-cpp/Makefile ============================================================================== --- branches/2014Q2/devel/thrift-cpp/Makefile Sat May 10 23:21:52 2014 (r353628) +++ branches/2014Q2/devel/thrift-cpp/Makefile Sat May 10 23:24:34 2014 (r353629) @@ -20,8 +20,6 @@ DISTINFO_FILE= ${.CURDIR}/../thrift/dis LIB_DEPENDS= libboost_system.so:${PORTSDIR}/devel/boost-libs \ libevent-1.4.so:${PORTSDIR}/devel/libevent -BUILDIR= ${WRKDIR}/${DISTNAME}/lib/cpp - USE_AUTOTOOLS= autoconf autoheader:env aclocal automake libtool ACLOCAL_ARGS= -I${WRKSRC}/aclocal AUTOMAKE_ARGS= --foreign --add-missing --copy @@ -31,6 +29,8 @@ GNU_CONFIGURE= yes USE_LDCONFIG= yes MAKE_JOBS_UNSAFE= yes PLIST_SUB= PORTVERSION="${THRIFT_PORTVERSION}" +BUILD_WRKSRC= ${WRKSRC}/lib/cpp +INSTALL_WRKSRC= ${WRKSRC}/lib/cpp OPTIONS_DEFINE= QT4 QT4_CONFIGURE_WITH= qt4 @@ -50,9 +50,6 @@ CONFIGURE_ARGS+= \ --without-python \ --without-ruby - -NO_STAGE= yes - .include .if ${COMPILER_TYPE} == clang @@ -67,11 +64,11 @@ post-patch: @${REINPLACE_CMD} 's,^pkgconfigdir = .*,pkgconfigdir=$${prefix}/libdata/pkgconfig,' ${WRKSRC}/lib/cpp/Makefile.am post-install: - @${LN} -sf ${PREFIX}/lib/libthrift-${PORTVERSION}.so ${PREFIX}/lib/libthrift.so.0 - @${LN} -sf ${PREFIX}/lib/libthriftnb-${PORTVERSION}.so ${PREFIX}/lib/libthriftnb.so.0 - @${LN} -sf ${PREFIX}/lib/libthriftz-${PORTVERSION}.so ${PREFIX}/lib/libthriftz.so.0 + ${LN} -sf libthrift-${PORTVERSION}.so ${STAGEDIR}${PREFIX}/lib/libthrift.so.0 + ${LN} -sf libthriftnb-${PORTVERSION}.so ${STAGEDIR}${PREFIX}/lib/libthriftnb.so.0 + ${LN} -sf libthriftz-${PORTVERSION}.so ${STAGEDIR}${PREFIX}/lib/libthriftz.so.0 .if ${PORT_OPTIONS:MQT4} - @${LN} -sf ${PREFIX}/lib/libthriftqt-${PORTVERSION}.so ${PREFIX}/lib/libthriftqt.so.0 + ${LN} -sf libthriftqt-${PORTVERSION}.so ${STAGEDIR}${PREFIX}/lib/libthriftqt.so.0 .endif .include "../thrift/bsd.thrift.mk" _______________________________________________ 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"