GNU_CONFIGURE=yes and teach arpwatch.sh to figure out $PREFIX
Suggested and reviewed by: John E. Hein <jhein@timing.com>
This commit is contained in:
parent
c8ce25062e
commit
aa8166ab58
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=40982
@ -15,6 +15,7 @@ DISTNAME= arpwatch-2.1a10
|
|||||||
|
|
||||||
MAINTAINER= brian@Awfulhak.org
|
MAINTAINER= brian@Awfulhak.org
|
||||||
|
|
||||||
|
GNU_CONFIGURE= yes
|
||||||
HAS_CONFIGURE= yes
|
HAS_CONFIGURE= yes
|
||||||
CONFIGURE_ARGS= --quiet
|
CONFIGURE_ARGS= --quiet
|
||||||
INSTALL_TARGET= install install-man
|
INSTALL_TARGET= install install-man
|
||||||
|
@ -1,9 +1,19 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
|
prog=$(realpath $0) || exit 1
|
||||||
|
dir=${prog%/*}
|
||||||
|
PREFIX=${dir%/etc/rc.d}
|
||||||
|
|
||||||
|
if [ ."$dir" = ."$prog" -o ."$PREFIX" = ."$dir" ]
|
||||||
|
then
|
||||||
|
echo "$0: Cannot determine the PREFIX" >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
case $1 in
|
case $1 in
|
||||||
start)
|
start)
|
||||||
if [ -x /usr/local/sbin/arpwatch -a -d /usr/local/arpwatch ]; then
|
if [ -x "$PREFIX"/sbin/arpwatch -a -d "$PREFIX"/arpwatch ]; then
|
||||||
/usr/local/sbin/arpwatch && echo -n ' arpwatch'
|
"$PREFIX"/sbin/arpwatch && echo -n ' arpwatch'
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
stop)
|
stop)
|
||||||
|
@ -15,6 +15,7 @@ DISTNAME= arpwatch-2.1a10
|
|||||||
|
|
||||||
MAINTAINER= brian@Awfulhak.org
|
MAINTAINER= brian@Awfulhak.org
|
||||||
|
|
||||||
|
GNU_CONFIGURE= yes
|
||||||
HAS_CONFIGURE= yes
|
HAS_CONFIGURE= yes
|
||||||
CONFIGURE_ARGS= --quiet
|
CONFIGURE_ARGS= --quiet
|
||||||
INSTALL_TARGET= install install-man
|
INSTALL_TARGET= install install-man
|
||||||
|
@ -1,9 +1,19 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
|
prog=$(realpath $0) || exit 1
|
||||||
|
dir=${prog%/*}
|
||||||
|
PREFIX=${dir%/etc/rc.d}
|
||||||
|
|
||||||
|
if [ ."$dir" = ."$prog" -o ."$PREFIX" = ."$dir" ]
|
||||||
|
then
|
||||||
|
echo "$0: Cannot determine the PREFIX" >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
case $1 in
|
case $1 in
|
||||||
start)
|
start)
|
||||||
if [ -x /usr/local/sbin/arpwatch -a -d /usr/local/arpwatch ]; then
|
if [ -x "$PREFIX"/sbin/arpwatch -a -d "$PREFIX"/arpwatch ]; then
|
||||||
/usr/local/sbin/arpwatch && echo -n ' arpwatch'
|
"$PREFIX"/sbin/arpwatch && echo -n ' arpwatch'
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
stop)
|
stop)
|
||||||
|
@ -15,6 +15,7 @@ DISTNAME= arpwatch-2.1a10
|
|||||||
|
|
||||||
MAINTAINER= brian@Awfulhak.org
|
MAINTAINER= brian@Awfulhak.org
|
||||||
|
|
||||||
|
GNU_CONFIGURE= yes
|
||||||
HAS_CONFIGURE= yes
|
HAS_CONFIGURE= yes
|
||||||
CONFIGURE_ARGS= --quiet
|
CONFIGURE_ARGS= --quiet
|
||||||
INSTALL_TARGET= install install-man
|
INSTALL_TARGET= install install-man
|
||||||
|
@ -1,9 +1,19 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
|
prog=$(realpath $0) || exit 1
|
||||||
|
dir=${prog%/*}
|
||||||
|
PREFIX=${dir%/etc/rc.d}
|
||||||
|
|
||||||
|
if [ ."$dir" = ."$prog" -o ."$PREFIX" = ."$dir" ]
|
||||||
|
then
|
||||||
|
echo "$0: Cannot determine the PREFIX" >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
case $1 in
|
case $1 in
|
||||||
start)
|
start)
|
||||||
if [ -x /usr/local/sbin/arpwatch -a -d /usr/local/arpwatch ]; then
|
if [ -x "$PREFIX"/sbin/arpwatch -a -d "$PREFIX"/arpwatch ]; then
|
||||||
/usr/local/sbin/arpwatch && echo -n ' arpwatch'
|
"$PREFIX"/sbin/arpwatch && echo -n ' arpwatch'
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
stop)
|
stop)
|
||||||
|
@ -15,6 +15,7 @@ DISTNAME= arpwatch-2.1a10
|
|||||||
|
|
||||||
MAINTAINER= brian@Awfulhak.org
|
MAINTAINER= brian@Awfulhak.org
|
||||||
|
|
||||||
|
GNU_CONFIGURE= yes
|
||||||
HAS_CONFIGURE= yes
|
HAS_CONFIGURE= yes
|
||||||
CONFIGURE_ARGS= --quiet
|
CONFIGURE_ARGS= --quiet
|
||||||
INSTALL_TARGET= install install-man
|
INSTALL_TARGET= install install-man
|
||||||
|
@ -1,9 +1,19 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
|
prog=$(realpath $0) || exit 1
|
||||||
|
dir=${prog%/*}
|
||||||
|
PREFIX=${dir%/etc/rc.d}
|
||||||
|
|
||||||
|
if [ ."$dir" = ."$prog" -o ."$PREFIX" = ."$dir" ]
|
||||||
|
then
|
||||||
|
echo "$0: Cannot determine the PREFIX" >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
case $1 in
|
case $1 in
|
||||||
start)
|
start)
|
||||||
if [ -x /usr/local/sbin/arpwatch -a -d /usr/local/arpwatch ]; then
|
if [ -x "$PREFIX"/sbin/arpwatch -a -d "$PREFIX"/arpwatch ]; then
|
||||||
/usr/local/sbin/arpwatch && echo -n ' arpwatch'
|
"$PREFIX"/sbin/arpwatch && echo -n ' arpwatch'
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
stop)
|
stop)
|
||||||
|
Loading…
Reference in New Issue
Block a user