[srvx-commits] CVS: services Makefile.am,1.9.2.3,1.9.2.4 configure.in,1.39.2.16,1.39.2.17 INSTALL,1.
Brought to you by:
entrope
From: Miles P. <pet...@us...> - 2001-08-26 03:43:40
|
Update of /cvsroot/srvx/services In directory usw-pr-cvs1:/tmp/cvs-serv29997 Modified Files: Tag: rel-1_0 Makefile.am configure.in INSTALL Log Message: working 'make install' now. it will install the help files and sample conf/sockcheck.db as well as the binary. changed bin_PROGRAMS to noinst_PROGRAMS to prevent binary from being put in 'bin' directory. toplevel Makefile installs it now. Index: Makefile.am =================================================================== RCS file: /cvsroot/srvx/services/Makefile.am,v retrieving revision 1.9.2.3 retrieving revision 1.9.2.4 diff -C2 -r1.9.2.3 -r1.9.2.4 *** Makefile.am 2001/07/09 15:58:45 1.9.2.3 --- Makefile.am 2001/08/26 03:43:35 1.9.2.4 *************** *** 9,10 **** --- 9,23 ---- srvx: src/srvx cp src/srvx src/*.help . + + install-exec-local: + $(INSTALL) -d -m 755 $(prefix) + $(INSTALL) -m 744 src/srvx $(prefix) + $(INSTALL) -m 644 src/*.help $(prefix) + $(INSTALL) -m 600 srvx.conf.example $(prefix) + $(INSTALL) -m 644 sockcheck.db.example $(prefix) + mv $(prefix)/bin/srvx $(prefix) + @echo + @echo srvx-$(VERSION) has been installed to $(prefix) + @echo Remember to edit srvx.conf.example and sockcheck.db.example + @echo And of course, bin/srvx --help before starting. + @echo Index: configure.in =================================================================== RCS file: /cvsroot/srvx/services/Attic/configure.in,v retrieving revision 1.39.2.16 retrieving revision 1.39.2.17 diff -C2 -r1.39.2.16 -r1.39.2.17 *** configure.in 2001/08/12 22:18:58 1.39.2.16 --- configure.in 2001/08/26 03:43:35 1.39.2.17 *************** *** 10,13 **** --- 10,15 ---- AM_MAINTAINER_MODE + AC_PREFIX_DEFAULT(~/srvx-0.9.7) + dnl Sanity checks. AC_LANG_C Index: INSTALL =================================================================== RCS file: /cvsroot/srvx/services/INSTALL,v retrieving revision 1.15.2.7 retrieving revision 1.15.2.8 diff -C2 -r1.15.2.7 -r1.15.2.8 *** INSTALL 2001/08/10 03:50:12 1.15.2.7 --- INSTALL 2001/08/26 03:43:35 1.15.2.8 *************** *** 46,54 **** 2) Run the configure script (sh configure), it will verify that your ! system will have the resources needed for srvx to compile. 3) On some systems you may need to edit the Makefile in order for it to compile correctly. Includes, and other such things may ! reside in other directories. 4) You may optionally edit config.h incase the configure script made a --- 46,58 ---- 2) Run the configure script (sh configure), it will verify that your ! system will have the resources needed for srvx to compile. If you ! would like to change the path where srvx will be installed to, ! execute configure with the --prefix=/path option. The default path ! is ~/srvx-X.X.X/, with the X's representing the version. 3) On some systems you may need to edit the Makefile in order for it to compile correctly. Includes, and other such things may ! reside in other directories. Most likely the Makefile won't require ! any modifications. 4) You may optionally edit config.h incase the configure script made a *************** *** 59,76 **** section and follow the instructions. ! 6) Copy sockcheck.db.example to sockcheck.db (and edit to add new proxy types, if you wish). ! 7) Copy srvx.conf.example to srvx.conf and edit to suit your needs. Any errors in the config file will be made aware to you once you start the daemon. ! 8) You can now begin using your service bots. You can debug by running it with '-fV', it will not background itself, and it will be fairly verbose. If you would like to run in the foreground ! with no verbosity, use the '-V' flag. If you just want to run it, execute srvx without any flags. ! 9) Once you have srvx started, you'll need to register a NickServ handle. Make sure that you register the first handle - it is automatically granted certain privileges and gives you root-level --- 63,83 ---- section and follow the instructions. ! 6) You may now either type "make install" to install it to your ! installation path, or work from your build directory, either is fine. ! ! 7) Copy sockcheck.db.example to sockcheck.db (and edit to add new proxy types, if you wish). ! 8) Copy srvx.conf.example to srvx.conf and edit to suit your needs. Any errors in the config file will be made aware to you once you start the daemon. ! 9) You can now begin using your service bots. You can debug by running it with '-fV', it will not background itself, and it will be fairly verbose. If you would like to run in the foreground ! with no verbosity, use the '-f' flag. If you just want to run it, execute srvx without any flags. ! 10) Once you have srvx started, you'll need to register a NickServ handle. Make sure that you register the first handle - it is automatically granted certain privileges and gives you root-level |