summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid W. Chapman Jr. <dwcjr@FreeBSD.org>2001-06-13 19:28:40 +0000
committerDavid W. Chapman Jr. <dwcjr@FreeBSD.org>2001-06-13 19:28:40 +0000
commit65b34cb9eff67bf1c7410eeeb357fd55ae35701d (patch)
tree6d354a4c46545a524270e49e69cd4f39792d00ce
parentUpdate port to 1.4. (diff)
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
Notes
Notes: svn path=/head/; revision=43957
-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