Index: head/dns/ghtool/Makefile =================================================================== --- head/dns/ghtool/Makefile (revision 462777) +++ head/dns/ghtool/Makefile (revision 462778) @@ -1,30 +1,28 @@ # Created by: roam@orbitel.bg # $FreeBSD$ PORTNAME= ghtool 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 Index: head/dns/ghtool/pkg-descr =================================================================== --- head/dns/ghtool/pkg-descr (revision 462777) +++ head/dns/ghtool/pkg-descr (revision 462778) @@ -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/