From 2e7867306e86285aa0f861f90d1c641ef958d26b Mon Sep 17 00:00:00 2001 From: dwcjr Date: Wed, 13 Jun 2001 19:28:40 +0000 Subject: 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 --- mail/mutt-devel/Makefile | 16 +++++++++++----- 1 file 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 -- cgit