fa81a4f5f8
What's new in at-spi2-core 2.46.0: * Fix GetInterfaces documentation on org.a11y.atspi.Accessible interface. What's new in at-spi2-core 2.45.91: * Send device event controller events using the same signature as other events. * Document the Accessible, Action, and Cache dbus interfaces. * Fix license of atspi-gmain.c (#87). What's new in at-spi2-core 2.45.90: * xml: Add some documentation. * xml: Fix event arguments. * xml: Add some missing DeviceEventController methods. * Bind the AT-SPI bus to the graphical session. * Mark bus service as belonging to the session slice. * Add ATSPI_ROLE_PUSH_BUTTON_MENU. * Add an "announcement" event/signal to allow objects to send notifications (!63). * Various code clean-ups and test improvements. What's new in at-spi2-core 2.45.1: * Atk and at-spi2-atk are now merged into this project. * Now requires meson 0.56.2 and glib 2.67.4. * at-spi2-atk: Expose the accessible hierarchy via dbus introspection. * Properly escape the AT-SPI bus address; fixes warnings about the address not containing a colon (!55). * Add a text value to AtspiValue, so that a value can expose a textual description, as in the new Atk value API. * Add atspi_event_listener_register_with_app, to allow an event listener to be registered only for a given application (!52). - accessibility/atk and accessibility/at-spi2-atk have been merged into accessibility/at-spi2-core - accessibility/at-spi2-core: bump consumers of removed ports atk and at-spi2-atk PR: 269704 Exp-run by: antoine ---
57 lines
1.7 KiB
Makefile
57 lines
1.7 KiB
Makefile
PORTNAME= cadabra2
|
|
DISTVERSION= 2.4.2.4
|
|
PORTREVISION= 2
|
|
CATEGORIES= math
|
|
|
|
MAINTAINER= yuri@FreeBSD.org
|
|
COMMENT= Computer algebra system for solving field theory problems
|
|
WWW= https://cadabra.science/
|
|
|
|
LICENSE= LGPL3
|
|
LICENSE_FILE= ${WRKSRC}/doc/license.txt
|
|
|
|
BUILD_DEPENDS= ${LOCALBASE}/include/websocketpp/client.hpp:devel/websocketpp
|
|
LIB_DEPENDS= ${PY_BOOST} \
|
|
libboost_system.so:devel/boost-libs \
|
|
libharfbuzz.so:print/harfbuzz \
|
|
libpcrecpp.so:devel/pcre \
|
|
libjsoncpp.so:devel/jsoncpp \
|
|
libgmp.so:math/gmp \
|
|
libuuid.so:misc/e2fsprogs-libuuid
|
|
RUN_DEPENDS= ${PYTHON_SITELIBDIR}/sympy/__init__.py:math/py-sympy@${PY_FLAVOR} \
|
|
${PYTHON_SITELIBDIR}/matplotlib/__init__.py:math/py-matplotlib@${PY_FLAVOR}
|
|
|
|
USES= compiler:c++14-lang cmake:noninja dos2unix gettext-runtime gnome localbase:ldflags pkgconfig python:3.7+ sqlite tex # USES=python picks random python versions
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= kpeeters
|
|
DOS2UNIX_FILES= cmake/version.cmake
|
|
USE_GNOME= glib20 glibmm libsigc++20
|
|
USE_TEX= base latex texmf texhash
|
|
OPTIONS_SUB= yes
|
|
|
|
CMAKE_ON= ENABLE_SYSTEM_JSONCPP USE_PYTHON_3 # OFF doesn't work, still links to python3: https://github.com/kpeeters/cadabra2/issues/76
|
|
CMAKE_OFF= ENABLE_MATHEMATICA
|
|
CXXFLAGS+= -I${LOCALBASE}/include/jsoncpp
|
|
LDFLAGS+= -ljsoncpp
|
|
|
|
PLIST_SUB= _PY_SONAME=${_PY_SONAME}
|
|
|
|
OPTIONS_DEFINE= GUI
|
|
OPTIONS_DEFAULT= GUI
|
|
|
|
GUI_USES= desktop-file-utils
|
|
GUI_USE= GNOME=gtkmm30,gdkpixbuf2
|
|
GUI_CMAKE_BOOL= ENABLE_FRONTEND
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${PYTHON_REL} < 30800
|
|
_PY_SONAME= .cpython-${PYTHON_SUFFIX}m
|
|
.else
|
|
_PY_SONAME= ${PYTHON_EXT_SUFFIX}
|
|
.endif
|
|
|
|
post-extract: # unbundle
|
|
@${RM} -r ${WRKSRC}/libs/jsoncpp ${WRKSRC}/libs/websocketpp
|
|
|
|
.include <bsd.port.post.mk>
|