Index of /M2-Apple/CVS/

NameLast ModifiedSizeType
../ -  Directory
README.txt2022-Nov-05 13:53:440.6Ktext/plain; charset=utf-8
#Building CVS from source on MacOS M1/M2 (Ventura 13.0) 
#Without Macports  
#This is especially useful if you wish to track pkgsrc-current on the MacOS 


# Create a working source directory to hold the files

mkdir -p $HOME/SRC/CVS
cd $HOME/SRC/CVS 
wget https://ftp.gnu.org/non-gnu/cvs/source/stable/1.11.23/cvs-1.11.23.tar.gz 
tar -zxvf cvs-1.11.23.tar.gz  
rm -rf cvs-1.11.23.tar.gz  
cd cvs-1.11.23 
wget wget https://raw.githubusercontent.com/macports/macports-ports/master/devel/cvs/files/use-system-getline.patch 
patch < use-system-getline.patch
./configure --without-gssapi 
make
sudo make install 

#cvs will be installed in /usr/local 
Webserver 1.0