View | Details | Raw Unified | Return to bug 53704
Collapse All | Expand All

(-)ptypes/Makefile (-4 / +3 lines)
Lines 7-13 Link Here
7
#
7
#
8
8
9
PORTNAME=	ptypes
9
PORTNAME=	ptypes
10
PORTVERSION=	1.7.5
10
PORTVERSION=	1.8.0
11
CATEGORIES=	devel
11
CATEGORIES=	devel
12
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
12
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
13
MASTER_SITE_SUBDIR=	${PORTNAME}
13
MASTER_SITE_SUBDIR=	${PORTNAME}
Lines 15-25 Link Here
15
MAINTAINER=	ports@FreeBSD.org
15
MAINTAINER=	ports@FreeBSD.org
16
COMMENT=	C++ Portable Types Library
16
COMMENT=	C++ Portable Types Library
17
17
18
CFLAGS+=	${PTHREAD_CFLAGS}
19
SHLIB_VER=	1
18
SHLIB_VER=	1
20
INSTALLS_SHLIB=	yes
19
INSTALLS_SHLIB=	yes
21
MAKE_ARGS+=	SHLIB_VER=${SHLIB_VER} CFLAGS="${CFLAGS}" \
20
MAKE_ARGS+=	SHLIB_VER=${SHLIB_VER} PTHREAD_LIBS=${PTHREAD_LIBS} \
22
		PTHREAD_LIBS=${PTHREAD_LIBS}
21
		PTHREAD_CFLAGS=${PTHREAD_CFLAGS}
23
22
24
do-install:
23
do-install:
25
	${MKDIR} ${PREFIX}/include/ptypes
24
	${MKDIR} ${PREFIX}/include/ptypes
(-)ptypes/distinfo (-1 / +1 lines)
Line 1 Link Here
1
MD5 (ptypes-1.7.5.tar.gz) = e5dc13801bdb74a8c1bcf36db5a64b6c
1
MD5 (ptypes-1.8.0.tar.gz) = 79c3fbe546b3f7a28c9f47b30f975b4e
(-)ptypes/files/patch-src-Makefile.FreeBSD (-8 / +11 lines)
Lines 1-14 Link Here
1
--- src/Makefile.FreeBSD.orig	Wed Jan  8 03:14:56 2003
1
--- Makefile.FreeBSD.orig	Tue Jun 24 13:49:22 2003
2
+++ src/Makefile.FreeBSD	Wed Jan  8 03:14:59 2003
2
+++ src/Makefile.FreeBSD	Wed Jun 25 02:36:53 2003
3
@@ -15,9 +15,9 @@
3
@@ -15,11 +15,11 @@
4
 
4
 
5
 CXX = g++
5
 CXX = g++
6
 
6
 
7
-CXXOPTS = -pthread
7
-OS_CXXOPTS = -pthread
8
+CXXOPTS =
8
-OS_LDLIBS = -lc_r
9
 
9
+OS_CXXOPTS = $(PTHREAD_CFLAGS)
10
-LDLIBS = -lc_r
10
+OS_LDLIBS = $(PTHREAD_LIBS)
11
+LDLIBS =
12
 
11
 
13
 SOEXT = so
12
 SOEXT = so
13
-LIBTOOL = $(CXX) -shared -pthread
14
+LIBTOOL = $(CXX) -shared $(PTHREAD_CFLAGS)
15
 SOSTRIP = strip
14
 
16
 
17
 include Makefile.common
(-)ptypes/files/patch-src-Makefile.common (-41 / +26 lines)
Lines 1-42 Link Here
1
--- src/Makefile.common.orig	Wed Jan  8 03:12:14 2003
1
--- src/Makefile.common.orig	Tue Jun 24 13:49:22 2003
2
+++ src/Makefile.common	Wed Jan  8 03:13:59 2003
2
+++ src/Makefile.common	Wed Jun 25 03:56:22 2003
3
@@ -20,17 +20,17 @@
3
@@ -19,12 +19,12 @@
4
 AR              = ar
5
 RANLIB          = ranlib
6
 
7
-DDEBUG          = -DDEBUG
8
+DDEBUG          =
9
 INCDIR          = ../include
