freebsd-ports/net-p2p/qtum/Makefile
Stefan Eßer b7f05445c0 Add WWW entries to port Makefiles
It has been common practice to have one or more URLs at the end of the
ports' pkg-descr files, one per line and prefixed with "WWW:". These
URLs should point at a project website or other relevant resources.

Access to these URLs required processing of the pkg-descr files, and
they have often become stale over time. If more than one such URL was
present in a pkg-descr file, only the first one was tarnsfered into
the port INDEX, but for many ports only the last line did contain the
port specific URL to further information.

There have been several proposals to make a project URL available as
a macro in the ports' Makefiles, over time.

This commit implements such a proposal and moves one of the WWW: entries
of each pkg-descr file into the respective port's Makefile. A heuristic
attempts to identify the most relevant URL in case there is more than
one WWW: entry in some pkg-descr file. URLs that are not moved into the
Makefile are prefixed with "See also:" instead of "WWW:" in the pkg-descr
files in order to preserve them.

There are 1256 ports that had no WWW: entries in pkg-descr files. These
ports will not be touched in this commit.

The portlint port has been adjusted to expect a WWW entry in each port
Makefile, and to flag any remaining "WWW:" lines in pkg-descr files as
deprecated.

Approved by:		portmgr (tcberner)
2022-09-07 23:10:59 +02:00

67 lines
2.4 KiB
Makefile

PORTNAME= qtum
PORTVERSION= 0.20.3
DISTVERSIONPREFIX= mainnet-fastlane-v
PORTREVISION= 4
CATEGORIES= net-p2p finance
MAINTAINER= ports@FreeBSD.org
COMMENT= PoS cryptocurrency that can execute smart contract as part of an UTXO
WWW= https://qtum.org/
LICENSE= GPLv3
BROKEN_i386= does not compile: invalid operand for instruction ... ASJ(jnz, 0, b) ... "jnz"
BROKEN= does not compile: error: expected ';' after expression
BUILD_DEPENDS= libzmq4>0:net/libzmq4
RUN_DEPENDS= libzmq4>0:net/libzmq4
LIB_DEPENDS= libboost_date_time.so:devel/boost-libs \
libevent.so:devel/libevent \
libgmp.so:math/gmp \
libminiupnpc.so:net/miniupnpc \
libprotobuf.so:devel/protobuf \
libqrencode.so:graphics/libqrencode
USES= autoreconf bdb:5+ compiler:c++14-lang cpe gmake libtool pkgconfig qt:5 ssl
GNU_CONFIGURE= yes
CONFIGURE_ENV+= BDB_CFLAGS="-I${BDB_INCLUDE_DIR}" \
BDB_LIBS="-L${BDB_LIB_DIR} -l${BDB_LIB_CXX_NAME}" \
LDFLAGS="-L${LOCALBASE}/lib" \
CPPFLAGS="-I${LOCALBASE}/include"
# * Man pages have not been adjusted after cloning the Bitcoin code base.
# They are the old Bitcoin man pages, so do not install them.
# * --with-incompatible-bdb is required in order to use bdb-5.
# * Do not install unneeded include/bitcoinconsensus.h and
# lib/libbitcoinconsensus.* (--without-libs)
CONFIGURE_ARGS= --disable-man \
--with-gui=qt5 \
--with-incompatible-bdb \
--with-miniupnpc=${LOCALBASE} \
--with-qrencode \
--without-libs
USE_QT= buildtools core dbus gui linguisttools network testlib widgets
USE_GITHUB= yes
GH_TUPLE= qtumproject:qtum:${DISTVERSIONPREFIX}${PORTVERSION} \
qtumproject:cpp-eth-qtum:3f8e2fa7a3b97:cppeth1/src/cpp-ethereum \
ethereum:cable:3fc90c6eed80a2cbe81e968:cppeth2/src/cpp-ethereum/cmake/cable \
chfast:ethash:67a3216a5494834f7c221df9:cppeth3/src/cpp-ethereum/ethash \
ethereum:evmc:1de783316a95fccb4fe7c24f:cppeth4/src/cpp-ethereum/evmc
.include <bsd.port.pre.mk>
# The ./configure script tries to use pkg-config to derive the SSL CFLAGS and
# libraries, but pkg-config requires libssl.pc which is only installed by the
# ports' security/openssl and not present in the base system. So if we are to
# use the base's SSL, then we trick ./configure to not use pkg-config by
# setting some related environment variables.
.if ${SSL_DEFAULT} == base
CONFIGURE_ENV+= CRYPTO_CFLAGS="-I${OPENSSLINC}" \
CRYPTO_LIBS="-lcrypto" \
SSL_CFLAGS="-I${OPENSSLINC}" \
SSL_LIBS="-lssl"
.endif
.include <bsd.port.post.mk>