Index: head/devel/libdnsres/Makefile =================================================================== --- head/devel/libdnsres/Makefile (revision 505147) +++ head/devel/libdnsres/Makefile (revision 505148) @@ -1,27 +1,28 @@ # Created by: Phil Oleson # $FreeBSD$ PORTNAME= libdnsres PORTVERSION= 0.1a PORTREVISION= 9 CATEGORIES= devel MASTER_SITES= http://monkey.org/~provos/ MAINTAINER= oz@nixil.net COMMENT= Provides a non-blocking thread-safe API for resolving DNS names +LICENSE= BSD4CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + BUILD_DEPENDS= ${LOCALBASE}/lib/libevent.a:devel/libevent USES= libtool GNU_CONFIGURE= yes USE_LDCONFIG= yes -CONFIGURE_ARGS=--with-libevent=${LOCALBASE} +CONFIGURE_ARGS= --with-libevent=${LOCALBASE} MAKE_JOBS_UNSAFE= yes - -PLIST_SUB+= PORTVERSION="${PORTVERSION}" post-patch: @${REINPLACE_CMD} -e 's,CFLAGS =,CFLAGS +=, ; s|top_buildir|top_builddir|g' \ ${WRKSRC}/Makefile.in .include Index: head/devel/libdnsres/pkg-descr =================================================================== --- head/devel/libdnsres/pkg-descr (revision 505147) +++ head/devel/libdnsres/pkg-descr (revision 505148) @@ -1,10 +1,10 @@ Libdnsres provides a non-blocking thread-safe API for resolving DNS names. It requires that your main application is built on top of libevent. Libdnsres' API essentially mirrors the traditional gethostbyname and getaddrinfo interfaces. All return values have been replaced by callbacks instead. The code borrows heavily from the BSD resolver library. In fact, it is an extremely ugly hack to make the BSD resolver library non-blocking and thread-safe without changing the API too much. -WWW: http://www.monkey.org/~provos/libdnsres/ +WWW: https://www.monkey.org/~provos/libdnsres/