mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-06 01:57:40 +00:00
6c95bb7ab3
New in this release: ~~~~~~~~~~~~~~~~~~~~ * The TAB address completion in the Compose window now matches any part of the address and not just the beginning. * When copying or moving a message, the type-ahead search now matches any part of a folder name and not just the beginning. * It is now possible to replace the current signature in the Compose window by using the '/Message/Replace signature' menu item. * It is now possible to disable the 'Subject is empty' warning dialogue. See the option 'Warn when Subject is empty' option on the '/Configuration/Preferences/Mail handling/Sending' page. * When sending messages, if the hostname cannot be determined, fallback to 'localhost' rather than 'unknown', as the latter is rejected by some servers. * Added better handling of messages from broken mailers, such as yahoo groups. * PDF plugin: the minimum required version of poppler is 0.12.0. * PGP/* plugin: long key IDs are now displayed in the dialogues instead of short IDs. * PGP/* plugin: The automatic signature check is now non-blocking. * Python plugin: can now access accounts, mailboxes, folder properties * vCalendar plugin: webcals:// URLs are now treated as https:// * Translation updates: Brazilian Portuguese, Czech, Dutch, French, German, Hebrew, Slovak, Spanish, and Swedish. * Support for Maemo has been removed.
80 lines
1.6 KiB
Makefile
80 lines
1.6 KiB
Makefile
# $FreeBSD$
|
|
|
|
PORTVERSION= 3.9.3
|
|
CATEGORIES?= mail
|
|
MASTER_SITES= SF/sylpheed-claws/Claws%20Mail/${PORTVERSION}
|
|
|
|
MAINTAINER= pawel@FreeBSD.org
|
|
|
|
LICENSE= GPLv3
|
|
|
|
USE_BZIP2= yes
|
|
USES+= gmake iconv pkgconfig
|
|
GNU_CONFIGURE= yes
|
|
|
|
CONFIGURE_ARGS= ${ICONV_CONFIGURE_ARG} --disable-dbus
|
|
|
|
CLAWS_PLUGINS= acpi_notifier \
|
|
address_keeper \
|
|
archive \
|
|
att_remover \
|
|
attachwarner \
|
|
bogofilter \
|
|
bsfilter \
|
|
clamd \
|
|
fancy \
|
|
fetchinfo \
|
|
gdata \
|
|
geolocation \
|
|
mailmbox \
|
|
newmail \
|
|
notification \
|
|
pdf_viewer \
|
|
perl \
|
|
python \
|
|
pgpcore \
|
|
pgpinline \
|
|
pgpmime \
|
|
rssyl \
|
|
smime \
|
|
spam_report \
|
|
spamassassin \
|
|
tnef_parse \
|
|
vcalendar
|
|
|
|
.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}:${PORTSDIR}/mail/claws-mail
|
|
RUN_DEPENDS+= claws-mail>=${PORTVERSION}:${PORTSDIR}/mail/claws-mail
|
|
|
|
MASTERDIR= ${.CURDIR}/../../mail/claws-mail
|
|
DESCR= ${.CURDIR}/pkg-descr
|
|
FILESDIR= ${.CURDIR}/files
|
|
PLIST= ${NONEXISTENT}
|
|
PKGMESSAGE= ${.CURDIR}/pkg-message
|
|
|
|
. for p in ${CLAWS_PLUGINS_BUILD}
|
|
CONFIGURE_ARGS:= ${CONFIGURE_ARGS:S|--disable-${p}-plugin||}
|
|
PLIST_FILES+= lib/claws-mail/plugins/${p}.a \
|
|
lib/claws-mail/plugins/${p}.la \
|
|
lib/claws-mail/plugins/${p}.so
|
|
. endfor
|
|
|
|
do-build:
|
|
. for p in ${CLAWS_PLUGINS_BUILD}
|
|
cd ${WRKSRC}/src/plugins/${p} && ${GMAKE}
|
|
. endfor
|
|
|
|
do-install:
|
|
. for p in ${CLAWS_PLUGINS_BUILD}
|
|
cd ${WRKSRC}/src/plugins/${p} && ${GMAKE} install DESTDIR="${STAGEDIR}"
|
|
. endfor
|
|
|
|
.endif
|