View | Details | Raw Unified | Return to bug 171681 | Differences between
and this patch

Collapse All | Expand All

(-)Makefile (+7 lines)
Lines 155-160 Link Here
155
GIT?= git
155
GIT?= git
156
SVN?= svn
156
SVN?= svn
157
SUP?= csup
157
SUP?= csup
158
RSYNC?= rsync
159
RSYNC_FLAGS?= --recursive --links --safe-links --perms --times --compress --force --whole-file --delete --stats --timeout=180 --exclude=/distfiles --exclude=/local --exclude=/packages --verbose
158
PORTSNAP?= portsnap
160
PORTSNAP?= portsnap
159
PORTSNAP_FLAGS?= -p ${.CURDIR}
161
PORTSNAP_FLAGS?= -p ${.CURDIR}
160
.if defined(SUPHOST)
162
.if defined(SUPHOST)
Lines 172-177 Link Here
172
	@echo ">>> Updating ${.CURDIR} from CVS repository" ${CVSROOT}
174
	@echo ">>> Updating ${.CURDIR} from CVS repository" ${CVSROOT}
173
	@echo "--------------------------------------------------------------"
175
	@echo "--------------------------------------------------------------"
174
	cd ${.CURDIR}; ${CVS} -R -q update -A -P -d -I!
176
	cd ${.CURDIR}; ${CVS} -R -q update -A -P -d -I!
177
.elif defined(RSYNC_UPDATE) && defined(PORTS_RSYNC_SOURCE)
178
	@echo "--------------------------------------------------------------"
179
	@echo ">>> Updating with ${RSYNC} from ${PORTS_RSYNC_SOURCE}"
180
	@echo "--------------------------------------------------------------"
181
	@${RSYNC} ${RSYNC_FLAGS} ${PORTS_RSYNC_SOURCE}/ ${.CURDIR}/
175
.elif exists(${.CURDIR}/.svn)
182
.elif exists(${.CURDIR}/.svn)
176
	@echo "--------------------------------------------------------------"
183
	@echo "--------------------------------------------------------------"
177
	@echo ">>> Updating ${.CURDIR} using Subversion"
184
	@echo ">>> Updating ${.CURDIR} using Subversion"

Return to bug 171681