From: Diego T. <rap...@us...> - 2004-05-03 15:37:12
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22509/scripts Modified Files: arpwatch Log Message: arpwatch man added Index: arpwatch =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/arpwatch,v retrieving revision 1.19 retrieving revision 1.20 diff -u -d -r1.19 -r1.20 --- arpwatch 3 May 2004 15:29:04 -0000 1.19 +++ arpwatch 3 May 2004 15:37:04 -0000 1.20 @@ -29,7 +29,7 @@ build ) if [ "$CONFIG_ARPWATCH" = "y" ]; then bzcat $SRCDIR/arpwatch_repscr.patch.bz2 | patch -p1 || exit 1 - ./configure --bindir=/usr/bin --sbindir=/usr/sbin --localstatedir=/var --sysconfdir=/etc || exit 1 + ./configure --bindir=/usr/bin --mandir=/usr/share/man --sbindir=/usr/sbin --localstatedir=/var --sysconfdir=/etc || exit 1 make $PMAKE REPORT_SCRIPT=/etc/arpwatch/arpwatch_report ARPDIR=/etc/arpwatch all || exit 1 strip_debug fi @@ -39,9 +39,11 @@ if [ "$CONFIG_ARPWATCH" = "y" ]; then rm -rf $WORKDIR/tmp || exit 1 mkdir -p $WORKDIR/tmp/usr/sbin || exit 1 + mkdir -p $WORKDIR/tmp/usr/share/man/man8 || exit 1 mkdir -p $ETCDIR/etc/arpwatch || exit 1 make install DESTDIR=$WORKDIR/tmp || exit 1 + make install-man DESTDIR=$WORKDIR/tmp || exit 1 copy_files $WORKDIR/tmp/usr $CDDIR/ || exit 1 rm -rf $WORKDIR/tmp || exit 1 |