diff options
author | kwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059> | 2010-10-22 05:22:52 +0800 |
---|---|---|
committer | kwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059> | 2010-10-22 05:22:52 +0800 |
commit | 296c17bced36f00765c705a70bf6e142cb767118 (patch) | |
tree | f3ea278390fad0f37ceec16cda8b852d651d5ecf /mail/claws-mail/Makefile | |
parent | 8bbb346d90a56759ffb19ee25ef969fd9175d624 (diff) | |
download | marcuscom-ports-296c17bced36f00765c705a70bf6e142cb767118.tar marcuscom-ports-296c17bced36f00765c705a70bf6e142cb767118.tar.gz marcuscom-ports-296c17bced36f00765c705a70bf6e142cb767118.tar.bz2 marcuscom-ports-296c17bced36f00765c705a70bf6e142cb767118.tar.lz marcuscom-ports-296c17bced36f00765c705a70bf6e142cb767118.tar.xz marcuscom-ports-296c17bced36f00765c705a70bf6e142cb767118.tar.zst marcuscom-ports-296c17bced36f00765c705a70bf6e142cb767118.zip |
Fix build when WITH_DEBUG is enabled with new gtk20. (Depricated nonsense)
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@14823 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'mail/claws-mail/Makefile')
-rw-r--r-- | mail/claws-mail/Makefile | 187 |
1 files changed, 187 insertions, 0 deletions
diff --git a/mail/claws-mail/Makefile b/mail/claws-mail/Makefile new file mode 100644 index 000000000..ef5012905 --- /dev/null +++ b/mail/claws-mail/Makefile @@ -0,0 +1,187 @@ +# New ports collection makefile for: claws-mail +# Date created: 3 January 2002 +# Whom: Simon 'corecode' Schubert <corecode@corecode.ath.cx> +# +# $FreeBSD: ports/mail/claws-mail/Makefile,v 1.161 2010/10/20 07:38:08 netchild Exp $ +# + +PORTNAME= claws-mail +PORTVERSION= 3.7.6 +PORTREVISION= 3 +CATEGORIES= mail news ipv6 +MASTER_SITES= SF/sylpheed-claws/Claws%20Mail/${PORTVERSION} + +MAINTAINER= netchild@FreeBSD.org +COMMENT= A lightweight and very featureful GTK+ based e-mail and news client + +LIB_DEPENDS= etpan:${PORTSDIR}/mail/libetpan \ + cairo:${PORTSDIR}/graphics/cairo \ + expat:${PORTSDIR}/textproc/expat2 \ + fontconfig:${PORTSDIR}/x11-fonts/fontconfig \ + freetype:${PORTSDIR}/print/freetype2 \ + png:${PORTSDIR}/graphics/png \ + gnutls.40:${PORTSDIR}/security/gnutls \ + execinfo:${PORTSDIR}/devel/libexecinfo +RUN_DEPENDS= ${LOCALBASE}/etc/mime.types:${PORTSDIR}/misc/mime-support + +CONFLICTS= sylpheed-claws + +USE_BZIP2= yes +USE_GETTEXT= yes +USE_GMAKE= yes +USE_ICONV= yes +USE_XORG= ice sm x11 xau xcursor xdmcp xext xfixes xi xinerama xrandr \ + xrender +USE_GNOME= gnomehack pkgconfig gtk20 glib20 atk libartlgpl2 pango libxml2 +GNU_CONFIGURE= yes +WANT_GNOME= yes +INSTALLS_ICONS= yes +MAKE_JOBS_SAFE= yes + +MAN1= claws-mail.1 + +CONFIGURE_ARGS= \ + --with-libiconv-prefix=${LOCALBASE} \ + --with-manualdir=${DOCSDIR}/manual \ + +CONFIGURE_ENV= CFLAGS="${CFLAGS} ${PTHREAD_CFLAGS}" \ + CPPFLAGS="${CPPFLAGS} -I${LOCALBASE}/include" \ + LDFLAGS="-L${LOCALBASE}/lib" \ + LIBS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}" + +OPTIONS= ALL "Enable all options except GNUTLS." off \ + ENCHANT "Enable spell checking support." on \ + BOGOFILTER "Enable bogofilter support." off \ + COMPFACE "Enable X-Face support." on \ + DEBUG "Enable debug support." off \ + DILLO "Enable Dillo HTML viewer." off \ + GPGME "Enable PGP/GnuPG/SMIME support using GPGME." off \ + IPV6 "Enable ipv6 support." on \ + JPILOT "Enable JPilot support." off \ + LDAP "Enable LDAP support." off \ + SA_PLUG "Enable SpamAssassin support." off \ + STARTUP "Enable startup notification support." on \ + THEMES "Install additional themes." on + +.include <bsd.port.pre.mk> + +.if defined(WITH_BOGOFILTER) || defined(WITH_ALL) +RUN_DEPENDS+= bogofilter:${PORTSDIR}/mail/bogofilter +CONFIGURE_ARGS+= --enable-bogofilter-plugin +PLIST_SUB+= BOGO_PLUG="" +.else +CONFIGURE_ARGS+= --disable-bogofilter-plugin +PLIST_SUB+= BOGO_PLUG="@comment " +.endif + +.if defined(WITH_COMPFACE) || defined(WITH_ALL) +LIB_DEPENDS+= compface.1:${PORTSDIR}/mail/faces +CONFIGURE_ARGS+= --enable-compface +.else +CONFIGURE_ARGS+= --disable-compface +.endif +.if defined(WITH_ENCHANT) || defined(WITH_ALL) +LIB_DEPENDS+= enchant:${PORTSDIR}/textproc/enchant +CONFIGURE_ARGS+= --enable-enchant +.else +CONFIGURE_ARGS+= --disable-enchant +.endif +.if defined(WITH_JPILOT) || defined(WITH_ALL) +LIB_DEPENDS+= pisock:${PORTSDIR}/palm/pilot-link +RUN_DEPENDS+= jpilot:${PORTSDIR}/palm/jpilot +CONFIGURE_ARGS+= --enable-jpilot +.else +CONFIGURE_ARGS+= --disable-jpilot +.endif +.if defined(WITH_LDAP) || defined(WITH_ALL) +USE_OPENLDAP= yes +CONFIGURE_ARGS+= --enable-ldap +.else +CONFIGURE_ARGS+= --disable-ldap +.endif +.if defined(WITH_SA_PLUG) || defined(WITH_ALL) +RUN_DEPENDS+= spamd:${PORTSDIR}/mail/p5-Mail-SpamAssassin +CONFIGURE_ARGS+= --enable-spamassassin-plugin +PLIST_SUB+= SA_PLUG="" +.else +CONFIGURE_ARGS+= --disable-spamassassin-plugin +PLIST_SUB+= SA_PLUG="@comment " +.endif +.if defined(WITH_GPGME) || defined(WITH_ALL) +PLIST_SUB+= GPGME="" +CONFIGURE_ARGS+= --enable-pgpmime-plugin --enable-pgpcore-plugin \ + --enable-pgpinline-plugin --enable-smime-plugin +LIB_DEPENDS+= gpgme:${PORTSDIR}/security/gpgme \ + gpg-error:${PORTSDIR}/security/libgpg-error +RUN_DEPENDS+= gpg:${PORTSDIR}/security/gnupg +.else +PLIST_SUB+= GPGME="@comment " +CONFIGURE_ARGS+= --disable-pgpmime-plugin --disable-pgpcore-plugin \ + --disable-pgpinline-plugin --disable-smime-plugin +.endif +.if defined(WITH_DEBUG) || defined(WITH_ALL) +CONFIGURE_ARGS+= --enable-maintainer-mode --enable-crash-dialog +STRIP= +.endif +.if defined(WITH_DILLO) || defined(WITH_ALL) +PLIST_SUB+= DILLO="" +RUN_DEPENDS+= dillo:${PORTSDIR}/www/dillo +.else +PLIST_SUB+= DILLO="@comment " +CONFIGURE_ARGS+= --disable-dillo-viewer-plugin +.endif + +.if !defined(WITHOUT_IPV6) || defined(WITH_ALL) +CONFIGURE_ARGS+= --enable-ipv6 +.else +CONFIGURE_ARGS+= --disable-ipv6 +.endif + +.if !defined(WITHOUT_STARTUP) || defined(WITH_ALL) +LIB_DEPENDS+= startup-notification-1.0:${PORTSDIR}/x11/startup-notification +CONFIGURE_ARGS+= --enable-startup-notification +.else +CONFIGURE_ARGS+= --disable-startup-notification +.endif + +.if !defined(WITHOUT_THEMES) +RUN_DEPENDS+= ${LOCALBASE}/share/claws-mail/themes/ZX-0_1.1/down_arrow.xpm:${PORTSDIR}/x11-themes/claws-mail-themes +.endif + +post-patch: + @${REINPLACE_CMD} -e \ + 's|-lresolv||g; s|-lpisock\"|-liconv &|g' \ + -e 's|-DGTK_DISABLE_DEPRECATED -DGDK_DISABLE_DEPRECATED||g' \ + ${WRKSRC}/configure + @${REINPLACE_CMD} -e 's|/etc|${LOCALBASE}&|g ; s|/usr/share|${LOCALBASE}/share|g' \ + ${WRKSRC}/src/procmime.c + @${REINPLACE_CMD} -e "s|po intl src|po src| ; s:@CLAWS_GNOME2:#@CLAWS_GNOME2:g" ${WRKSRC}/Makefile.in + @${REINPLACE_CMD} -e "s:-Wno-unused-function::" ${WRKSRC}/src/Makefile.in + @for f in `${FIND} ${WRKSRC}/tools -type f -print`; do \ + ${REINPLACE_CMD} -e "s|/usr/bin/perl|${PERL}|" $$f; done + +post-install: +.if !defined(NOPORTDOCS) +.for i in NEWS RELEASE_NOTES README TODO + @${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR} +.endfor + @${INSTALL_DATA} ${WRKSRC}/tools/README ${DOCSDIR}/README.tools +.endif + @${MKDIR} ${DATADIR} + cd ${WRKSRC}/tools && \ + ${INSTALL_SCRIPT} OOo2claws-mail.pl acroread2claws-mail.pl \ + calypso_convert.pl convert_mbox.pl eud2gc.py filter_conv.pl \ + filter_conv_new.pl fix_date.sh freshmeat_search.pl \ + gif2xface.pl google_msgid.pl google_search.pl \ + kmail-mailbox2claws-mail.pl kmail2claws-mail.pl \ + kmail2claws-mail_v2.pl multiwebsearch.conf multiwebsearch.pl \ + nautilus2claws-mail.sh outlook2claws-mail.pl tb2claws-mail \ + tbird2claws.py textviewer.pl textviewer.sh \ + thunderbird-filters-convertor.pl uudec uuooffice vcard2xml.py \ + ${DATADIR} + @${MKDIR} ${PREFIX}/share/applications + @${INSTALL_DATA} ${WRKSRC}/claws-mail.desktop ${PREFIX}/share/applications/ + @${MKDIR} ${PREFIX}/share/pixmaps + @${INSTALL_DATA} ${WRKSRC}/claws-mail*.png ${PREFIX}/share/pixmaps/ + +.include <bsd.port.post.mk> |