mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-23 04:23:08 +00:00
- Update to version 1.1.1
- Better ${PREFIX} handling PR: 24626 Submitted by: MAINTAINER
This commit is contained in:
parent
02b1d9fd0f
commit
cd4226f92a
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=37668
@ -6,7 +6,7 @@
|
||||
#
|
||||
|
||||
PORTNAME= pdnsd
|
||||
PORTVERSION= 1.1.0
|
||||
PORTVERSION= 1.1.1
|
||||
CATEGORIES= net
|
||||
MASTER_SITES= http://home.t-online.de/home/Moestl/
|
||||
|
||||
@ -19,7 +19,8 @@ PDNSDB= /var/db/pdnsd
|
||||
|
||||
post-install:
|
||||
@${MKDIR} ${PREFIX}/etc/rc.d
|
||||
@${INSTALL} ${COPY} -m 744 -o root ${FILESDIR}/pdnsd.sh ${PREFIX}/etc/rc.d/pdnsd.sh
|
||||
@${SED} "s|%%PREFIX%%|${PREFIX}|g" < ${FILESDIR}/pdnsd.sh > ${PREFIX}/etc/rc.d/pdnsd.sh
|
||||
@${CHMOD} 750 ${PREFIX}/etc/rc.d/pdnsd.sh
|
||||
@${CAT} ${PKGMESSAGE}
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
@ -1 +1 @@
|
||||
MD5 (pdnsd-1.1.0.tar.gz) = 829bd8ff5806516d866735c3574c717e
|
||||
MD5 (pdnsd-1.1.1.tar.gz) = e7468ab4f49a81f279e0132ae064aaa3
|
||||
|
@ -2,9 +2,9 @@
|
||||
|
||||
case $1 in
|
||||
start)
|
||||
if [ -x /usr/local/sbin/pdnsd -a -f /usr/local/etc/pdnsd.conf ]; then
|
||||
/usr/local/sbin/pdnsd -d
|
||||
echo ' pdnsd'
|
||||
if [ -x %%PREFIX%%/sbin/pdnsd -a -f %%PREFIX%%/etc/pdnsd.conf ]; then
|
||||
%%PREFIX%%/sbin/pdnsd -d
|
||||
echo -n ' pdnsd'
|
||||
fi
|
||||
;;
|
||||
stop)
|
||||
|
@ -1 +1 @@
|
||||
Cacheing (permanently, writes to disk on exit) DNS proxy-server
|
||||
Caching (permanently, writes to disk on exit) DNS proxy-server
|
||||
|
@ -1,10 +1,10 @@
|
||||
pdnsd is a proxy dns server with permanent caching (the cache contents are
|
||||
written to hard disk on exit) that is designed to cope with unreacheable or
|
||||
written to hard disk on exit) that is designed to cope with unreachable or
|
||||
down dns servers (for example in dial-in networking).
|
||||
pdnsd can be used with applications that do dns lookups, eg on startup, and
|
||||
can't be configured to change that behaviour, to prevent the often minute-long
|
||||
can't be configured to change that behavior, to prevent the often minute-long
|
||||
hangs (or even crashes) that result from stalled dns queries. Some Netscape
|
||||
Navigator versions for Unix, for example, expose this behaviour.
|
||||
Navigator versions for Unix, for example, expose this behavior.
|
||||
pdnsd is configurable via a file and supports run-time configuration using the
|
||||
program pdnsd-ctl that comes with pdnsd. This allows you to set the status
|
||||
flags of servers that pdnsd knows (to influence which servers pdnsd will
|
||||
|
@ -6,7 +6,7 @@
|
||||
#
|
||||
|
||||
PORTNAME= pdnsd
|
||||
PORTVERSION= 1.1.0
|
||||
PORTVERSION= 1.1.1
|
||||
CATEGORIES= net
|
||||
MASTER_SITES= http://home.t-online.de/home/Moestl/
|
||||
|
||||
@ -19,7 +19,8 @@ PDNSDB= /var/db/pdnsd
|
||||
|
||||
post-install:
|
||||
@${MKDIR} ${PREFIX}/etc/rc.d
|
||||
@${INSTALL} ${COPY} -m 744 -o root ${FILESDIR}/pdnsd.sh ${PREFIX}/etc/rc.d/pdnsd.sh
|
||||
@${SED} "s|%%PREFIX%%|${PREFIX}|g" < ${FILESDIR}/pdnsd.sh > ${PREFIX}/etc/rc.d/pdnsd.sh
|
||||
@${CHMOD} 750 ${PREFIX}/etc/rc.d/pdnsd.sh
|
||||
@${CAT} ${PKGMESSAGE}
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
@ -1 +1 @@
|
||||
MD5 (pdnsd-1.1.0.tar.gz) = 829bd8ff5806516d866735c3574c717e
|
||||
MD5 (pdnsd-1.1.1.tar.gz) = e7468ab4f49a81f279e0132ae064aaa3
|
||||
|
@ -2,9 +2,9 @@
|
||||
|
||||
case $1 in
|
||||
start)
|
||||
if [ -x /usr/local/sbin/pdnsd -a -f /usr/local/etc/pdnsd.conf ]; then
|
||||
/usr/local/sbin/pdnsd -d
|
||||
echo ' pdnsd'
|
||||
if [ -x %%PREFIX%%/sbin/pdnsd -a -f %%PREFIX%%/etc/pdnsd.conf ]; then
|
||||
%%PREFIX%%/sbin/pdnsd -d
|
||||
echo -n ' pdnsd'
|
||||
fi
|
||||
;;
|
||||
stop)
|
||||
|
@ -1 +1 @@
|
||||
Cacheing (permanently, writes to disk on exit) DNS proxy-server
|
||||
Caching (permanently, writes to disk on exit) DNS proxy-server
|
||||
|
@ -1,10 +1,10 @@
|
||||
pdnsd is a proxy dns server with permanent caching (the cache contents are
|
||||
written to hard disk on exit) that is designed to cope with unreacheable or
|
||||
written to hard disk on exit) that is designed to cope with unreachable or
|
||||
down dns servers (for example in dial-in networking).
|
||||
pdnsd can be used with applications that do dns lookups, eg on startup, and
|
||||
can't be configured to change that behaviour, to prevent the often minute-long
|
||||
can't be configured to change that behavior, to prevent the often minute-long
|
||||
hangs (or even crashes) that result from stalled dns queries. Some Netscape
|
||||
Navigator versions for Unix, for example, expose this behaviour.
|
||||
Navigator versions for Unix, for example, expose this behavior.
|
||||
pdnsd is configurable via a file and supports run-time configuration using the
|
||||
program pdnsd-ctl that comes with pdnsd. This allows you to set the status
|
||||
flags of servers that pdnsd knows (to influence which servers pdnsd will
|
||||
|
Loading…
Reference in New Issue
Block a user