1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-24 04:33:24 +00:00

Add new port for ncplib - a NetWare client for FreeBSD.

This commit is contained in:
Boris Popov 1999-12-10 11:19:13 +00:00
parent 661dabf7c7
commit 10677a4b72
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=23722
8 changed files with 91 additions and 0 deletions

40
net/ncplib/Makefile Normal file
View File

@ -0,0 +1,40 @@
# New ports collection makefile for: ncplib
# Version required: 1.3.4
# Date created: 9 Dec 1999
# Whom: Boris Popov <bp@butya.kz>
#
# $Id$
#
DISTNAME= ncplib-1.3.4
CATEGORIES= net
MASTER_SITES= ftp://ftp.butya.kz/pub/nwlib/ \
http://www.chat.ru/~rbp/pub/nwlib/
MAINTAINER= bp@butya.kz
.if !exists(/usr/src/sys/kern/vnode_if.src)
BROKEN= requires kernel source
.endif
NO_PACKAGE= is interactive
MANCOMPRESSED= yes
.include <bsd.port.pre.mk>
.if ${OSVERSION} < 310000
.error this program requires FreeBSD 3.1-stable or later.
.endif
MAN1= ncpasswd.1 ncprint.1 ncpsend.1 ncpurge.1
MAN8= ipxping.8
.if ${OSVERSION} >= 400000
PLIST= ${PKGDIR}/PLIST.4
.else
MAN1+= ncplist.1 ncplogin.1 ncplogout.1
MAN8+= mount_nwfs.8
.endif
.include <bsd.port.post.mk>

1
net/ncplib/distinfo Normal file
View File

@ -0,0 +1 @@
MD5 (ncplib-1.3.4.tar.gz) = d70136d99db088843f7c23169b6dfb70

1
net/ncplib/pkg-comment Normal file
View File

@ -0,0 +1 @@
NetWare client for FreeBSD.

6
net/ncplib/pkg-descr Normal file
View File

@ -0,0 +1,6 @@
ncplib is a free client for NetWare servers.
WWW: http://www.chat.ru/~rbp/ncpleng.html
--
Boris Popov
rbp@chat.ru

1
net/ncplib/pkg-message Normal file
View File

@ -0,0 +1 @@
After building please read README file in the build directory.

12
net/ncplib/pkg-plist Normal file
View File

@ -0,0 +1,12 @@
bin/ncpasswd
bin/ncplist
bin/ncplogin
bin/ncplogout
bin/ncplpd
bin/ncprint
bin/ncpsend
bin/ncpurge
sbin/ncpsvc
@cwd /
modules/nwfs.ko
sbin/mount_nwfs

5
net/ncplib/pkg-plist.4 Normal file
View File

@ -0,0 +1,5 @@
bin/ipxping
bin/ncplpd
bin/ncprint
bin/ncpsend
bin/ncpurge

25
net/ncplib/scripts/configure vendored Normal file
View File

@ -0,0 +1,25 @@
#!/bin/sh
CMK=${WRKSRC}/config.mk
read_yn() {
read res
case "$res" in
y*) done=y ;;
*) res=n ;;
esac
}
echo -n "Do you want to include 866 codepage support ? [n]"
read_yn
use866=$res
echo "SRCTREE=/usr/src" > $CMK
echo "PREFIX="$PREFIX >> $CMK
echo "BUILDKLD=yes" >> $CMK
if [ $use866 = y ]; then
echo "NCP_NLS_KOI_866=" >> $CMK
echo "NCP_NLS_DEFAULT=NCP_NLS_KOI_866" >> $CMK
fi