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

Collapse All | Expand All

(-)subversion/Makefile (-3 / +3 lines)
Lines 165-174 Link Here
165
	(cd ${WRKSRC}/tools.examples && ${TAR} --exclude '*.in' -cf - * | ${TAR} -C ${STAGEDIR}${DATADIR} -xof - )
165
	(cd ${WRKSRC}/tools.examples && ${TAR} --exclude '*.in' -cf - * | ${TAR} -C ${STAGEDIR}${DATADIR} -xof - )
166
	@${MKDIR} ${STAGEDIR}${DOCSDIR}
166
	@${MKDIR} ${STAGEDIR}${DOCSDIR}
167
	${INSTALL_MAN} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}
167
	${INSTALL_MAN} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}
168
.if ${PORT_OPTIONS:MSVNSERVE_WRAPPER}
169
	@${INSTALL_SCRIPT} ${FILESDIR}/svnserve.wrapper ${STAGEDIR}${PREFIX}/bin/svnserve.sample
170
.endif
171
168
169
post-install-SVNSERVE_WRAPPER-on:
170
	${INSTALL_SCRIPT} ${FILESDIR}/svnserve.wrapper ${STAGEDIR}${PREFIX}/bin/svnserve.sample
171
172
# ===============================================================================
172
# ===============================================================================
173
repository:	_mkrepos
173
repository:	_mkrepos
174
174
(-)subversion/files/220_subversion.conf.sample.in (-1 / +15 lines)
Lines 39-44 Link Here
39
##	KeepAlive on
39
##	KeepAlive on
40
##	MaxKeepAliveRequests 1000
40
##	MaxKeepAliveRequests 1000
41
##
41
##
42
##	# http://subversion.apache.org/docs/release-notes/1.7.html#server-performance-tuning
43
##	# Calculate your own values!
44
##	# For mod_dav_svn, a 1GB cache configuration with maximum data coverage looks like this 
45
##	<IfModule dav_svn_module>
46
##	    SVNInMemoryCacheSize 1048576
47
##	    SVNCacheFullTexts on
48
##	    SVNCacheTextDeltas on
49
##	</IfModule>
50
##
42
## Multiple Repos with Digest auth:
51
## Multiple Repos with Digest auth:
43
## - AuthName is an arbitrary name that you choose for the authentication
52
## - AuthName is an arbitrary name that you choose for the authentication
44
##   domain. Most browsers display this name in the dialog box when prompting
53
##   domain. Most browsers display this name in the dialog box when prompting
Lines 46-53 Link Here
46
## - AuthType specifies the type of authentication to use.
55
## - AuthType specifies the type of authentication to use.
47
## - AuthUserFile specifies the location of the password file to use.
56
## - AuthUserFile specifies the location of the password file to use.
48
##
57
##
49
##<IfModule dav_module>
58
##<IfModule dav_svn_module>
50
##<Location /svn/>
59
##<Location /svn/>
60
##      <ifModule mime_module>
61
##      RemoveEncoding  .gz .tgz .Z
62
##      RemoveType      .gz .tgz .Z
63
##      </ifModule>
64
##
51
##	# Enable Subversion
65
##	# Enable Subversion
52
##	DAV svn
66
##	DAV svn
53
##
67
##

Return to bug 203838