10
-CXXOPTS         = $(OS_CXXOPTS) $(DDEBUG) -I$(INCDIR) -fPIC -Wall -O2
11
+CXXOPTS         = $(OS_CXXOPTS) $(DDEBUG) -I$(INCDIR) -fPIC -Wall $(CFLAGS)
12
 LDLIBS          = $(OS_LDLIBS)
13
 
14
-CXXOPTS_ST      = -DPTYPES_ST $(OS_CXXOPTS_ST) $(DDEBUG) -I$(INCDIR) -Wall -O2
15
+CXXOPTS_ST      = -DPTYPES_ST $(OS_CXXOPTS_ST) $(DDEBUG) -I$(INCDIR) -Wall $(CFLAGS)
16
 LDLIBS_ST       = $(OS_LDLIBS_ST)
17
 
18
 LIBNAME         = libptypes.a
19
@@ -32,7 +32,7 @@
20
 LIBDEST         = ../lib
21
 
22
 SONAME          = libptypes.$(SOEXT)
23
-SOVER           = 1
24
+SOVER           = $(SHLIB_VER)
25
 SOREALNAME      = $(SONAME).$(SOVER)
26
 SODEST          = ../so
4
 
27
 
5
 RANLIB		= ranlib
6
 
7
-CXXDEFS         = -DDEBUG
8
+CXXDEFS         =
9
 
10
 INCDIR		= ../include
11
 
12
-CXXFLAGS	= $(CXXOPTS) $(CXXDEFS) -I$(INCDIR) -fPIC -Wall -O2
13
+CXXFLAGS	= $(CXXOPTS) $(CXXDEFS) -I$(INCDIR) -fPIC -Wall $(CFLAGS)
14
 
15
 LIBNAME		= libptypes.a
16
 LIBDEST		= ../lib
17
 
18
 SONAME		= libptypes.$(SOEXT)
19
-SOVER		= 1
20
+SOVER		= $(SHLIB_VER)
21
 SOREALNAME	= $(SONAME).$(SOVER)
22
 SODEST		= ../so
23
 
24
@@ -74,7 +74,7 @@
25
 	cp $@ $(LIBDEST)/
26
 
27
 $(SOREALNAME): $(LIBOBJS)
28
-	$(LIBTOOL) $(LIBOBJS) $(LDLIBS) -o $@
29
+	$(LIBTOOL) $(LIBOBJS) $(LDLIBS) -o $@ ${PTHREAD_LIBS} -lc_r
30
 	rm -f $(SONAME) ; ln -s $@ $(SONAME)
31
 	cp $@ $(SODEST)/
32
 	cd $(SODEST) ; rm -f $(SONAME) ; ln -s $@ $(SONAME) ; $(SOSTRIP) $@
33
@@ -190,7 +190,8 @@
34
 ptypes_test.o: ptypes_test.cxx $(HALL)
35
 
36
 ptypes_test: ptypes_test.o $(LIBNAME)
37
-	$(CXX) $(CXXFLAGS) $@.o -L./ $(LDLIBS) libptypes.a -o $@
38
+	$(CXX) $(CXXFLAGS) $@.o -L./ $(LDLIBS) libptypes.a -o $@ \
39
+		$(PTHREAD_LIBS) -lc_r
40
 
41
 clean: clean-src
42
 	rm -f $(LIBDEST)/$(LIBNAME)
(-)ptypes/files/patch-wshare-Makefile.FreeBSD (+13 lines)
Line 0 Link Here
1
--- Makefile.FreeBSD.orig	Wed Jun 25 02:38:24 2003
2
+++ wshare/Makefile.FreeBSD	Wed Jun 25 02:38:48 2003
3
@@ -15,8 +15,8 @@
4
 
5
 CXX = g++
6
 
7
-OS_CXXOPTS = -pthread
8
-OS_LDLIBS = -lc_r
9
+OS_CXXOPTS = $(PTHREAD_CFLAGS)
10
+OS_LDLIBS = $(PTHREAD_LIBS)
11
 
12
 include Makefile.common
13
 
(-)ptypes/files/patch-wshare-Makefile.common (-9 / +8 lines)
Lines 1-15 Link Here
1
--- wshare/Makefile.common.orig	Fri Oct 18 09:01:35 2002
1
--- Makefile.common.orig	Wed Jun 25 02:41:34 2003
2
+++ wshare/Makefile.common	Tue Oct 22 07:36:40 2002
2
+++ wshare/Makefile.common	Wed Jun 25 02:42:10 2003
3
@@ -16,11 +16,11 @@
3
@@ -16,9 +16,9 @@
4
 
