diff options
author | shaun <shaun@FreeBSD.org> | 2011-05-25 07:21:23 +0800 |
---|---|---|
committer | shaun <shaun@FreeBSD.org> | 2011-05-25 07:21:23 +0800 |
commit | efcb60a8920a7bcac64cef684dfbff6260ae5e94 (patch) | |
tree | b231a04558e9c0bae26e6ea58ec81565e2b95fdf /net-p2p | |
parent | 9b23294a606ac397159a495c09319262ee8ee133 (diff) | |
download | freebsd-ports-gnome-efcb60a8920a7bcac64cef684dfbff6260ae5e94.tar.gz freebsd-ports-gnome-efcb60a8920a7bcac64cef684dfbff6260ae5e94.tar.zst freebsd-ports-gnome-efcb60a8920a7bcac64cef684dfbff6260ae5e94.zip |
Fix plist.
Submitted by: pavmail
Pointyhat to: shaun (me)
Diffstat (limited to 'net-p2p')
-rw-r--r-- | net-p2p/bitcoin/Makefile | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/net-p2p/bitcoin/Makefile b/net-p2p/bitcoin/Makefile index ffe8d0c15628..e0619612d7f5 100644 --- a/net-p2p/bitcoin/Makefile +++ b/net-p2p/bitcoin/Makefile @@ -41,10 +41,12 @@ USE_GNOME= gtk20 BUILD_DEPENDS+= ${LOCALBASE}/include/wx-2.9/wx/aboutdlg.h:${PORTSDIR}/x11-toolkits/wxgtk29 WX_CONFIG= ${LOCALBASE}/bin/wxgtk2u-2.9-config -PLIST_FILES= bitcoin +BINARY= bitcoin +PLIST_FILES= bin/${BINARY} .else -ALL_TARGET= bitcoind -PLIST_FILES= bitcoind +BINARY= bitcoind +ALL_TARGET= ${BINARY} +PLIST_FILES= bin/${BINARY} .endif .if defined(WITH_UPNP) @@ -76,6 +78,6 @@ post-patch: do-install: @${MKDIR} ${PREFIX}/bin - ${INSTALL_PROGRAM} ${WRKSRC}/${PLIST_FILES} ${PREFIX}/bin/ + ${INSTALL_PROGRAM} ${WRKSRC}/${BINARY} ${PREFIX}/bin/ .include <bsd.port.post.mk> |