diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2006-08-04 12:28:12 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2006-08-04 12:28:12 +0000 |
commit | 90c22707943008cdac071c579e5f3fc212a52e16 (patch) | |
tree | 1667927f82cc8e1e059a7e79db844bcd8ef125ab /mail/claws-mail | |
parent | 48520789a3c7672ab690c1e2cbe592f1dc82d8bf (diff) | |
download | ports-90c22707943008cdac071c579e5f3fc212a52e16.tar.gz ports-90c22707943008cdac071c579e5f3fc212a52e16.zip |
Notes
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 |