mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-14 07:43:06 +00:00
6bebfaa8a0
- Use bundled libgit/libssh, the versions in ports are too old - Update lang/rust-nightly to 2021-02-12 - Update devel/racer to 2.1.41 - Import upstream patch to fix build issue for Firefox and related ports (https://bugzilla.mozilla.org/show_bug.cgi?id=1684261) Changes: https://github.com/rust-lang/rust/releases/tag/1.50.0 Tested by: mikael, pkubaj Differential Revision: https://reviews.freebsd.org/D28616
32 lines
518 B
Makefile
32 lines
518 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= openethereum
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 3.1.1
|
|
PORTREVISION= 1
|
|
CATEGORIES= net-p2p
|
|
|
|
MAINTAINER= ale@FreeBSD.org
|
|
COMMENT= Fast and feature-rich multi-network Ethereum client
|
|
|
|
LICENSE= GPLv3
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
USES= cargo
|
|
|
|
USE_GITHUB= yes
|
|
|
|
PLIST_FILES= bin/${PORTNAME}
|
|
|
|
CARGO_FEATURES= final
|
|
CARGO_TEST= yes
|
|
|
|
RUSTFLAGS+= -C link-arg=-fuse-ld=lld
|
|
|
|
.include "${.CURDIR}/Makefile.crates"
|
|
|
|
post-install:
|
|
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME}
|
|
|
|
.include <bsd.port.mk>
|