freebsd-ports/mail/sylpheed/Makefile
Tobias C. Berner fa81a4f5f8 accessibility/at-spi2-core: update to 2.46.0
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
---
2023-03-02 06:23:10 +01:00

118 lines
3.6 KiB
Makefile

PORTNAME= sylpheed
PORTVERSION= 3.7.0
PORTREVISION= 6
CATEGORIES= mail
MASTER_SITES= http://sylpheed.sraoss.jp/sylpheed/v${PORTVERSION:C/\.[^\.]*$//}/ \
LOCAL/ehaupt
MAINTAINER= ehaupt@FreeBSD.org
COMMENT= Lightweight, featureful, and fast GTK+ based e-mail client
WWW= https://sylpheed.sraoss.jp/en/
LICENSE= GPLv2 LGPL21
LICENSE_COMB= dual
RUN_DEPENDS= ${LOCALBASE}/etc/mime.types:misc/mime-support
LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \
libfreetype.so:print/freetype2 \
libharfbuzz.so:print/harfbuzz
USES= cpe desktop-file-utils gettext gmake gnome iconv libtool pkgconfig \
tar:bzip2
USE_GNOME= gtk20 cairo gdkpixbuf2
USE_LDCONFIG= yes
CPE_VENDOR= sylpheed_project
GNU_CONFIGURE= yes
INSTALL_TARGET= install-strip
CPPFLAGS+= -I${LOCALBASE}/include
LIBS+= -L${LOCALBASE}/lib
CONFIGURE_ARGS= --enable-ipv6 \
--prefix=${PREFIX} \
--program-transform-name=''
CONFLICTS= sylpheed-1.[0-8]* sylpheed-2.[0-9]* sylpheed-gtk2
OPTIONS_DEFINE= CA_BUNDLE COMPFACE CURL DOCS GPGME GTKSPELL LDAP \
ONIGURUMA SSL HIDE_OSSIG
CA_BUNDLE_DESC= Include CA bundle for certificate verification
COMPFACE_DESC= X-Face support
CURL_DESC= libcurl dependency (remote update check)
GPGME_DESC= GnuPG support using GPGME
GTKSPELL_DESC= Spell checking support
HIDE_OSSIG_DESC=Hide OS and GTK signature in mail header
ONIGURUMA_DESC= Oniguruma support
OPTIONS_DEFAULT=CA_BUNDLE CURL GTKSPELL GPGME SSL
CA_BUNDLE_RUN_DEPENDS= ${LOCALBASE}/share/certs/ca-root-nss.crt:security/ca_root_nss
COMPFACE_LIB_DEPENDS= libcompface.so:mail/faces
COMPFACE_CONFIGURE_ENABLE= compface
CURL_RUN_DEPENDS= curl:ftp/curl
GPGME_LIB_DEPENDS= libgpgme.so:security/gpgme \
libgpg-error.so:security/libgpg-error \
libassuan.so:security/libassuan
GPGME_RUN_DEPENDS= gpg:security/gnupg
GPGME_CONFIGURE_ENABLE= gpgme
GTKSPELL_LIB_DEPENDS= libgtkspell.so:textproc/gtkspell \
libenchant.so:textproc/enchant \
libdbus-glib-1.so:devel/dbus-glib \
libdbus-1.so:devel/dbus
GTKSPELL_CONFIGURE_ENABLE= gtkspell
HIDE_OSSIG_EXTRA_PATCHES= ${PATCHDIR}/extra-patch-src_main.c
LDAP_CONFIGURE_ENABLE= ldap
LDAP_USES= ldap
ONIGURUMA_LIB_DEPENDS= libonig.so:devel/oniguruma
ONIGURUMA_CONFIGURE_ENABLE= oniguruma
SSL_CONFIGURE_ENABLE= ssl
SSL_USES= ssl
.include <bsd.port.options.mk>
MAKEFILES= Makefile.in ac/Makefile.in faq/Makefile.in faq/de/Makefile.in \
faq/en/Makefile.in faq/es/Makefile.in faq/fr/Makefile.in \
faq/it/Makefile.in manual/Makefile.in manual/en/Makefile.in \
manual/ja/Makefile.in src/Makefile.in libsylph/Makefile.in \
src/icons/Makefile.in
post-patch:
@${REINPLACE_CMD} -e 's|-lresolv||g; s|-lpisock\"|${ICONV_LIB} &|g;' \
${WRKSRC}/configure
@${REINPLACE_CMD} -e 's|/etc|${LOCALBASE}&|g' \
${WRKSRC}/libsylph/procmime.c
# to prevent breaking cc of ldif.c because of a base64.h in PREFIX/include
@${REINPLACE_CMD} -e 's|^\(DEFS.*\.\.\)$$|\1 -I../libsylph|' \
${WRKSRC}/src/Makefile.in
post-patch-DOCS-off:
@${REINPLACE_CMD} -e '/^SUBDIRS = /s/manual faq//' \
${WRKSRC}/Makefile.in
post-patch-DOCS-on:
.for i in ${MAKEFILES}
@${REINPLACE_CMD} -e 's|^faqdir = @faqdir@$$|faqdir = ${DOCSDIR}/faq|g; \
s|^manualdir = @manualdir@$$|manualdir = ${DOCSDIR}/manual|g' \
${WRKSRC}/${i}
.endfor
post-install:
@${MKDIR} ${STAGEDIR}${DOCSDIR}
.for i in ChangeLog INSTALL README TODO
${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/${i}.ja ${STAGEDIR}${DOCSDIR}
.endfor
${INSTALL_DATA} ${WRKSRC}/sylpheed.png ${STAGEDIR}${PREFIX}/share/pixmaps/
${INSTALL_DATA} ${WRKSRC}/sylpheed.desktop ${STAGEDIR}${PREFIX}/share/applications/
.include <bsd.port.mk>