diff options
author | gerald <gerald@FreeBSD.org> | 2012-12-21 12:05:15 +0800 |
---|---|---|
committer | gerald <gerald@FreeBSD.org> | 2012-12-21 12:05:15 +0800 |
commit | 72681b41d0745d82f8e55cf2924a1694dba1891b (patch) | |
tree | 1b2348cce1d747f00a050132edbbba3e549f7de8 /net-p2p/eiskaltdcpp-daemon | |
parent | 9ae8cca5220a835036f02850fec8097e5f61d821 (diff) | |
download | freebsd-ports-gnome-72681b41d0745d82f8e55cf2924a1694dba1891b.tar.gz freebsd-ports-gnome-72681b41d0745d82f8e55cf2924a1694dba1891b.tar.zst freebsd-ports-gnome-72681b41d0745d82f8e55cf2924a1694dba1891b.zip |
Replace the use of _GCC_BUILD_DEPENDS (which was never meant to be
used outside of Mk/bsd.gcc.mk) by _GCC_RUNTIME. This is still not
ideal, but at least a documented stopgap, and it avoids the manual
construction of the directory to be added to rpath.
As a side effect, the Makefiles become a tad simpler. On the way,
update to USE_GCC=4.6+ per pending work of linimon and myself.
Approved by: maintainer
Diffstat (limited to 'net-p2p/eiskaltdcpp-daemon')
-rw-r--r-- | net-p2p/eiskaltdcpp-daemon/Makefile | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/net-p2p/eiskaltdcpp-daemon/Makefile b/net-p2p/eiskaltdcpp-daemon/Makefile index 526d5a6c43b0..ce029f08336f 100644 --- a/net-p2p/eiskaltdcpp-daemon/Makefile +++ b/net-p2p/eiskaltdcpp-daemon/Makefile @@ -25,7 +25,7 @@ BROKEN= does not link PROJECTHOST= eiskaltdc USE_XZ= yes -USE_GCC= 4.4+ +USE_GCC= 4.6+ USE_GETTEXT= yes USE_CMAKE= yes USE_OPENSSL= yes @@ -67,9 +67,7 @@ CMAKE_ARGS+= -DXMLRPC_DAEMON:BOOL=OFF USE_OPENSSL_PORT=yes .endif -GCC_LIBS= "${LOCALBASE}/lib/${_GCC_BUILD_DEPENDS}" - post-build: - ${LOCALBASE}/bin/chrpath -r "${GCC_LIBS}" "${WRKSRC}/nasdc/${PORTNAME}" + ${LOCALBASE}/bin/chrpath -r "${_GCC_RUNTIME}" "${WRKSRC}/nasdc/${PORTNAME}" .include <bsd.port.post.mk> |