pkgsrc/mail/sylpheed/options.mk
chris 7a76e30eb4 Update sylpheed to 2.2.4. Changes are:
* MIME filename encoding with RFC 2322 parameter value extension was
      supported.
    * The clear button for the quick search entry was added.
    * The bug that bold face was disabled in GtkTreeView with GLib 2.10
      and Pango 1.12 was fixed.
    * Win32: libwimp.dll was updated.
    * Win32: The bug that subfolders were duplicated when rebuilding
      folder tree while the settings were shared between Win32 and Unix
      was fixed.
    * Win32: The uninstaller was modified so that it only removes files
      and folders created by the installer.

Also remove extra blank lines at the end of options.mk to appease pkglint.
2006-03-29 22:54:42 +00:00

46 lines
1.1 KiB
Makefile

# $NetBSD: options.mk,v 1.2 2006/03/29 22:54:42 chris Exp $
#
PKG_OPTIONS_VAR= PKG_OPTIONS.sylpheed
PKG_SUPPORTED_OPTIONS= jpilot ldap inet6 gtkspell gpgme
PKG_SUGGESTED_OPTIONS= inet6 gpgme
.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
.if !empty(PKG_OPTIONS:Mgtkspell)
CONFIGURE_ARGS+= --enable-gtkspell
. include "../../textproc/gtkspell/buildlink3.mk"
.else
CONFIGURE_ARGS+= --disable-gtkspell
.endif
.if !empty(PKG_OPTIONS:Mgpgme)
CONFIGURE_ARGS+= --enable-gpgme
. include "../../security/gpgme/buildlink3.mk"
.else
CONFIGURE_ARGS+= --disable-gpgme
.endif