aboutsummaryrefslogtreecommitdiffstats
path: root/mail/mutt-devel
diff options
context:
space:
mode:
authordwcjr <dwcjr@FreeBSD.org>2001-06-14 03:28:40 +0800
committerdwcjr <dwcjr@FreeBSD.org>2001-06-14 03:28:40 +0800
commit2e7867306e86285aa0f861f90d1c641ef958d26b (patch)
tree7e4b49da424c5ca54e43d8e897af238880a4ada9 /mail/mutt-devel
parentd857cfe21a93a64bb6ffebdc826f028c5c4aa514 (diff)
downloadfreebsd-ports-gnome-2e7867306e86285aa0f861f90d1c641ef958d26b.tar.gz
freebsd-ports-gnome-2e7867306e86285aa0f861f90d1c641ef958d26b.tar.zst
freebsd-ports-gnome-2e7867306e86285aa0f861f90d1c641ef958d26b.zip
Move PATCH_SITES closer to top
Also change PATCH_SITES and PATCH_FILES to foo+= instead of = to allow multiple options to be used when we have multiple options that are compatible with each other Submitted by: will Reviewed by: will
Diffstat (limited to 'mail/mutt-devel')
-rw-r--r--mail/mutt-devel/Makefile16
1 files changed, 11 insertions, 5 deletions
diff --git a/mail/mutt-devel/Makefile b/mail/mutt-devel/Makefile
index 6884ca9e53f0..91fe458387ef 100644
--- a/mail/mutt-devel/Makefile
+++ b/mail/mutt-devel/Makefile
@@ -21,6 +21,15 @@ MAINTAINER= ust@cert.siemens.de
USE_GMAKE= yes
USE_AUTOMAKE= yes
+.if defined(WITH_COMPRESSED_FOLDERS)
+PATCH_SITES+= http://www.spinnaker.de/mutt/compressed/
+.endif
+
+.if defined(WITH_VVV_PATCHES)
+PATCH_SITES+= http://mutt.org.ua/download/mutt-${PATCH_VERSION}/ \
+ ftp://mutt.org.ua/mutt/mutt-${PATCH_VERSION}/
+.endif
+
.if !defined(PATCH_VERSION)
PATCH_VERSION= ${PORTVERSION}
.endif
@@ -75,21 +84,18 @@ CONFIGURE_ARGS+= --with-ssl=${OPENSSLBASE}
.endif
.if defined(WITH_COMPRESSED_FOLDERS)
-PATCHFILES= patch-${PATCH_VERSION}.rr.compressed.1.gz
+PATCHFILES+= patch-${PATCH_VERSION}.rr.compressed.1.gz
PATCH_DIST_STRIP= -p1
-PATCH_SITES= http://www.spinnaker.de/mutt/compressed/
CONFIGURE_ARGS+= --enable-compressed
.endif
.if defined(WITH_VVV_PATCHES)
-PATCHFILES= patch-${PATCH_VERSION}.rr.compressed.gz \
+PATCHFILES+= patch-${PATCH_VERSION}.rr.compressed.gz \
patch-${PATCH_VERSION}.vvv.nntp.gz \
patch-${PATCH_VERSION}.vvv.initials.gz \
patch-${PATCH_VERSION}.vvv.quote.gz \
patch-${PATCH_VERSION}.vvv.ru.gz
PATCH_DIST_STRIP= -p1
-PATCH_SITES= http://mutt.org.ua/download/mutt-${PATCH_VERSION}/ \
- ftp://mutt.org.ua/mutt/mutt-${PATCH_VERSION}/
CONFIGURE_ARGS+= --enable-nntp --with-regex --enable-compressed
.endif