1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-27 00:57:50 +00:00

Add pear-Net_Server, a generic server class based on ext/sockets,

used to develop any kind of server.

PR:		ports/73064
Submitted by:	Gerrit Beine <tux@pinguru.net>
This commit is contained in:
Pav Lucistnik 2004-10-28 19:18:26 +00:00
parent 82f73ba949
commit 96e2245704
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=120417
5 changed files with 45 additions and 0 deletions

View File

@ -522,6 +522,7 @@
SUBDIR += pear-Net_NNTP
SUBDIR += pear-Net_POP3
SUBDIR += pear-Net_SMTP
SUBDIR += pear-Net_Server
SUBDIR += pear-Net_Sieve
SUBDIR += pear-Net_Socket
SUBDIR += pear-Net_URL

View File

@ -0,0 +1,28 @@
# Ports collection makefile for: pear-Net_Server
# Date created: 23 Octobre 2004
# Whom: Gerrit Beine (<tux@pinguru.net>)
#
# $FreeBSD$
#
PORTNAME= Net_Server
PORTVERSION= 0.12.0
CATEGORIES= net pear
MAINTAINER= tux@pinguru.net
COMMENT= Generic server class
BUILD_DEPENDS= ${PEARDIR}/PEAR.php:${PORTSDIR}/devel/pear-PEAR
RUN_DEPENDS= ${BUILD_DEPENDS}
USE_PHP= sockets pcntl
CATEGORY= Net
FILES= Server.php \
Server/Driver.php Server/Handler.php \
Server/Driver/Fork.php Server/Driver/Sequential.php
DOCS= todo.txt
EXAMPLES= talkback.php
.include <bsd.port.pre.mk>
.include "${PORTSDIR}/devel/pear-PEAR/Makefile.common"
.include <bsd.port.post.mk>

View File

@ -0,0 +1,2 @@
MD5 (PEAR/Net_Server-0.12.0.tgz) = f73b4f437ab48ae089db4e92d4d92709
SIZE (PEAR/Net_Server-0.12.0.tgz) = 9226

View File

@ -0,0 +1,11 @@
--- ../package.xml.orig Sat Aug 21 23:43:15 2004
+++ ../package.xml Sun Oct 24 09:36:17 2004
@@ -30,8 +30,6 @@
<deps>
<dep type="php" rel="ge" version="4.2.0" optional="no"/>
<dep type="pkg" rel="has" optional="no">PEAR</dep>
- <dep type="ext" rel="has" optional="no">sockets</dep>
- <dep type="ext" rel="has" optional="yes">pcntl</dep>
</deps>
<filelist>
<file role="doc" baseinstalldir="Net" name="docs\todo.txt"/>

View File

@ -0,0 +1,3 @@
Generic server class based on ext/sockets, used to develop any kind of server.
WWW: http://pear.php.net/package/Net_Server/