1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-23 00:43:28 +00:00

libidentd - a small library to interface the ident protocol server (rfc1413)

Submitted by:	torstenb
This commit is contained in:
Satoshi Asami 1995-10-12 07:29:19 +00:00
parent 0d9ba0b7c5
commit 31aa55f619
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=2324
6 changed files with 106 additions and 0 deletions

View File

@ -0,0 +1,20 @@
# New ports collection makefile for: libident
# Version required: 0.18
# Date created: 9 October 1995
# Whom: torstenb@FreeBSD.ORG
#
# $Id$
#
DISTNAME= libident-0.18
CATEGORIES= development networking security
MASTER_SITES= ftp://ftp.lysator.liu.se/pub/ident/libs/
MAINTAINER= torstenb@FreeBSD.ORG
ALL_TARGET= freebsd
post-install:
gzip -9nf ${PREFIX}/man/man3/ident.3
.include <bsd.port.mk>

View File

@ -0,0 +1 @@
MD5 (libident-0.18.tar.gz) = 95b1095c129d66a81bda390f5792521e

View File

@ -0,0 +1,60 @@
*** Makefile.orig Mon Oct 9 12:34:13 1995
--- Makefile Mon Oct 9 12:49:45 1995
***************
*** 7,13 ****
RM=rm -f
RANLIB=ranlib
! INSTROOT=/usr/local
LIBDIR=$(INSTROOT)/lib
INCDIR=$(INSTROOT)/include
--- 7,13 ----
RM=rm -f
RANLIB=ranlib
! INSTROOT=${PREFIX}
LIBDIR=$(INSTROOT)/lib
INCDIR=$(INSTROOT)/include
***************
*** 19,25 ****
# Add -DHAVE_ANSIHEADERS if your system have the ANSI C header files
# needed for our purposes (stdlib, string, unistd).
#
! CFLAGS = -O
LDLIBS =
LIBIDENT = libident.a
--- 19,25 ----
# Add -DHAVE_ANSIHEADERS if your system have the ANSI C header files
# needed for our purposes (stdlib, string, unistd).
#
! #CFLAGS = -O
LDLIBS =
LIBIDENT = libident.a
***************
*** 31,36 ****
--- 31,37 ----
@echo ""
@echo aix
@echo bsd
+ @echo freebsd (FreeBSD 2.x)
@echo dynix
@echo hpux
@echo irix
***************
*** 119,124 ****
--- 120,130 ----
#
bsd:
@$(MAKE) all CC="$(CC)" CFLAGS="-O -DSIGRETURNTYPE=int"
+
+ #
+ # FreeBSD 2.x
+ freebsd:
+ @$(MAKE) all CC="$(CC)" CFLAGS="${CFLAGS} -Wall -DHAVE_ANSIHEADERS"
#
#

View File

@ -0,0 +1 @@
libidentd - a small library to interface the ident protocol server (rfc1413)

View File

@ -0,0 +1,21 @@
COPYRIGHT ISSUES:
This version of 'libident' is hereby released into the
Public Domain. It may be distributed for a fee or without
a fee. We only ask you not to pretend you wrote it.
If you make any changes, please send sources or a diff of it to
us (pen@lysator.liu.se or pell@lysator.liu.se), so we can keep
_one_ unified version of libident available...
COMMENTS:
This is the second stab at a small library to interface to the Ident
protocol server. Maybe this will work correctly on some machines.. :-)
The ident-tester.c file is a small daemon (to be started from Inetd)
that does an ident lookup on you if you telnet into it. Can be used
to verify that your Ident server is working correctly.
I'm currently running this "ident-tester" on port 114 at lysator.liu.se
(130.236.254.1) if you wish to test your server.

View File

@ -0,0 +1,3 @@
include/ident.h
lib/libident.a
man/man3/ident.3.gz