nico becker wrote on Fri, 28 May 2021 10:23 +00:00: > i want only the svn server module, i need no client no apache etc. is > there an shorter, easyer way to geht the svnserve?
You can run «make svnserve» to build just svnserve, but there isn't a «make» incantation that'll install just that. The make(1) targets chain is install→local-install→install-static→install- bin, and that one installs all binaries, not just one of them. In theory you could invoke just the right set of make(1) targets, but determining that set might not be entirely obvious (for instance, it includes install-fsmod-lib because svnserve depends on libsvn_fs* via libsvn_ra_local). Even if you were to install just svnserve, you'd still need to install APR first, as Nathan explained.