diff options
author | miwi <miwi@FreeBSD.org> | 2006-08-04 20:28:12 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2006-08-04 20:28:12 +0800 |
commit | c14ccda6a029aaaf778a236397a1765e49a7ca5d (patch) | |
tree | 7d99c2cc0cd7ba511a04c21ed192d6c6fdb0a1f5 /mail/claws-mail | |
parent | c8f50d4186354244379bec36165142f075bc3cbf (diff) | |
download | freebsd-ports-gnome-c14ccda6a029aaaf778a236397a1765e49a7ca5d.tar.gz freebsd-ports-gnome-c14ccda6a029aaaf778a236397a1765e49a7ca5d.tar.zst freebsd-ports-gnome-c14ccda6a029aaaf778a236397a1765e49a7ca5d.zip |
- Add OPTIONS for ipv6
- Bump PORTREVISION
Submitted by: miwi
Approved by: krion (mentor), netchild (maintainer)
Diffstat (limited to 'mail/claws-mail')
-rw-r--r-- | mail/claws-mail/Makefile | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/mail/claws-mail/Makefile b/mail/claws-mail/Makefile index 603af095cc87..0f0bc87cd3a7 100644 --- a/mail/claws-mail/Makefile +++ b/mail/claws-mail/Makefile @@ -7,6 +7,7 @@ PORTNAME= sylpheed-claws PORTVERSION= 2.4.0 +PORTREVISION= 1 CATEGORIES= mail news ipv6 MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= sylpheed-claws @@ -36,7 +37,7 @@ WANT_GNOME= yes MAN1= sylpheed-claws.1 -CONFIGURE_ARGS= --enable-ipv6 \ +CONFIGURE_ARGS= \ --with-libiconv-prefix=${LOCALBASE} \ --with-manualdir=${DOCSDIR}/manual \ --with-faqdir=${DOCSDIR}/faq \ @@ -55,6 +56,7 @@ OPTIONS= ALL "Enable all options." off \ DILLO "Enable Dillo HTML viewer." off \ GNOMEPRINT "Enable extended print support (GNOME)." off \ GPGME "Enable PGP/GnuPG 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 \ @@ -156,6 +158,12 @@ 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 + post-extract: .if !defined(WITHOUT_THEMES) @${MKDIR} ${WRKSRC}/themes |