mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-23 04:23:08 +00:00
Update port: dnrd [maintainer update]
Update of dnrd. The TCP support is totally broken in previous versions. Even if it should work in this verion it is disabled by default. (The code was so ugly). It can be enabled with WITH_TCP. In this version it is also possible to disable the MASTER file support. So dnrd can be a compiled as proxy only. WITHOUT_MASTER. PR: ports/71770 Submitted by: Natanael Copa <ncopa@users.sourceforge.net>
This commit is contained in:
parent
a6c8552742
commit
665d967bc9
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=118731
@ -6,7 +6,7 @@
|
||||
#
|
||||
|
||||
PORTNAME= dnrd
|
||||
PORTVERSION= 2.14.1
|
||||
PORTVERSION= 2.15
|
||||
CATEGORIES= dns
|
||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
||||
MASTER_SITE_SUBDIR= dnrd
|
||||
@ -23,6 +23,14 @@ CONFIGURE_ENV= PTHREAD_CFLAGS=${PTHREAD_CFLAGS} PTHREAD_LIBS=${PTHREAD_LIBS}
|
||||
|
||||
MAN8= dnrd.8
|
||||
|
||||
.if defined(WITH_TCP)
|
||||
CONFIGURE_ARGS+= --enable-tcp
|
||||
.endif
|
||||
|
||||
.if defined(WITHOUT_MASTER)
|
||||
CONFIGURE_ARGS+= --disable-master
|
||||
.endif
|
||||
|
||||
post-patch:
|
||||
@${REINPLACE_CMD} -e 's|/etc/dnrd|${PREFIX}/etc/dnrd|g' ${WRKSRC}/doc/dnrd.8 \
|
||||
${WRKSRC}/doc/master.sample ${WRKSRC}/doc/README-master ${WRKSRC}/src/common.h \
|
||||
|
@ -1,2 +1,2 @@
|
||||
MD5 (dnrd-2.14.1.tar.gz) = cdcc538779bf707617fae10824808b14
|
||||
SIZE (dnrd-2.14.1.tar.gz) = 139799
|
||||
MD5 (dnrd-2.15.tar.gz) = dcb6d06a66ffd9481e7f123527b90b42
|
||||
SIZE (dnrd-2.15.tar.gz) = 140496
|
||||
|
Loading…
Reference in New Issue
Block a user