1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-19 19:59:43 +00:00

- Add LICENSE

- Simplify Makefile and pkg-descr
- Update WWW

Approved by:	portmgr blanket
This commit is contained in:
Dmitry Marakasov 2018-02-24 09:02:59 +00:00
parent 2e65b080e6
commit 1d01aa7bb6
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=462778
2 changed files with 13 additions and 17 deletions

View File

@ -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 <bsd.port.mk>

View File

@ -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/