diff --git a/dns/ghtool/Makefile b/dns/ghtool/Makefile index 2e063bb2483a..3134de8d5f49 100644 --- a/dns/ghtool/Makefile +++ b/dns/ghtool/Makefile @@ -6,25 +6,23 @@ PORTVERSION= 1.0 CATEGORIES= dns MASTER_SITES= SF/gh-tool/gh-tool/1 DISTNAME= ghmain.c -EXTRACT_SUFX= +EXTRACT_SUFX= # none MAINTAINER= ports@FreeBSD.org COMMENT= Command-line interface to the resolver library -WRKSRC= ${WRKDIR} +LICENSE= NONE -TGT= gh -SRC= gh.c - -EXTRACT_CMD= ${CP} -EXTRACT_BEFORE_ARGS= -EXTRACT_AFTER_ARGS= ${WRKSRC}/${SRC} PLIST_FILES= bin/gh +do-extract: + @${MKDIR} ${WRKDIR} + ${CP} ${DISTDIR}/${DISTNAME} ${WRKDIR}/ + do-build: - ${CC} ${CFLAGS} -o ${WRKSRC}/${TGT} ${WRKSRC}/${SRC} + ${CC} ${CFLAGS} ${LDFLAGS} -o ${WRKDIR}/gh ${WRKDIR}/ghmain.c do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/${TGT} ${STAGEDIR}${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKDIR}/gh ${STAGEDIR}${PREFIX}/bin .include diff --git a/dns/ghtool/pkg-descr b/dns/ghtool/pkg-descr index dbb26c9241d3..465a1f0b32c3 100644 --- a/dns/ghtool/pkg-descr +++ b/dns/ghtool/pkg-descr @@ -1,8 +1,6 @@ -To quote from the SourceForge project description: +gh-tool is a command-line interface to gethostby*, in libresolv/libc. +It allows one to check the local system's notion of an IP->DNS or +DNS->IP mapping, including aliases, directly, rather than digging for +mappings in DNS, which may or may not be relevant. - gh-tool is a command-line interface to gethostby*, in libresolv/libc. - It allows one to check the local system's notion of an IP->DNS or - DNS->IP mapping, including aliases, directly, rather than digging for - mappings in DNS, which may or may not be relevant. - -WWW: http://www.sourceforge.net/projects/gh-tool/ +WWW: https://sourceforge.net/projects/gh-tool/