mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-29 01:13:08 +00:00
108b9151fa
New in this release: ~~~~~~~~~~~~~~~~~~~~ * Support for the OAuth2 authorisation protocol has been added for IMAP, POP and SMTP using custom, user-generated client IDs. OAuth2 preferences are found in the Account Preferences on the Receive page (for POP: Authenticate before POP connection, for IMAP: Authentication method); the Send page (SMTP authentication: Authentication method); and on a dedicated OAuth2 page. * The option 'Save (X-)Face in address book if possible' has been added to the /Message View/Text Options preferences page. Previously the (X-)Face would be saved automatically, therefore this option is turned on by default. * The Image Viewer has been reworked. New options have been added to /Message View/Image Viewer: when resizing images, either fit the image width or fit the image height to the available space. Fitting the image height is the default. Regardless of this setting, when displaying images inline they will fit the height. When displaying an image, left-clicking the image will toggle between full size and reduced size; right-clicking will toggle between fitting the height and fitting the width. * When re-editing a saved message, it is now possible to use /Options/Remove References. * It is now possible to attempt to retrieve a missing GPG key via WKD. * The man page has been updated. * Updated translations: Brazilian Portuguese, British English, Catalan, Czech, Danish, Dutch, French, Polish, Romanian, Russian, Slovak, Spanish, Traditional Chinese, Turkish. * bug fixes See https://www.claws-mail.org/news.php for more details. PR: 257110 Reported by: bsd@dino.sk
54 lines
1.3 KiB
Makefile
54 lines
1.3 KiB
Makefile
PORTVERSION= 3.18.0
|
|
CATEGORIES?= mail
|
|
MASTER_SITES= http://www.claws-mail.org/download.php?file=releases/
|
|
|
|
MAINTAINER= portmaster@bsdforge.com
|
|
|
|
LICENSE= GPLv3
|
|
|
|
USES+= autoreconf gettext-tools gmake iconv libtool pkgconfig tar:xz
|
|
GNU_CONFIGURE= yes
|
|
|
|
CONFIGURE_ARGS= ${ICONV_CONFIGURE_ARG} --disable-dbus --disable-static
|
|
|
|
.include "../claws-mail/Makefile.claws.plugins"
|
|
|
|
.for p in ${CLAWS_PLUGINS}
|
|
CONFIGURE_ARGS+= --disable-${p}-plugin
|
|
.endfor
|
|
|
|
.if defined(CLAWS_PLUGINS_BUILD)
|
|
DISTNAME= claws-mail-${PORTVERSION}
|
|
PKGNAMEPREFIX= claws-mail-
|
|
|
|
BUILD_DEPENDS+= claws-mail>=${PORTVERSION}:mail/claws-mail
|
|
RUN_DEPENDS+= claws-mail>=${PORTVERSION}:mail/claws-mail
|
|
|
|
MASTERDIR= ${.CURDIR}/../../mail/claws-mail
|
|
DESCR= ${.CURDIR}/pkg-descr
|
|
FILESDIR= ${.CURDIR}/files
|
|
PLIST= ${NONEXISTENT}
|
|
PKGMESSAGE= ${.CURDIR}/pkg-message
|
|
|
|
CONFIGURE_ARGS+= --disable-nls
|
|
|
|
. for p in ${CLAWS_PLUGINS_BUILD}
|
|
CONFIGURE_ARGS:= ${CONFIGURE_ARGS:S|--disable-${p}-plugin||}
|
|
PLIST_FILES+= lib/claws-mail/plugins/${p:S|spam_|spam|}.so
|
|
. endfor
|
|
|
|
do-build:
|
|
. for p in ${CLAWS_PLUGINS_BUILD}
|
|
(cd ${WRKSRC}/src/plugins/${p} && ${MAKE_CMD})
|
|
. endfor
|
|
|
|
do-install:
|
|
@${MKDIR} ${STAGEDIR}${PREFIX}/lib/claws-mail/plugins
|
|
. for p in ${CLAWS_PLUGINS_BUILD}
|
|
(cd ${WRKSRC}/src/plugins/${p} && \
|
|
${INSTALL_LIB} .libs/${p:S|spam_|spam|}.so \
|
|
${STAGEDIR}${PREFIX}/lib/claws-mail/plugins)
|
|
. endfor
|
|
|
|
.endif
|