4
 
5
 .SUFFIXES:	.cxx .o
5
 .SUFFIXES:	.cxx .o
6
 
6
 
7
-CXXDEFS     = -DDEBUG
7
-DDEBUG      = -DDEBUG
8
+CXXDEFS     =
8
+DDEBUG      =
9
 
10
 INCDIR      = ../include
9
 INCDIR      = ../include
11
 
10
-CXXOPTS     = $(OS_CXXOPTS) $(DDEBUG) -I$(INCDIR) -Wall -O2
12
-CXXFLAGS    = $(CXXOPTS) $(CXXDEFS) -I$(INCDIR) -Wall -O2
11
+CXXOPTS     = $(OS_CXXOPTS) $(DDEBUG) -I$(INCDIR) -Wall $(CFLAGS)
13
+CXXFLAGS    = $(CXXOPTS) $(CXXDEFS) -I$(INCDIR) -Wall $(CFLAGS)
12
 LDLIBS      = $(OS_LDLIBS)
14
 
13
 
15
 BINDEST     = ../bin
14
 BINDEST     = ../bin
(-)ptypes/pkg-descr (-11 / +20 lines)
Lines 1-14 Link Here
1
PTypes (C++ Portable Types Library) is a simple alternative to the STL that
1
PTypes is a C++ Portable Types Library. It offers the following features:
2
includes multithreading and networking. It defines dynamic strings, character
3
sets, lists, and other basic data types along with threads, synchronization
4
and IP sockets. PTypes also offers message queues as an alternative method of
5
thread synchronization. Its main `target audience' is developers of complex
6
network daemons, robots or non-visual client/server applications of any kind.
7
2
8
PTypes defines simple and intuitive interfaces. It is portable across many
3
* Threads and synchronization objects along with message queues solve 
9
modern operating systems (Currently FreeBSD, Linux, SunOS, Mac OS X and
4
   the vital problem of diversity of the threading API's on different
10
Windows). All platform-dependent issues are hidden inside. A simple web server
5
   platforms.
11
called wshare is now included in the package to demonstrate the full power of
6
* IP socket classes and utilities provide complete IP-based framework
12
PTypes.
7
   for both client-side and server-side programming. They can be
8
   combined with PTypes multithreading.
9
* Dynamic strings, variants, character sets, date/time type and various 
10
   kinds of dynamic and associative arrays: Delphi programmers will find
11
   them very similar to the ones in their favorite language.
12
* Streaming interfaces provide buffered I/O with simple and powerful text
13
   parsing methods. A strictly defined syntax for the given text format
14
   or a formal language can be represented by calls to PTypes token
15
   extraction methods. The unified streaming interface is applicable to
16
   files, named pipes and network sockets.
17
* Special thread class with enhanced functionality called unit. Units have
18
   their own main() and input/output 'plugs'; they can be connected to each
19
   other within one application to form pipes, like processes in the Unix shell.
20
* Finally, everything above is portable: all platform-dependent details
21
   are hidden inside.
13
22
14
WWW: http://ptypes.sourceforge.net/
23
WWW: http://ptypes.sourceforge.net/
(-)ptypes/pkg-plist (-82 / +87 lines)
Lines 7-92 Link Here
7
lib/libptypes.a
7
lib/libptypes.a
8
lib/libptypes.so
8
lib/libptypes.so
9
lib/libptypes.so.1
9
lib/libptypes.so.1
10
share/doc/ptypes/LICENSE
10
lib/libptypesn.a
11
share/doc/ptypes/doc/async.examples.html
11
%%PORTDOCS%%share/doc/ptypes/LICENSE
12
share/doc/ptypes/doc/async.html
12
%%PORTDOCS%%share/doc/ptypes/doc/async.examples.html
13
share/doc/ptypes/doc/async.message.html
13
%%PORTDOCS%%share/doc/ptypes/doc/async.html
14
share/doc/ptypes/doc/async.msgqueue.html
14
%%PORTDOCS%%share/doc/ptypes/doc/async.message.html
15
share/doc/ptypes/doc/async.mutex.html
15
%%PORTDOCS%%share/doc/ptypes/doc/async.msgqueue.html
16
share/doc/ptypes/doc/async.rwlock.html
16
%%PORTDOCS%%share/doc/ptypes/doc/async.mutex.html
17
share/doc/ptypes/doc/async.semaphore.html
17
%%PORTDOCS%%share/doc/ptypes/doc/async.rwlock.html
18
share/doc/ptypes/doc/async.thread.html
18
%%PORTDOCS%%share/doc/ptypes/doc/async.semaphore.html
19
share/doc/ptypes/doc/async.trigger.html
19
%%PORTDOCS%%share/doc/ptypes/doc/async.thread.html
20
share/doc/ptypes/doc/async.utils.html
20
%%PORTDOCS%%share/doc/ptypes/doc/async.trigger.html
21
share/doc/ptypes/doc/basic.html
21
%%PORTDOCS%%share/doc/ptypes/doc/async.utils.html
22
share/doc/ptypes/doc/changes.html
22
%%PORTDOCS%%share/doc/ptypes/doc/basic.html
23
share/doc/ptypes/doc/compiling.html
23
%%PORTDOCS%%share/doc/ptypes/doc/changes.html
24
share/doc/ptypes/doc/criterrors.html
24
%%PORTDOCS%%share/doc/ptypes/doc/compiling.html
25
share/doc/ptypes/doc/cset.constructors.html
25
%%PORTDOCS%%share/doc/ptypes/doc/criterrors.html
26
share/doc/ptypes/doc/cset.html
26
%%PORTDOCS%%share/doc/ptypes/doc/cset.constructors.html
27
share/doc/ptypes/doc/cset.manipulation.html
27
%%PORTDOCS%%share/doc/ptypes/doc/cset.html
28
share/doc/ptypes/doc/cset.operators.html
28
%%PORTDOCS%%share/doc/ptypes/doc/cset.manipulation.html
29
share/doc/ptypes/doc/deploying.html
29
%%PORTDOCS%%share/doc/ptypes/doc/cset.operators.html
30
share/doc/ptypes/doc/freshmeat-logo.gif
30
%%PORTDOCS%%share/doc/ptypes/doc/deploying.html
31
share/doc/ptypes/doc/index.html
31
%%PORTDOCS%%share/doc/ptypes/doc/freshmeat-logo.png
32
share/doc/ptypes/doc/inet.examples.html
32
%%PORTDOCS%%share/doc/ptypes/doc/index.html
33
share/doc/ptypes/doc/inet.html
33
%%PORTDOCS%%share/doc/ptypes/doc/inet.examples.html
34
share/doc/ptypes/doc/inet.ipmessage.html
34
%%PORTDOCS%%share/doc/ptypes/doc/inet.html
35
share/doc/ptypes/doc/inet.ipmsgserver.html
35
%%PORTDOCS%%share/doc/ptypes/doc/inet.ipmessage.html
36
share/doc/ptypes/doc/inet.ipstmserver.html
36
%%PORTDOCS%%share/doc/ptypes/doc/inet.ipmsgserver.html
37
share/doc/ptypes/doc/inet.ipstream.html
37
%%PORTDOCS%%share/doc/ptypes/doc/inet.ipstmserver.html
38
share/doc/ptypes/doc/inet.utils.html
38
%%PORTDOCS%%share/doc/ptypes/doc/inet.ipstream.html
39
share/doc/ptypes/doc/intro.html
39
%%PORTDOCS%%share/doc/ptypes/doc/inet.utils.html
40
share/doc/ptypes/doc/lists.html
40
%%PORTDOCS%%share/doc/ptypes/doc/intro.html
41
share/doc/ptypes/doc/lists.objlist.constructors.html
41
%%PORTDOCS%%share/doc/ptypes/doc/lists.html
42
share/doc/ptypes/doc/lists.objlist.html
42
%%PORTDOCS%%share/doc/ptypes/doc/lists.objlist.constructors.html
43
share/doc/ptypes/doc/lists.objlist.manipulation.html
43
%%PORTDOCS%%share/doc/ptypes/doc/lists.objlist.html
44
share/doc/ptypes/doc/lists.strlist.constructors.html
44
%%PORTDOCS%%share/doc/ptypes/doc/lists.objlist.manipulation.html
45
share/doc/ptypes/doc/lists.strlist.html
45
%%PORTDOCS%%share/doc/ptypes/doc/lists.strlist.constructors.html
46
share/doc/ptypes/doc/lists.strlist.manipulation.html
46
%%PORTDOCS%%share/doc/ptypes/doc/lists.strlist.html
47
share/doc/ptypes/doc/lists.strlist.search.html
47
%%PORTDOCS%%share/doc/ptypes/doc/lists.strlist.manipulation.html
48
share/doc/ptypes/doc/lists.strmap.constructors.html
48
%%PORTDOCS%%share/doc/ptypes/doc/lists.strlist.search.html
49
share/doc/ptypes/doc/lists.strmap.html
49
%%PORTDOCS%%share/doc/ptypes/doc/lists.strmap.constructors.html
50
share/doc/ptypes/doc/lists.strmap.manipulation.html
50
%%PORTDOCS%%share/doc/ptypes/doc/lists.strmap.html
51
share/doc/ptypes/doc/lists.strmap.search.html
51
%%PORTDOCS%%share/doc/ptypes/doc/lists.strmap.manipulation.html
52
share/doc/ptypes/doc/portability.html
52
%%PORTDOCS%%share/doc/ptypes/doc/lists.strmap.search.html
53
share/doc/ptypes/doc/ref.html
53
%%PORTDOCS%%share/doc/ptypes/doc/portability.html
54
share/doc/ptypes/doc/ref.tmpl.html
54
%%PORTDOCS%%share/doc/ptypes/doc/ref.html
55
share/doc/ptypes/doc/source-forge-logo.gif
55
%%PORTDOCS%%share/doc/ptypes/doc/ref.tmpl.html
56
share/doc/ptypes/doc/streams.errors.html
56
%%PORTDOCS%%share/doc/ptypes/doc/source-forge-logo.png
57
share/doc/ptypes/doc/streams.examples.html
57
%%PORTDOCS%%share/doc/ptypes/doc/streams.errors.html
58
share/doc/ptypes/doc/streams.html
58
%%PORTDOCS%%share/doc/ptypes/doc/streams.examples.html
59
share/doc/ptypes/doc/streams.infile.html
59
%%PORTDOCS%%share/doc/ptypes/doc/streams.html
60
share/doc/ptypes/doc/streams.inmem.html
60
%%PORTDOCS%%share/doc/ptypes/doc/streams.infile.html
61
share/doc/ptypes/doc/streams.instm.html
61
%%PORTDOCS%%share/doc/ptypes/doc/streams.inmem.html
62
share/doc/ptypes/doc/streams.iobase.html
62
%%PORTDOCS%%share/doc/ptypes/doc/streams.instm.html
63
share/doc/ptypes/doc/streams.md5.html
63
%%PORTDOCS%%share/doc/ptypes/doc/streams.iobase.html
64
share/doc/ptypes/doc/streams.namedpipe.html
64
%%PORTDOCS%%share/doc/ptypes/doc/streams.logfile.html
65
share/doc/ptypes/doc/streams.npserver.html
65
%%PORTDOCS%%share/doc/ptypes/doc/streams.md5.html
66
share/doc/ptypes/doc/streams.outfile.html
66
%%PORTDOCS%%share/doc/ptypes/doc/streams.namedpipe.html
67
share/doc/ptypes/doc/streams.outmem.html
67
%%PORTDOCS%%share/doc/ptypes/doc/streams.npserver.html
68
share/doc/ptypes/doc/streams.outstm.html
68
%%PORTDOCS%%share/doc/ptypes/doc/streams.outfile.html
69
share/doc/ptypes/doc/streams.stdio.html
69
%%PORTDOCS%%share/doc/ptypes/doc/streams.outmem.html
70
share/doc/ptypes/doc/string.constructors.html
70
%%PORTDOCS%%share/doc/ptypes/doc/streams.outstm.html
71
share/doc/ptypes/doc/string.html
71
%%PORTDOCS%%share/doc/ptypes/doc/streams.stdio.html
72
share/doc/ptypes/doc/string.manipulation.html
72
%%PORTDOCS%%share/doc/ptypes/doc/string.constructors.html
73
share/doc/ptypes/doc/string.operators.html
73
%%PORTDOCS%%share/doc/ptypes/doc/string.conversion.html
74
share/doc/ptypes/doc/string.typecasts.html
74
%%PORTDOCS%%share/doc/ptypes/doc/string.html
75
share/doc/ptypes/doc/styles.css
75
%%PORTDOCS%%share/doc/ptypes/doc/string.manipulation.html
76
share/doc/ptypes/doc/time.calendar.html
76
%%PORTDOCS%%share/doc/ptypes/doc/string.operators.html
77
share/doc/ptypes/doc/time.datetime.html
77
%%PORTDOCS%%share/doc/ptypes/doc/string.typecasts.html
78
share/doc/ptypes/doc/time.html
78
%%PORTDOCS%%share/doc/ptypes/doc/styles.css
79
share/doc/ptypes/doc/time.time.html
79
%%PORTDOCS%%share/doc/ptypes/doc/time.calendar.html
80
share/doc/ptypes/doc/title-1.7.gif
80
%%PORTDOCS%%share/doc/ptypes/doc/time.datetime.html
81
share/doc/ptypes/doc/unit.html
81
%%PORTDOCS%%share/doc/ptypes/doc/time.html
82
share/doc/ptypes/doc/unknown.html
82
%%PORTDOCS%%share/doc/ptypes/doc/time.time.html
83
share/doc/ptypes/doc/variant.arrays.html
83
%%PORTDOCS%%share/doc/ptypes/doc/title-1.8.png
84
share/doc/ptypes/doc/variant.html
84
%%PORTDOCS%%share/doc/ptypes/doc/unit.html
85
share/doc/ptypes/doc/variant.objrefs.html
85
%%PORTDOCS%%share/doc/ptypes/doc/unknown.html
86
share/doc/ptypes/doc/variant.typecasts.html
86
%%PORTDOCS%%share/doc/ptypes/doc/variant.arrays.html
87
share/doc/ptypes/doc/variant.utils.html
87
%%PORTDOCS%%share/doc/ptypes/doc/variant.html
88
share/doc/ptypes/doc/wshare.html
88
%%PORTDOCS%%share/doc/ptypes/doc/variant.objrefs.html
89
share/doc/ptypes/index.html
89
%%PORTDOCS%%share/doc/ptypes/doc/variant.typecasts.html
90
%%PORTDOCS%%share/doc/ptypes/doc/variant.utils.html
91
%%PORTDOCS%%share/doc/ptypes/doc/wshare.html
92
%%PORTDOCS%%share/doc/ptypes/index.html
90
share/examples/ptypes/wshare/Makefile.Darwin
93
share/examples/ptypes/wshare/Makefile.Darwin
91
share/examples/ptypes/wshare/Makefile.FreeBSD
94
share/examples/ptypes/wshare/Makefile.FreeBSD
92
share/examples/ptypes/wshare/Makefile.Linux
95
share/examples/ptypes/wshare/Makefile.Linux
Lines 101-106 Link Here
101
share/examples/ptypes/wshare/mimetable.awk
104
share/examples/ptypes/wshare/mimetable.awk
102
share/examples/ptypes/wshare/mimetable.cxx
105
share/examples/ptypes/wshare/mimetable.cxx
103
share/examples/ptypes/wshare/mod_about.cxx
106
share/examples/ptypes/wshare/mod_about.cxx
107
share/examples/ptypes/wshare/mod_file.cxx
108
share/examples/ptypes/wshare/mod_wstat.cxx
104
share/examples/ptypes/wshare/modules.cxx
109
share/examples/ptypes/wshare/modules.cxx
105
share/examples/ptypes/wshare/modules.h
110
share/examples/ptypes/wshare/modules.h
106
share/examples/ptypes/wshare/request.cxx
111
share/examples/ptypes/wshare/request.cxx
Lines 116-121 Link Here
116
share/examples/ptypes/wshare/wshare.mak
121
share/examples/ptypes/wshare/wshare.mak
117
@dirrm share/examples/ptypes/wshare
122
@dirrm share/examples/ptypes/wshare
118
@dirrm share/examples/ptypes
123
@dirrm share/examples/ptypes
119
@dirrm share/doc/ptypes/doc
124
%%PORTDOCS%%@dirrm share/doc/ptypes/doc
120
@dirrm share/doc/ptypes
125
%%PORTDOCS%%@dirrm share/doc/ptypes
121
@dirrm include/ptypes
126
@dirrm include/ptypes

Return to bug 53704