SVN server for Mac OSX [closed]
Mac OSX LION and Snow Leopard comes with SVN Server by default. An easy tutorial can be found here
Basically you will be using command line (shell) environment. No GUI tool is available.
To create a repository issue this command
svnadmin create MyFirstRepository
This will create a repository with the above name in the current folder.
The next step is to import a directory. Use this command
svn import destination-folder file:///path-to-repository -m "Initial Import"
The third step would be to checkout what you just checked in.
svn checkout file:///path-to-repository destination-folder
I know that you want a simple GUI app to install the server, but you can get apache serving your subversion repository with WebDAV authentication really quickly and easily. Using macports to install all the dependencies and with a few basic changes to the configuration options in apache, you are good to go.
Here is the basic setup (from Macports wiki) : MacPorts Subversion with Apache
The command line is your friend!