View | Details | Raw Unified | Return to bug 203587 | Differences between
and this patch

Collapse All | Expand All

(-)devel/libserver/Makefile (-1 / +1 lines)
Lines 2-8 Link Here
2
# $FreeBSD: head/devel/libserver/Makefile 398242 2015-10-01 01:39:12Z vanilla $
2
# $FreeBSD: head/devel/libserver/Makefile 398242 2015-10-01 01:39:12Z vanilla $
3
3
4
PORTNAME=	libserver
4
PORTNAME=	libserver
5
PORTVERSION=	2.1.7
5
PORTVERSION=	3.1
6
CATEGORIES=	devel
6
CATEGORIES=	devel
7
MASTER_SITES=	http://www.mammothcheese.ca/
7
MASTER_SITES=	http://www.mammothcheese.ca/
8
8
(-)devel/libserver/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (libserver-2.1.7.tar.gz) = 53453135d43bc470c30452be23509bca6803b89a33d30cfce8fb5373afc5160b
1
SHA256 (libserver-3.1.tar.gz) = bf49a521366388690a23af66497b9700734e47336855ad8dbb084cbbc6d8da1c
2
SIZE (libserver-2.1.7.tar.gz) = 15060
2
SIZE (libserver-3.1.tar.gz) = 24726
(-)devel/libserver/pkg-descr (-6 / +4 lines)
Lines 1-7 Link Here
1
libserver implements a generic multi-process TCP or UNIX-domain server
1
Libserver provides generic multi-process, multi-threaded, and event-driven
2
which is incapable of servicing connections on its own.  The programmer
2
TCP or UNIX-domain servers.  The libraries handle network and concurrency
3
writes an initialization function and a function to service connections,
3
tasks.  You write code to service connections.
4
then compiles and links his or her code against the library to create a
5
complete server.
6
4
7
WWW: http://www.mammothcheese.ca/
5
WWW: http://mammothcheese.ca/
(-)devel/libserver/pkg-plist (+4 lines)
Lines 1-6 Link Here
1
include/server.h
1
include/server.h
2
include/serverevents.h
2
lib/libserver.so
3
lib/libserver.so
3
lib/libserver.so.%%PORTVERSION%%
4
lib/libserver.so.%%PORTVERSION%%
4
lib/libserverthreads.so
5
lib/libserverthreads.so
5
lib/libserverthreads.so.%%PORTVERSION%%
6
lib/libserverthreads.so.%%PORTVERSION%%
7
lib/libserverevents.so
8
lib/libserverevents.so.%%PORTVERSION%%
6
man/man8/libserver.8.gz
9
man/man8/libserver.8.gz
10
man/man8/libserverevents.8.gz

Return to bug 203587