aboutsummaryrefslogtreecommitdiff
path: root/devel
diff options
context:
space:
mode:
authorMartin Wilke <miwi@FreeBSD.org>2007-01-24 20:57:34 +0000
committerMartin Wilke <miwi@FreeBSD.org>2007-01-24 20:57:34 +0000
commit8ac6cd84c93de29ab00f282142c16234175161b3 (patch)
treee86690cffdfafc9fb51e2a825b1b89580c6ec1f5 /devel
parent236e54a5acc58aa419a75f84f69383a24d560631 (diff)
downloadports-8ac6cd84c93de29ab00f282142c16234175161b3.tar.gz
ports-8ac6cd84c93de29ab00f282142c16234175161b3.zip
C++ utility for simple IOStream-based Inter-Process Communication
WWW: http://pstreams.sourceforge.net/ PR: ports/108205 Submitted by: Andrew Wingorodov <mail at andr.ru>
Notes
Notes: svn path=/head/; revision=183198
Diffstat (limited to 'devel')
-rw-r--r--devel/Makefile1
-rw-r--r--devel/pstreams/Makefile22
-rw-r--r--devel/pstreams/distinfo3
-rw-r--r--devel/pstreams/files/patch-install-without-docs11
-rw-r--r--devel/pstreams/pkg-descr3
5 files changed, 40 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile
index 5516370e691f..1b10a9547813 100644
--- a/devel/Makefile
+++ b/devel/Makefile
@@ -1706,6 +1706,7 @@
SUBDIR += projectcenter.app
SUBDIR += projectmanager
SUBDIR += prototype
+ SUBDIR += pstreams
SUBDIR += psvn
SUBDIR += pth
SUBDIR += ptmalloc
diff --git a/devel/pstreams/Makefile b/devel/pstreams/Makefile
new file mode 100644
index 000000000000..633c13e8703d
--- /dev/null
+++ b/devel/pstreams/Makefile
@@ -0,0 +1,22 @@
+# New ports collection makefile for: pstreams
+# Date created: 22 Jan 2007
+# Whom: Andrew Wingorodov <mail@andr.ru>
+#
+# $FreeBSD$
+
+PORTNAME= pstreams
+PORTVERSION= 0.5.2
+CATEGORIES= devel
+MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
+MASTER_SITE_SUBDIR= pstreams
+
+MAINTAINER= mail@andr.ru
+COMMENT= C++ utility for simple IOStream-based IPC
+
+USE_GMAKE= yes
+NO_BUILD= yes
+
+PLIST_FILES= include/pstreams/pstream.h
+PLIST_DIRS= include/pstreams
+
+.include <bsd.port.mk>
diff --git a/devel/pstreams/distinfo b/devel/pstreams/distinfo
new file mode 100644
index 000000000000..e2e17578ba73
--- /dev/null
+++ b/devel/pstreams/distinfo
@@ -0,0 +1,3 @@
+MD5 (pstreams-0.5.2.tar.gz) = d8a9bd488f3e7b75feabc7b136ad8be0
+SHA256 (pstreams-0.5.2.tar.gz) = e9382ba2d0c41e94c471248fd547218350beff29e4294fdbad102333020fe867
+SIZE (pstreams-0.5.2.tar.gz) = 53150
diff --git a/devel/pstreams/files/patch-install-without-docs b/devel/pstreams/files/patch-install-without-docs
new file mode 100644
index 000000000000..7924a4e20aa8
--- /dev/null
+++ b/devel/pstreams/files/patch-install-without-docs
@@ -0,0 +1,11 @@
+--- Makefile.orig Mon Jan 22 13:33:24 2007
++++ Makefile Mon Jan 22 13:33:51 2007
+@@ -38,7 +38,7 @@
+
+ VERS = 0.5.2
+
+-all: docs $(GENERATED_FILES)
++all: install
+
+ test: test_pstreams test_minimum
+ @./test_minimum >/dev/null 2>&1 || echo "TEST EXITED WITH STATUS $$?"
diff --git a/devel/pstreams/pkg-descr b/devel/pstreams/pkg-descr
new file mode 100644
index 000000000000..b7f37e53164a
--- /dev/null
+++ b/devel/pstreams/pkg-descr
@@ -0,0 +1,3 @@
+C++ utility for simple IOStream-based Inter-Process Communication
+
+WWW: http://pstreams.sourceforge.net/