40666d2b8f
- Force rebuild all consumers to catch regressions early Thanks to Mikaël Urankar for providing updated bootstraps for aarch64, armv6, armv7, powerpc64. Changes: https://blog.rust-lang.org/2019/08/15/Rust-1.37.0.html Tested by: jbeich, tobik, greg@unrelenting.technology (aarch64) With hat: rust Differential Revision: https://reviews.freebsd.org/D21247
45 lines
1.1 KiB
Makefile
45 lines
1.1 KiB
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= fractal
|
|
DISTVERSION= 4.0.0
|
|
PORTREVISION= 5
|
|
CATEGORIES= net-im
|
|
MASTER_SITES= https://gitlab.gnome.org/World/fractal/uploads/${GL_HASH}/
|
|
|
|
MAINTAINER= greg@unrelenting.technology
|
|
COMMENT= GTK+ Matrix IM client
|
|
|
|
LICENSE= GPLv3+
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
|
|
|
|
# gmake for the backtrace-sys crate
|
|
BUILD_DEPENDS= cargo:lang/${RUST_DEFAULT} \
|
|
gmake:devel/gmake
|
|
LIB_DEPENDS= libdbus-1.so:devel/dbus \
|
|
libgmp.so:math/gmp \
|
|
libgspell-1.so:textproc/gspell \
|
|
libhandy-0.0.so:x11-toolkits/libhandy
|
|
|
|
USES= gettext gnome meson pkgconfig python:3.5+,build ssl tar:xz
|
|
USE_GNOME= cairo gtk30 gtksourceview3
|
|
USE_GSTREAMER1= bad
|
|
|
|
GL_HASH= ad6a483327c3e9ef5bb926b89fb26e2b
|
|
BINARY_ALIAS= python3=${PYTHON_CMD}
|
|
GLIB_SCHEMAS= org.gnome.Fractal.gschema.xml
|
|
INSTALLS_ICONS= yes
|
|
|
|
# for the gettext-sys crate
|
|
MAKE_ENV+= GETTEXT_BIN_DIR=${LOCALBASE}/bin \
|
|
GETTEXT_LIB_DIR=${LOCALBASE}/lib \
|
|
GETTEXT_INCLUDE_DIR=${LOCALBASE}/include
|
|
|
|
post-patch:
|
|
# Disable vendor checksums
|
|
@${REINPLACE_CMD} -e 's/"files":{[^}]*}/"files":{}/' \
|
|
${WRKSRC}/vendor/*/.cargo-checksum.json
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/fractal
|
|
|
|
.include <bsd.port.mk>
|