diff options
author | Oliver Lehmann <oliver@FreeBSD.org> | 2006-02-13 21:02:50 +0000 |
---|---|---|
committer | Oliver Lehmann <oliver@FreeBSD.org> | 2006-02-13 21:02:50 +0000 |
commit | 5d99b2c00812131ce86d615507a54e8b8abc59de (patch) | |
tree | 46bd5cffaef8cef9390bb969c75b7ad930664dac /mail/sylpheed2/Makefile | |
parent | 17394c78b7492acbba4a352addfc1842c37eb9f5 (diff) | |
download | ports-5d99b2c00812131ce86d615507a54e8b8abc59de.tar.gz ports-5d99b2c00812131ce86d615507a54e8b8abc59de.zip |
Notes
Diffstat (limited to 'mail/sylpheed2/Makefile')
-rw-r--r-- | mail/sylpheed2/Makefile | 36 |
1 files changed, 27 insertions, 9 deletions
diff --git a/mail/sylpheed2/Makefile b/mail/sylpheed2/Makefile index 33161b070196..5013011a8de5 100644 --- a/mail/sylpheed2/Makefile +++ b/mail/sylpheed2/Makefile @@ -6,10 +6,10 @@ # PORTNAME= sylpheed -PORTVERSION= 2.0.4 +PORTVERSION= 2.2.0 PORTREVISION= 0 CATEGORIES= mail ipv6 -MASTER_SITES= http://sylpheed.good-day.net/sylpheed/v2.0/ +MASTER_SITES= http://sylpheed.good-day.net/sylpheed/v${PORTVERSION:C/\.[^\.]*$//}/ MAINTAINER= oliver@FreeBSD.org COMMENT= A lightweight, featureful, and fast GTK+ based e-mail client @@ -40,7 +40,8 @@ OPTIONS= GPGME "Enable GnuPG support using GPGME." off \ COMPFACE "Enable X-Face support." off \ JPILOT "Enable JPilot support." off \ LDAP "Enable LDAP support." off \ - SSL "Enable OpenSSL support." on + SSL "Enable OpenSSL support." on \ + GTKSPELL "Enable Spell checking support" on .include <bsd.port.pre.mk> @@ -48,6 +49,8 @@ OPTIONS= GPGME "Enable GnuPG support using GPGME." off \ # we can't use USE_OPENSSL=yes after including bsd.port.pre.mk .include "${PORTSDIR}/Mk/bsd.openssl.mk" CONFIGURE_ARGS+=--enable-ssl +.else +CONFIGURE_ARGS+=--disable-ssl .endif .if defined(WITH_GPGME) @@ -57,12 +60,14 @@ CONFIGURE_ARGS+=--enable-gpgme .else CONFIGURE_ARGS+=--disable-gpgme .endif + .if defined(WITH_COMPFACE) LIB_DEPENDS+= compface.1:${PORTSDIR}/mail/faces CONFIGURE_ARGS+=--enable-compface .else CONFIGURE_ARGS+=--disable-compface .endif + .if defined(WITH_JPILOT) LIB_DEPENDS+= pisock.8:${PORTSDIR}/palm/pilot-link RUN_DEPENDS+= jpilot:${PORTSDIR}/palm/jpilot @@ -70,31 +75,40 @@ CONFIGURE_ARGS+=--enable-jpilot .else CONFIGURE_ARGS+=--disable-jpilot .endif + .if defined(WITH_LDAP) USE_OPENLDAP= yes CONFIGURE_ARGS+=--enable-ldap .else CONFIGURE_ARGS+=--disable-ldap .endif -.if !defined(WITHOUT_SSL) -CONFIGURE_ARGS+=--enable-ssl + +.if defined(WITH_GTKSPELL) +LIB_DEPENDS+= gtkspell.0:${PORTSDIR}/textproc/gtkspell2 +CONFIGURE_ARGS+=--enable-gtkspell .else -CONFIGURE_ARGS+=--disable-ssl +CONFIGURE_ARGS+=--disable-gtkspell +.endif + +.if defined(WITH_GNOME) +PLIST_FILES= share/gnome/applications/sylpheed.desktop \ + share/gnome/pixmaps/sylpheed.png .endif MAKEFILES= Makefile.in ac/Makefile.in faq/Makefile.in faq/de/Makefile.in \ faq/en/Makefile.in faq/es/Makefile.in faq/fr/Makefile.in \ faq/it/Makefile.in manual/Makefile.in manual/en/Makefile.in \ - manual/ja/Makefile.in src/Makefile.in + manual/ja/Makefile.in src/Makefile.in libsylph/Makefile.in \ + src/icons/Makefile.in post-patch: @${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS:S/"//g}|g; \ s|-lresolv||g; s|-lpisock\"|-liconv &|g; ' ${WRKSRC}/configure @${REINPLACE_CMD} -e 's|/etc|${LOCALBASE}&|g' \ - ${WRKSRC}/src/procmime.c + ${WRKSRC}/libsylph/procmime.c .if defined(NOPORTDOCS) - @${REINPLACE_CMD} -e 's|^SUBDIRS = ac po intl src manual faq$$|SUBDIRS = ac po intl src|g' \ + @${REINPLACE_CMD} -e 's|^SUBDIRS = ac libsylph src po manual faq$$|SUBDIRS = ac libsylph src po|g' \ ${WRKSRC}/Makefile.in .else .for i in ${MAKEFILES} @@ -112,5 +126,9 @@ post-install: @${INSTALL_DATA} ${WRKSRC}/${i}.ja ${DOCSDIR} .endfor .endif +.if defined(WITH_GNOME) + @${INSTALL_DATA} ${WRKSRC}/sylpheed.png ${PREFIX}/share/gnome/pixmaps/ + @${INSTALL_DATA} ${WRKSRC}/sylpheed.desktop ${PREFIX}/share/gnome/applications/ +.endif .include <bsd.port.post.mk> |