openbsd-ports/mail/sylpheed/Makefile
sturm da9fae9ff0 SECURITY update to sylpheed 1.0.4
* A buffer overflow which occurred when displaying a message with
attachments which have MIME-encoded filenames was fixed.
* A possible crash on re-edit of messages was fixed.

from Bernd Ahlers <b.ahlers at ba-net.org>
2005-04-04 18:51:03 +00:00

57 lines
1.3 KiB
Makefile

# $OpenBSD: Makefile,v 1.56 2005/04/04 18:51:03 sturm Exp $
COMMENT= "mail/news client in gtk+"
VERSION= 1.0.4
DISTNAME= sylpheed-${VERSION}
CATEGORIES= mail news x11
HOMEPAGE= http://sylpheed.good-day.net
MAINTAINER= Damien Couderc <couderc@openbsd.org>
LIB_DEPENDS= gdk_pixbuf.2::graphics/gdk-pixbuf
# GPL
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
WANTLIB= X11 Xext Xi c crypto gdk glib gmodule gtk iconv intl \
jpeg m png pthread ssl tiff z
MASTER_SITES= ${HOMEPAGE}/sylpheed/v1.0/
CONFIGURE_STYLE= gnu
CONFIGURE_ARGS= --enable-ssl --enable-ipv6 \
--disable-imlib
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib -pthread"
FLAVORS= compface gpgme ldap
FLAVOR?=
.if ${FLAVOR:L:Mcompface}
PERMIT_PACKAGE_CDROM= "No Fee"
PERMIT_DISTFILES_CDROM= "No Fee"
LIB_DEPENDS+= compface.1::mail/faces
.else
CONFIGURE_ARGS+= --disable-compface
.endif
.if ${FLAVOR:L:Mgpgme}
LIB_DEPENDS+= gpgme.4::security/gpgme
CONFIGURE_ARGS+= --enable-gpgme
.else
CONFIGURE_ARGS+= --disable-gpgme
.endif
.if ${FLAVOR:L:Mldap}
LIB_DEPENDS+= ldap.2,lber.2::databases/openldap
CONFIGURE_ARGS+= --enable-ldap
WANTLIB+= gthread
.else
CONFIGURE_ARGS+= --disable-ldap
.endif
.include <bsd.port.mk>