diff options
author | jmmv <jmmv@pkgsrc.org> | 2005-04-13 17:16:25 +0000 |
---|---|---|
committer | jmmv <jmmv@pkgsrc.org> | 2005-04-13 17:16:25 +0000 |
commit | d24b2e6bb5994994e2d162efc62c2da91e93e368 (patch) | |
tree | 0e3e6b7baee20b8cf794224b421bd53c94f5ccbf /mail/evolution/Makefile | |
parent | 632b869611d00e69ead6c79ed1cd43bbfc639561 (diff) | |
download | pkgsrc-d24b2e6bb5994994e2d162efc62c2da91e93e368.tar.gz |
Ignore the smime stuff in the PLIST when ssl is disabled. Fixes problem
reported by Leonard Schmidt in tech-pkg@, thread "``make package'' fails
on evolution and gnumeric".
Diffstat (limited to 'mail/evolution/Makefile')
-rw-r--r-- | mail/evolution/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/mail/evolution/Makefile b/mail/evolution/Makefile index 56bc5060ec0..7c3da564457 100644 --- a/mail/evolution/Makefile +++ b/mail/evolution/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.78 2005/04/11 21:46:18 tv Exp $ +# $NetBSD: Makefile,v 1.79 2005/04/13 17:16:25 jmmv Exp $ DISTNAME= evolution-2.2.1.1 CATEGORIES= mail time gnome @@ -72,6 +72,8 @@ CONFIGURE_ARGS+= --without-krb5 .if !empty(PKG_OPTIONS:Mssl) CONFIGURE_ARGS+= --enable-nss=yes +PLIST_SUBST+= HAVE_SMIME= +PRINT_PLIST_AWK+= /smime/ { print "$${HAVE_SMIME}" $0; next; } # XXX Workaround for the following problem: addressbook/util/libeabutil.la # is compiled as a static library only which uses the NSS stuff. When other # parts of the program use this .la archive, they get the right -L flags @@ -83,6 +85,7 @@ LDFLAGS+= ${COMPILER_RPATH_FLAG}${BUILDLINK_PREFIX.nss}/lib/nss . include "../../www/mozilla-gtk2/buildlink3.mk" .else CONFIGURE_ARGS+= --disable-nss +PLIST_SUBST+= HAVE_SMIME="@comment " .endif PKGCONFIG_OVERRIDE= camel.pc.in |