diff options
author | dd <dd@FreeBSD.org> | 2001-08-30 13:55:37 +0000 |
---|---|---|
committer | dd <dd@FreeBSD.org> | 2001-08-30 13:55:37 +0000 |
commit | 3f9bc8bef76d4711baee9c55e5ed048ee7fb6d57 (patch) | |
tree | 74c0d2e4c4e1bff30d18d2d3280e26624e750d75 /security/qident | |
parent | 86ec1f98cc61ced86f6618ba4c986635c9b48be4 (diff) | |
download | FreeBSD-ports-3f9bc8bef76d4711baee9c55e5ed048ee7fb6d57.zip FreeBSD-ports-3f9bc8bef76d4711baee9c55e5ed048ee7fb6d57.tar.gz |
Add qident, a small program to query a remote IDENT (RFC 1413) server.
Diffstat (limited to 'security/qident')
-rw-r--r-- | security/qident/Makefile | 39 | ||||
-rw-r--r-- | security/qident/distinfo | 1 | ||||
-rw-r--r-- | security/qident/pkg-comment | 1 | ||||
-rw-r--r-- | security/qident/pkg-descr | 4 | ||||
-rw-r--r-- | security/qident/pkg-plist | 1 |
5 files changed, 46 insertions, 0 deletions
diff --git a/security/qident/Makefile b/security/qident/Makefile new file mode 100644 index 0000000..319bbf4 --- /dev/null +++ b/security/qident/Makefile @@ -0,0 +1,39 @@ +# New ports collection makefile for: qident +# Date created: 30 August 2001 +# Whom: dd +# +# $FreeBSD$ +# + +PORTNAME= qident +PORTVERSION= 1.0 +CATEGORIES= security +MASTER_SITES= http://www.netbsd.org/~ad/qident/ + +MAINTAINER= dd@FreeBSD.org + +BUILD_DEPENDS= ${LOCALBASE}/lib/libident.a:${PORTSDIR}/security/libident + +MANSECTS= 1 +MAN1= qident.1 +MANCOMPRESSED= maybe + +# MAN page COMPression SUFFIX +.if !defined(NOMANCOMPRESS) +MANCOMPSUFFIX= .gz +.else +MANCOMPSUFFIX= +.endif + +pre-build: + @${PERL} -pi -e 's/getopt[.]h/unistd.h/g' ${WRKSRC}/* + +do-install: + @${INSTALL_PROGRAM} ${WRKSRC}/qident ${PREFIX}/bin/qident +.for __s in ${MANSECTS} +.for __m in ${MAN${__s}:S/$/${MANCOMPSUFFIX}/} + @${INSTALL_MAN} ${WRKSRC}/${__m} ${PREFIX}/man/man${__s}/${__m} +.endfor +.endfor + +.include <bsd.port.mk> diff --git a/security/qident/distinfo b/security/qident/distinfo new file mode 100644 index 0000000..60bb5a5 --- /dev/null +++ b/security/qident/distinfo @@ -0,0 +1 @@ +MD5 (qident-1.0.tar.gz) = c3b045095f6e1d8ee2e34fc036884a84 diff --git a/security/qident/pkg-comment b/security/qident/pkg-comment new file mode 100644 index 0000000..d366ce8 --- /dev/null +++ b/security/qident/pkg-comment @@ -0,0 +1 @@ +Query a remote IDENT (RFC 1413) server diff --git a/security/qident/pkg-descr b/security/qident/pkg-descr new file mode 100644 index 0000000..e9924e8 --- /dev/null +++ b/security/qident/pkg-descr @@ -0,0 +1,4 @@ +A small program to query an ident protocol server (rfc1413). Uses the +`libident' library. + +WWW: http://www.netbsd.org/~ad/qident/ diff --git a/security/qident/pkg-plist b/security/qident/pkg-plist new file mode 100644 index 0000000..05b33b6 --- /dev/null +++ b/security/qident/pkg-plist @@ -0,0 +1 @@ +bin/qident |