mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-11 07:22:22 +00:00
688e59b7ef
* New HTML viewer plugin: Litehtml viewer * Added option 'Enable keyboard shortcuts' to the 'Keyboard shortcuts' frame on /Configuration/Preferences/Other/Miscellaneous * Compose: implemented copying of attached images to clipboard * Compose: images and text/uri-list (files) can now be attached by pasting into the Compose window * Python plugin: window sizes are now remembered for the Python console, the 'Open URLs' and the 'Set mailbox order' windows. * Fancy plugin: the download-link feature now follows redirections * MBOX export: the Enter key in the dialogue now starts the export * The date (ISO format) has been added to log timestamps * Updated translations: Brazilian Portuguese, Catalan, Czech, Danish, Dutch, French, German, Hungarian, Indonesian, Polish, Portuguese, Romanian, Russian, Slovak, Spanish, Swedish, Traditional Chinese, Turkish Sponsored by: Netzkommune GmbH
89 lines
2.7 KiB
Makefile
89 lines
2.7 KiB
Makefile
# Created by: Simon 'corecode' Schubert <corecode@corecode.ath.cx>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= claws-mail
|
|
PORTREVISION= 0
|
|
CATEGORIES= mail news ipv6
|
|
|
|
COMMENT= Lightweight and featureful GTK+ based e-mail and news client
|
|
|
|
LICENSE= GPLv3
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
LIB_DEPENDS= libcurl.so:ftp/curl \
|
|
libetpan.so:mail/libetpan \
|
|
libfreetype.so:print/freetype2 \
|
|
libsasl2.so:security/cyrus-sasl2 \
|
|
libgnutls.so:security/gnutls \
|
|
libgcrypt.so:security/libgcrypt \
|
|
libexpat.so:textproc/expat2 \
|
|
libfontconfig.so:x11-fonts/fontconfig \
|
|
libnettle.so:security/nettle
|
|
RUN_DEPENDS= mime-support>0:misc/mime-support
|
|
|
|
USES= autoreconf gettext-tools compiler:c++11-lang cpe desktop-file-utils gettext gnome pathfix \
|
|
python:3.6 shebangfix ssl
|
|
USE_XORG= ice sm
|
|
USE_GNOME= cairo gtk20 librsvg2
|
|
SHEBANG_FILES= tools/*.pl tools/*.py tools/tb2claws-mail
|
|
INSTALLS_ICONS= yes
|
|
|
|
OPTIONS_DEFINE= COMPFACE DEBUG DOCS ENCHANT IPV6 JPILOT LDAP \
|
|
NLS STARTUP THEMES
|
|
OPTIONS_DEFAULT=COMPFACE ENCHANT STARTUP THEMES
|
|
OPTIONS_SUB= yes
|
|
|
|
COMPFACE_DESC= X-Face support
|
|
COMPFACE_CONFIGURE_ENABLE= compface
|
|
COMPFACE_LIB_DEPENDS= libcompface.so:mail/faces
|
|
|
|
DEBUG_CONFIGURE_ON= --enable-maintainer-mode
|
|
|
|
ENCHANT_DESC= Spell checking support
|
|
ENCHANT_CONFIGURE_ENABLE= enchant
|
|
ENCHANT_LIB_DEPENDS= libenchant.so:textproc/enchant
|
|
|
|
IPV6_CONFIGURE_ENABLE= ipv6
|
|
|
|
JPILOT_DESC= JPilot support
|
|
JPILOT_CONFIGURE_ENABLE= jpilot
|
|
JPILOT_LIB_DEPENDS= libpisock.so:palm/pilot-link
|
|
JPILOT_RUN_DEPENDS= jpilot:palm/jpilot
|
|
|
|
LDAP_CONFIGURE_ENABLE= ldap
|
|
LDAP_USE= openldap=yes
|
|
|
|
NLS_CONFIGURE_OFF= --disable-nls
|
|
NLS_USES= gettext-tools
|
|
|
|
STARTUP_DESC= Startup notification support
|
|
STARTUP_CONFIGURE_ENABLE= startup-notification
|
|
STARTUP_LIB_DEPENDS= libstartup-notification-1.so:x11/startup-notification
|
|
|
|
THEMES_DESC= Additional themes
|
|
THEMES_RUN_DEPENDS= claws-mail-themes>0:x11-themes/claws-mail-themes
|
|
|
|
.include "Makefile.claws"
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} 's|-dirty||' ${WRKSRC}/version
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${DATADIR}
|
|
(cd ${WRKSRC}/tools && \
|
|
${INSTALL_SCRIPT} OOo2claws-mail.pl acroread2claws-mail.pl \
|
|
calypso_convert.pl convert_mbox.pl eud2gc.py filter_conv.pl \
|
|
filter_conv_new.pl fix_date.sh gif2xface.pl google_msgid.pl \
|
|
google_search.pl kmail-mailbox2claws-mail.pl kmail2claws-mail.pl \
|
|
kmail2claws-mail_v2.pl multiwebsearch.conf multiwebsearch.pl \
|
|
nautilus2claws-mail.sh outlook2claws-mail.pl tb2claws-mail \
|
|
tbird2claws.py textviewer.pl textviewer.sh \
|
|
thunderbird-filters-convertor.pl uudec uuooffice vcard2xml.py \
|
|
${STAGEDIR}${DATADIR})
|
|
|
|
post-install-DOCS-on:
|
|
(cd ${WRKSRC} && ${INSTALL_DATA} NEWS README TODO ${STAGEDIR}${DOCSDIR})
|
|
${INSTALL_DATA} ${WRKSRC}/tools/README ${STAGEDIR}${DOCSDIR}/README.tools
|
|
|
|
.include <bsd.port.mk>
|