mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 17:59:20 -04:00
Add libopennet.
Libopennet allows you to open_net() remote files as easily as you open() local files. WWW: http://www.rkeene.org/oss/libopennet/ PR: ports/81338 Submitted by: Gea-Suan Lin <gslin@netnews.NCTU.edu.tw>
This commit is contained in:
parent
ed05eef8e8
commit
df5308ccb0
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=136004
6 changed files with 49 additions and 0 deletions
|
@ -312,6 +312,7 @@
|
|||
SUBDIR += libnetdude
|
||||
SUBDIR += libnids
|
||||
SUBDIR += libnss-mysql
|
||||
SUBDIR += libopennet
|
||||
SUBDIR += libosip
|
||||
SUBDIR += libosip2
|
||||
SUBDIR += libpcap
|
||||
|
|
26
net/libopennet/Makefile
Normal file
26
net/libopennet/Makefile
Normal file
|
@ -0,0 +1,26 @@
|
|||
# New ports collection makefile for: libopennet
|
||||
# Date created: 21 May 2005
|
||||
# Whom: Gea-Suan Lin <gslin@ccca.nctu.edu.tw>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= libopennet
|
||||
PORTVERSION= 0.8.10
|
||||
CATEGORIES= net
|
||||
MASTER_SITES= http://www.rkeene.org/files/oss/libopennet/
|
||||
|
||||
MAINTAINER= gslin@ccca.nctu.edu.tw
|
||||
COMMENT= A library for opening files over a network
|
||||
|
||||
GNU_CONFIGURE= yes
|
||||
|
||||
MAN3= fopen_net.3 \
|
||||
fseek_net.3 \
|
||||
lseek_net.3 \
|
||||
open_net.3 \
|
||||
opennet.3 \
|
||||
opennet_init.3 \
|
||||
read_net.3
|
||||
|
||||
.include <bsd.port.mk>
|
2
net/libopennet/distinfo
Normal file
2
net/libopennet/distinfo
Normal file
|
@ -0,0 +1,2 @@
|
|||
MD5 (libopennet-0.8.10.tar.gz) = 37d1dea7b6380c2b8908dc52c1aef5e3
|
||||
SIZE (libopennet-0.8.10.tar.gz) = 91219
|
11
net/libopennet/files/patch-Makefile.in
Normal file
11
net/libopennet/files/patch-Makefile.in
Normal file
|
@ -0,0 +1,11 @@
|
|||
--- Makefile.in.orig Sat May 21 18:34:19 2005
|
||||
+++ Makefile.in Sat May 21 18:34:34 2005
|
||||
@@ -31,7 +31,7 @@
|
||||
BINS =
|
||||
# The following two lines need to be kept syncronised.
|
||||
LIBOPENNET_OBJS = buffer.o crc.o opennet.o parse.o @LIBOBJS@
|
||||
-LIBOPENNET_SHOBJS = buffer_shr.o crc_shr.o opennet_shr.o parse_shr.o @SHLIBOBJS@
|
||||
+LIBOPENNET_SHOBJS = $(LIBOPENNET_OBJS)
|
||||
|
||||
all: $(LIBS) $(BINS)
|
||||
|
4
net/libopennet/pkg-descr
Normal file
4
net/libopennet/pkg-descr
Normal file
|
@ -0,0 +1,4 @@
|
|||
Libopennet allows you to open_net() remote files as easily as you open()
|
||||
local files.
|
||||
|
||||
WWW: http://www.rkeene.org/oss/libopennet/
|
5
net/libopennet/pkg-plist
Normal file
5
net/libopennet/pkg-plist
Normal file
|
@ -0,0 +1,5 @@
|
|||
include/opennet.h
|
||||
lib/libopennet.a
|
||||
lib/libopennet.so
|
||||
lib/libopennet.so.0
|
||||
lib/libopennet.so.0.8.10
|
Loading…
Add table
Reference in a new issue