2022-02-10 Version 1.3.2 ======================== - Features: - Add French translation - Bug fixes: - Silence assertion failure on /part command - Silence "Unknown capability" warning on trailing whitespace - Changes: - Add tooltips to buttons with no text 2021-12-18 Version 1.3.1 ======================== - Bug fixes: - Fix build of macOS - Make channel messages with origin out of channels can be shown - Rejoin channels after NICKSERV authentication finishes 2021-09-23 Version 1.3.0 ======================== - Features: - Implement ISUPPORT parsing + the UTF8ONLY IRCv3 specification - Add support for RPL_UMODEIS - Make nick completion case-insensitive - Add button for inserting emoji - Bug fixes: - Fix configuration syntax errors caused by trailing commas
51 lines
1.4 KiB
Makefile
51 lines
1.4 KiB
Makefile
# $NetBSD: Makefile,v 1.15 2022/03/04 08:10:10 nia Exp $
|
|
|
|
DISTNAME= srain-1.3.2
|
|
CATEGORIES= chat
|
|
MASTER_SITES= ${MASTER_SITE_GITHUB:=SrainApp/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://srain.im/
|
|
COMMENT= Modern IRC client written in GTK
|
|
LICENSE= gnu-gpl-v3
|
|
|
|
USE_TOOLS+= pkg-config
|
|
USE_TOOLS+= msgfmt msgmerge xgettext
|
|
|
|
MESON_ARGS+= -Ddoc_builders=man
|
|
|
|
OWN_DIRS+= ${PKG_SYSCONFDIR}/srain
|
|
|
|
EGDIR= ${PREFIX}/share/examples/srain
|
|
CONF_FILES= ${EGDIR}/builtin.cfg ${PKG_SYSCONFDIR}/srain/builtin.cfg
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
# msgfmt: unknown option -- desktop
|
|
.if ${OPSYS} == "NetBSD"
|
|
TOOLS_PLATFORM.msgfmt=
|
|
.endif
|
|
|
|
SUBST_CLASSES+= sphinx
|
|
SUBST_STAGE.sphinx= pre-configure
|
|
SUBST_FILES.sphinx= doc/meson.build
|
|
SUBST_MESSAGE.sphinx= Fixing sphinx binary name.
|
|
SUBST_SED.sphinx+= -e "s,sphinx-build,sphinx-build-${PYVERSSUFFIX},"
|
|
|
|
PYTHON_VERSIONED_DEPENDENCIES= sphinx:tool
|
|
|
|
PYTHON_FOR_BUILD_ONLY= tool
|
|
|
|
post-install:
|
|
${RM} -f ${DESTDIR}${PREFIX}/share/srain/themes/meson.build
|
|
|
|
.include "../../devel/meson/build.mk"
|
|
.include "../../devel/libconfig/buildlink3.mk"
|
|
.include "../../graphics/hicolor-icon-theme/buildlink3.mk"
|
|
.include "../../lang/python/versioned_dependencies.mk"
|
|
.include "../../net/libsoup/buildlink3.mk"
|
|
.include "../../security/libsecret/buildlink3.mk"
|
|
.include "../../security/openssl/buildlink3.mk"
|
|
.include "../../sysutils/desktop-file-utils/desktopdb.mk"
|
|
.include "../../x11/gtk3/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|