pkgsrc/mail/sylpheed-devel/Makefile
chris f5b02254e8 Update sylpheed-devel to 2.1.2. Main changes are:
* The core parts were separated into a library (LibSylph), and its
      license was changed to LGPL.
    * The feature to sort the summary by thread date was implemented.
    * When executing IMAP4 operations which take long time, its
      progress is now displayed on the statusbar, and the UI is
      periodically updated.
    * The number of messages to be copied at a time on IMAP4 was
      limited to prevent timeout error.
    * GPG and SSL settings are now saved even if they are disabled at
      the compile time.
    * The auto detection of Japanese encoding now supports UTF-8
      encoding.
    * The text display has been modified a bit.
    * The initial implementation of tray icon was added.
    * Address fields are now normalized before sending.
    * Some problems of the addressbook was fixed.
    * A bug in which message/rfc822 attachments were broken when
      pgp-signed was fixed.
    * Win32: A bug in which opened sockets were not closed properly was
      fixed.
2005-09-15 21:06:52 +00:00

75 lines
2 KiB
Makefile

# $NetBSD: Makefile,v 1.16 2005/09/15 21:06:52 chris Exp $
DISTNAME= sylpheed-2.1.2
CATEGORIES= mail news x11
#MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=sylpheed-claws/}
MASTER_SITES= http://sylpheed.good-day.net/sylpheed/v2.1/
EXTRACT_SUFX= .tar.bz2
MAINTAINER= chris@NetBSD.org
HOMEPAGE= http://sylpheed.good-day.net/index.cgi.en
COMMENT= X based e-mail and netnews client
BUILD_USES_MSGFMT= yes
DEPENDS+= metamail>=2.7:../../mail/metamail
CONFLICTS= sylpheed-claws-[0-9]* sylpheed-gtk2-[0-9]*
USE_PKGINSTALL= yes
USE_PKGLOCALEDIR= yes
USE_LIBTOOL= yes
USE_TOOLS+= gmake
GNU_CONFIGURE= yes
CONFIGURE_ARGS+= --enable-nls
CONFIGURE_ARGS+= --enable-ssl
CONFIGURE_ARGS+= --enable-gpgme
CONFIGURE_ARGS+= --enable-compface
PKG_SYSCONFSUBDIR= sylpheed
CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR}
PKG_OPTIONS_VAR= PKG_OPTIONS.sylpheed-devel
PKG_SUPPORTED_OPTIONS= jpilot ldap inet6
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Minet6)
CONFIGURE_ARGS+= --enable-ipv6
.else
CONFIGURE_ARGS+= --disable-ipv6
.endif
FACES_IS_INSTALLED!= ${PKG_INFO} -e faces || ${ECHO}
.if empty(FACES_IS_INSTALLED)
. include "../../graphics/compface/buildlink3.mk"
.else
. include "../../mail/faces/buildlink3.mk"
.endif
.if !empty(PKG_OPTIONS:Mldap)
CONFIGURE_ARGS+= --enable-ldap
.include "../../databases/openldap/buildlink3.mk"
.endif
.if !empty(PKG_OPTIONS:Mjpilot)
CONFIGURE_ARGS+= --enable-jpilot
.include "../../comms/pilot-link-libs/buildlink3.mk"
.include "../../comms/jpilot/buildlink3.mk"
.endif
EGDIR= ${PREFIX}/share/examples/sylpheed
CONF_FILES= ${EGDIR}/mime.types ${PKG_SYSCONFDIR}/mime.types
post-install:
${INSTALL_DATA_DIR} ${EGDIR}
${INSTALL_DATA} ${FILESDIR}/mime.types ${EGDIR}
.include "../../converters/libiconv/buildlink3.mk"
.include "../../devel/gettext-lib/buildlink3.mk"
.include "../../security/gpgme/buildlink3.mk"
.include "../../security/openssl/buildlink3.mk"
.include "../../devel/glib2/buildlink3.mk"
.include "../../x11/gtk2/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"