On Fri, Apr 19, 2002 at 02:17:52PM +0200, Carsten Ziegeler wrote: > Jeff Turner wrote: > > > > On Fri, Apr 19, 2002 at 11:10:53AM +0200, Carsten Ziegeler wrote: > > > Hi, > > > > > > what are the steps for integrating a new package into the build system? > > > I have now finished (hopefully) the source package and want to install > > > the classes in the sourceresolve package in excalibur. > > > > Just to confirm: you want to copy > > all/src/java/org/apache/excalibur/source to the sourceresolve project? > > > > If so, here's the steps: .... > > > Wow! Great! > Yes, that's exactly what I meant...so if you want to commit it, I would > be very happy - I hope I can save you some time sometime, too. > > But that was exactly the same I tried here and it didn't compile > the classes in the sourceresolve directory. Perhaps I forgot one > little thing if it works for you.
Committed, and moved the files in CVS. I hope it works for you.. let me know if something goes wrong. For future reference, the commands on cvs.apache.org to do the move were: > cd /home/cvs/jakarta-avalon-excalibur/sourceresolve/src/java > ls -la total 3 drwxrwxr-x 2 hammant jakarta 512 Apr 19 05:47 . drwxrwxr-x 6 hammant jakarta 512 Apr 19 05:47 .. -r--r--r-- 1 hammant jakarta 274 Apr 7 03:20 dummy.txt,v > mkdir -p org/apache/excalibur > ls -la org total 3 drwxr-xr-x 3 jefft jakarta 512 Apr 19 06:11 . drwxrwxr-x 3 hammant jakarta 512 Apr 19 06:11 .. drwxr-xr-x 3 jefft jakarta 512 Apr 19 06:11 apache # Note the incorrect permissions on the new directory (my umask is # wrong), so fix it with: > chmod -R g+w org > ls -la org total 3 drwxrwxr-x 3 jefft jakarta 512 Apr 19 06:11 . drwxrwxr-x 3 hammant jakarta 512 Apr 19 06:11 .. drwxrwxr-x 3 jefft jakarta 512 Apr 19 06:11 apache > cp -rp ../../../all/src/java/org/apache/excalibur/source org/apache/excalibur/ # Copy the files, with -p to preserve the file ownership. --Jeff > Thanks > Carsten > -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
