5abef9be14
RECOMMENDED is removed. It becomes ABI_DEPENDS. BUILDLINK_RECOMMENDED.foo becomes BUILDLINK_ABI_DEPENDS.foo. BUILDLINK_DEPENDS.foo becomes BUILDLINK_API_DEPENDS.foo. BUILDLINK_DEPENDS does not change. IGNORE_RECOMMENDED (which defaulted to "no") becomes USE_ABI_DEPENDS which defaults to "yes". Added to obsolete.mk checking for IGNORE_RECOMMENDED. I did not manually go through and fix any aesthetic tab/spacing issues. I have tested the above patch on DragonFly building and packaging subversion and pkglint and their many dependencies. I have also tested USE_ABI_DEPENDS=no on my NetBSD workstation (where I have used IGNORE_RECOMMENDED for a long time). I have been an active user of IGNORE_RECOMMENDED since it was available. As suggested, I removed the documentation sentences suggesting bumping for "security" issues. As discussed on tech-pkg. I will commit to revbump, pkglint, pkg_install, createbuildlink separately. Note that if you use wip, it will fail! I will commit to pkgsrc-wip later (within day).
146 lines
5.1 KiB
Makefile
146 lines
5.1 KiB
Makefile
# $NetBSD: Makefile,v 1.106 2006/04/06 06:22:16 reed Exp $
|
|
|
|
DISTNAME= evolution-2.6.0
|
|
PKGREVISION= 2
|
|
CATEGORIES= mail time gnome
|
|
MASTER_SITES= ${MASTER_SITE_GNOME:=sources/evolution/2.6/}
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= rh@NetBSD.org
|
|
HOMEPAGE= http://www.gnome.org/projects/evolution/
|
|
COMMENT= GNOME mailer, calendar, contact manager, and communications tool
|
|
|
|
BUILD_USES_MSGFMT= YES
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.evolution
|
|
PKG_SUGGESTED_OPTIONS= inet6 ssl
|
|
PKG_SUPPORTED_OPTIONS= inet6 krb4 krb5 ssl
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Mssl) && !empty(PKG_OPTIONS:Mkrb[45])
|
|
# If Kerberos is enabled, the libcrypto library is linked in, which causes
|
|
# function name conflicts with libsoftokn3 provided by Mozilla NSS. These
|
|
# cause runtime crashes, so don't allow these options to be specified
|
|
# together.
|
|
PKG_FAIL_REASON+= "Kerberos support conflicts with SSL"
|
|
.endif
|
|
|
|
GNU_CONFIGURE= YES
|
|
USE_DIRS+= gnome2-1.5
|
|
USE_TOOLS+= bison gmake pkg-config
|
|
USE_LIBTOOL= YES
|
|
USE_MSGFMT_PLURALS= YES
|
|
USE_PKGLOCALEDIR= YES
|
|
|
|
REPLACE_PERL+= addressbook/tools/csv2vcard
|
|
REPLACE_PERL+= addressbook/tools/evolution-addressbook-clean
|
|
REPLACE_PERL+= addressbook/tools/evolution-addressbook-clean.in
|
|
|
|
CPPFLAGS+= -I/usr/include/gssapi
|
|
CPPFLAGS+= -I/usr/include/krb5
|
|
|
|
CONFIGURE_ARGS+= --disable-gtk-doc
|
|
CONFIGURE_ARGS+= --with-openldap
|
|
CONFIGURE_ARGS+= --without-static-ldap
|
|
CONFIGURE_ARGS+= --enable-openssl=no
|
|
CONFIGURE_ARGS+= --enable-pilot-conduits=no
|
|
CONFIGURE_ARGS+= --with-krb4=/usr
|
|
CONFIGURE_ARGS+= --with-krb5=/usr
|
|
CONFIGURE_ARGS+= --with-html-dir=${PREFIX}/share/doc
|
|
.if defined(PKGREVISION)
|
|
CONFIGURE_ARGS+= --with-sub-version=nb${PKGREVISION}
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Minet6)
|
|
CONFIGURE_ARGS+= --enable-ipv6=yes
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-ipv6
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mkrb4)
|
|
CONFIGURE_ARGS+= --with-krb4
|
|
.else
|
|
CONFIGURE_ARGS+= --without-krb4
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mkrb5)
|
|
CONFIGURE_ARGS+= --with-krb5
|
|
. include "../../mk/krb5.buildlink3.mk"
|
|
.else
|
|
CONFIGURE_ARGS+= --without-krb5
|
|
.endif
|
|
|
|
.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
|
|
# (from the dependency_libs variable) but not the rpaths. buildlink3 should
|
|
# add rpath flags to the dependency_libs, but there is an strange comment
|
|
# in the wrapper saying that it shouldn't.
|
|
LDFLAGS+= ${COMPILER_RPATH_FLAG}${BUILDLINK_PREFIX.nss}/lib/nss
|
|
BUILDLINK_API_DEPENDS.nss+= nss>=3.9.2nb3
|
|
. include "../../devel/nspr/buildlink3.mk"
|
|
. include "../../devel/nss/buildlink3.mk"
|
|
|
|
CPPFLAGS+= -I${BUILDLINK_PREFIX.nss}/include/nss/nss
|
|
|
|
post-wrapper:
|
|
@cd ${BUILDLINK_DIR}/lib/pkgconfig && ${LN} -s nspr.pc mozilla-nspr.pc
|
|
@cd ${BUILDLINK_DIR}/lib/pkgconfig && ${LN} -s nss.pc mozilla-nss.pc
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-nss
|
|
PLIST_SUBST+= HAVE_SMIME="@comment "
|
|
.endif
|
|
|
|
PKGCONFIG_OVERRIDE= camel.pc.in
|
|
PKGCONFIG_OVERRIDE+= evolution-shell.pc.in
|
|
|
|
GCONF2_SCHEMAS= apps-evolution-mail-prompts-checkdefault-2.6.schemas
|
|
GCONF2_SCHEMAS+= apps_evolution_addressbook-2.6.schemas
|
|
GCONF2_SCHEMAS+= apps_evolution_calendar-2.6.schemas
|
|
GCONF2_SCHEMAS+= apps_evolution_shell-2.6.schemas
|
|
GCONF2_SCHEMAS+= evolution-mail-2.6.schemas
|
|
|
|
BUILDLINK_TRANSFORM+= rm:-DG_DISABLE_DEPRECATED
|
|
BUILDLINK_TRANSFORM+= rm:-DGTK_DISABLE_DEPRECATED
|
|
|
|
BUILDLINK_API_DEPENDS.evolution-data-server+= evolution-data-server>=1.4.1
|
|
BUILDLINK_API_DEPENDS.glib2+= glib2>=2.4.0nb2
|
|
BUILDLINK_API_DEPENDS.libsoup-devel+= libsoup-devel>=2.2.3
|
|
|
|
.if !exists(/usr/include/semaphore.h)
|
|
LDFLAGS+= -lsemaphore
|
|
.include "../../devel/pthread-sem/buildlink3.mk"
|
|
.endif
|
|
.include "../../databases/openldap/buildlink3.mk"
|
|
.include "../../devel/GConf2/schemas.mk"
|
|
.include "../../devel/atk/buildlink3.mk"
|
|
.include "../../devel/gettext-lib/buildlink3.mk"
|
|
.include "../../devel/glib2/buildlink3.mk"
|
|
.include "../../devel/libbonobo/buildlink3.mk"
|
|
.include "../../devel/libbonoboui/buildlink3.mk"
|
|
.include "../../devel/libglade2/buildlink3.mk"
|
|
.include "../../devel/libgnome/buildlink3.mk"
|
|
.include "../../devel/libgnomeui/buildlink3.mk"
|
|
.include "../../graphics/gnome-icon-theme/buildlink3.mk"
|
|
.include "../../graphics/libgnomecanvas/buildlink3.mk"
|
|
.include "../../mail/evolution-data-server/buildlink3.mk"
|
|
.include "../../net/ORBit2/buildlink3.mk"
|
|
.include "../../net/libsoup-devel/buildlink3.mk"
|
|
.include "../../print/libgnomeprint/buildlink3.mk"
|
|
.include "../../print/libgnomeprintui/buildlink3.mk"
|
|
.include "../../sysutils/dbus/buildlink3.mk"
|
|
.include "../../sysutils/dbus-glib/buildlink3.mk"
|
|
.include "../../sysutils/gnome-vfs2/buildlink3.mk"
|
|
.include "../../sysutils/libnotify/buildlink3.mk"
|
|
.include "../../textproc/intltool/buildlink3.mk"
|
|
.include "../../textproc/libxml2/buildlink3.mk"
|
|
.include "../../textproc/scrollkeeper/omf.mk"
|
|
.include "../../www/gtkhtml38/buildlink3.mk"
|
|
.include "../../x11/gtk2/buildlink3.mk"
|
|
.include "../../mk/pthread.buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|