380e4dc615
(Note: this includes the fix of a serious bug, so I'll recommend upgrading for 0.9.0 and 0.9.1 users (the older version doesn't have the bug).) Changes: * The bug that removed messages from server if "Don't receive" action is specified by the filter rule has been fixed. * The bug that caused abort when a button is double-clicked on some dialogs has been fixed. * A warning that was displayed when address book was empty has been fixed.
65 lines
1.7 KiB
Makefile
65 lines
1.7 KiB
Makefile
# $NetBSD: Makefile,v 1.40 2003/06/06 07:03:51 chris Exp $
|
|
|
|
DISTNAME= sylpheed-0.9.2
|
|
#PKGREVISION= 2
|
|
CATEGORIES= mail news x11
|
|
MASTER_SITES= http://sylpheed.good-day.net/sylpheed/
|
|
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]*
|
|
|
|
USE_BUILDLINK2= yes
|
|
USE_PKGINSTALL= yes
|
|
USE_PKGLOCALEDIR= yes
|
|
USE_X11= yes
|
|
USE_GMAKE= yes
|
|
|
|
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}
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
BUILD_DEFS+= USE_INET6 USE_OPENLDAP
|
|
|
|
.if defined(USE_INET6) && ${USE_INET6} == YES
|
|
CONFIGURE_ARGS+= --enable-ipv6
|
|
.endif
|
|
|
|
FACES_IS_INSTALLED!= ${PKG_INFO} -e faces || ${ECHO}
|
|
.if empty(FACES_IS_INSTALLED)
|
|
. include "../../graphics/compface/buildlink2.mk"
|
|
.else
|
|
. include "../../mail/faces/buildlink2.mk"
|
|
.endif
|
|
|
|
.if defined(USE_OPENLDAP) && ${USE_OPENLDAP} == YES
|
|
CONFIGURE_ARGS+= --enable-ldap
|
|
.include "../../databases/openldap/buildlink2.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/buildlink2.mk"
|
|
.include "../../graphics/gdk-pixbuf/buildlink2.mk"
|
|
.include "../../security/gpgme/buildlink2.mk"
|
|
.include "../../security/openssl/buildlink2.mk"
|
|
.include "../../x11/gtk/buildlink2.mk"
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|