diff options
author | netchild <netchild@FreeBSD.org> | 2006-04-02 16:40:21 +0800 |
---|---|---|
committer | netchild <netchild@FreeBSD.org> | 2006-04-02 16:40:21 +0800 |
commit | aae56c4a168e0137f92ec6df7368cc243cc69ad3 (patch) | |
tree | fbf4695eac9abc555b2c855c0c4e07599f2fa4e7 | |
parent | 00084c9bdc687873e5cface5717db8f93411d896 (diff) | |
download | freebsd-ports-gnome-aae56c4a168e0137f92ec6df7368cc243cc69ad3.tar.gz freebsd-ports-gnome-aae56c4a168e0137f92ec6df7368cc243cc69ad3.tar.zst freebsd-ports-gnome-aae56c4a168e0137f92ec6df7368cc243cc69ad3.zip |
- Add an option to enable debug support. [1]
- Bump portrevision, the major number of libetpan changed.
PR: 94689 [1]
Submitted by: Pawel Pekala <c0rn@o2.pl> [1]
-rw-r--r-- | mail/claws-mail/Makefile | 6 | ||||
-rw-r--r-- | mail/sylpheed-claws/Makefile | 6 |
2 files changed, 10 insertions, 2 deletions
diff --git a/mail/claws-mail/Makefile b/mail/claws-mail/Makefile index f01fae0b4e01..ecbb50ff6bbb 100644 --- a/mail/claws-mail/Makefile +++ b/mail/claws-mail/Makefile @@ -7,7 +7,7 @@ PORTNAME= sylpheed-claws PORTVERSION= 2.0.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= mail news ipv6 MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= sylpheed-claws @@ -52,6 +52,7 @@ OPTIONS= ALL "Enable all options." off \ ASPELL "Enable spell checking support." on \ CLAMAV "Enable virus-checking support." off \ COMPFACE "Enable X-Face support." on \ + DEBUG "Enable debug support." off \ GNOMEPRINT "Enable extended print support (GNOME)." off \ GPGME "Enable PGP/GnuPG support using GPGME." off \ JPILOT "Enable JPilot support." off \ @@ -153,6 +154,9 @@ PLIST_SUB+= THEMES="@comment " .else PLIST_SUB+= THEMES="" .endif +.if defined(WITH_DEBUG) || defined(WITH_ALL) +CONFIGURE_ARGS+= --enable-maintainer-mode --enable-crash-dialog +.endif post-extract: .if !defined(WITHOUT_THEMES) diff --git a/mail/sylpheed-claws/Makefile b/mail/sylpheed-claws/Makefile index f01fae0b4e01..ecbb50ff6bbb 100644 --- a/mail/sylpheed-claws/Makefile +++ b/mail/sylpheed-claws/Makefile @@ -7,7 +7,7 @@ PORTNAME= sylpheed-claws PORTVERSION= 2.0.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= mail news ipv6 MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= sylpheed-claws @@ -52,6 +52,7 @@ OPTIONS= ALL "Enable all options." off \ ASPELL "Enable spell checking support." on \ CLAMAV "Enable virus-checking support." off \ COMPFACE "Enable X-Face support." on \ + DEBUG "Enable debug support." off \ GNOMEPRINT "Enable extended print support (GNOME)." off \ GPGME "Enable PGP/GnuPG support using GPGME." off \ JPILOT "Enable JPilot support." off \ @@ -153,6 +154,9 @@ PLIST_SUB+= THEMES="@comment " .else PLIST_SUB+= THEMES="" .endif +.if defined(WITH_DEBUG) || defined(WITH_ALL) +CONFIGURE_ARGS+= --enable-maintainer-mode --enable-crash-dialog +.endif post-extract: .if !defined(WITHOUT_THEMES) |