Index: head/devel/oniguruma/files/BSDmakefile =================================================================== --- head/devel/oniguruma/files/BSDmakefile (revision 100467) +++ head/devel/oniguruma/files/BSDmakefile (nonexistent) @@ -1,19 +0,0 @@ -# $FreeBSD$ - -LIB= onig -SHLIB_MAJOR?= 0 -SHLIB_MINOR?= 0 -CFLAGS+= -DHAVE_CONFIG_H -DNOT_RUBY -SRCS= regerror.o regcomp.o regexec.o reggnu.o \ - regposix.o regposerr.o regparse.o -INCS= onigposix.h \ - oniguruma.h -NOMAN= YES -LIBDIR= ${LOCALBASE}/lib -INCSDIR= ${LOCALBASE}/include/onig -INCDIR= ${INCSDIR} # for pre-bsd.incs.mk API - -beforeinstall: - mkdir -p ${INCSDIR} - -.include Property changes on: head/devel/oniguruma/files/BSDmakefile ___________________________________________________________________ Deleted: cvs2svn:cvs-rev ## -1 +0,0 ## -1.4 \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Index: head/devel/oniguruma/files/patch-ruby-dev-21973 =================================================================== --- head/devel/oniguruma/files/patch-ruby-dev-21973 (revision 100467) +++ head/devel/oniguruma/files/patch-ruby-dev-21973 (nonexistent) @@ -1,82 +0,0 @@ -Taken from: [ruby-dev:21973] - -Index: regparse.c -=================================================================== ---- regparse.c (.../ags/oniguruma/1.9.5) (revision 245) -+++ regparse.c (.../runk/oniguruma) (revision 245) -@@ -833,6 +833,10 @@ - e->back_refs = (int* )NULL; - } - } -+ if (IS_NOT_NULL(t->e)) { -+ xfree(t->e); -+ t->e = NULL; -+ } - t->num = 0; - } - return 0; -@@ -3611,6 +3615,7 @@ - enum CCVALTYPE val_type, in_type; - int val_israw, in_israw; - -+ prev_cc = (CClassNode* )NULL; - *np = NULL_NODE; - r = fetch_token_in_cc(tok, src, end, env); - if (r == TK_BYTE && tok->u.c == '^') { -@@ -3633,7 +3638,6 @@ - *np = node = node_new_cclass(); - CHECK_NULL_RETURN_VAL(node, REGERR_MEMORY); - cc = &(NCCLASS(node)); -- prev_cc = (CClassNode* )NULL; - - and_start = 0; - state = CCS_START; -@@ -3810,6 +3814,7 @@ - if (IS_NOT_NULL(prev_cc)) { - r = and_cclass(prev_cc, cc); - if (r != 0) goto err; -+ bbuf_free(cc->mbuf); - } - else { - prev_cc = cc; -@@ -3846,6 +3851,7 @@ - if (IS_NOT_NULL(prev_cc)) { - r = and_cclass(prev_cc, cc); - if (r != 0) goto err; -+ bbuf_free(cc->mbuf); - cc = prev_cc; - } - -@@ -3864,6 +3870,8 @@ - return 0; - - err: -+ if (cc != &(NCCLASS(*np))) -+ bbuf_free(cc->mbuf); - regex_node_free(*np); - return r; - } -@@ -4490,7 +4498,10 @@ - - *top = NULL; - r = parse_branch(&node, tok, term, src, end, env); -- if (r < 0) return r; -+ if (r < 0) { -+ regex_node_free(node); -+ return r; -+ } - - if (r == term) { - *top = node; -Index: regcomp.c -=================================================================== ---- regcomp.c (.../ags/oniguruma/1.9.5) (revision 245) -+++ regcomp.c (.../runk/oniguruma) (revision 245) -@@ -3675,6 +3675,7 @@ - } - else { - len = mblen(code, *p); -+ if (i + len > OPT_EXACT_MAXLEN) break; - for (j = 0; j < len; j++) - to->s[i++] = *p++; - } Property changes on: head/devel/oniguruma/files/patch-ruby-dev-21973 ___________________________________________________________________ Deleted: cvs2svn:cvs-rev ## -1 +0,0 ## -1.1 \ No newline at end of property Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Index: head/devel/oniguruma/Makefile =================================================================== --- head/devel/oniguruma/Makefile (revision 100467) +++ head/devel/oniguruma/Makefile (revision 100468) @@ -1,47 +1,35 @@ # New ports collection makefile for: Oniguruma # Date created: 31 January 2003 # Whom: Akinori MUSHA aka knu # # $FreeBSD$ # PORTNAME= oniguruma -PORTVERSION= 1.9.5 -PORTREVISION= 1 +PORTVERSION= 2.1.0 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_RUBY} MASTER_SITE_SUBDIR= contrib -DISTNAME= onigd20031112 +DISTNAME= onigd20040202 DIST_SUBDIR= ruby MAINTAINER= knu@FreeBSD.org COMMENT= A BSDL Regular Expressions library compatible with POSIX/GNU/Perl WRKSRC= ${WRKDIR}/${PORTNAME} GNU_CONFIGURE= yes -MAKEFILE= BSDmakefile -MAKE_ARGS= NOPROFILE=true INSTALLS_SHLIB= yes DOCS= HISTORY README doc/* -.include - -.if ${OSVERSION} > 502000 -BROKEN= "Does not compile" -.endif - -pre-build: - ${CP} ${FILESDIR}/${MAKEFILE} ${WRKSRC}/ - post-install: .if !defined(NOPORTDOCS) ${MKDIR} ${EXAMPLESDIR} ${INSTALL_DATA} ${WRKSRC}/sample/* ${EXAMPLESDIR}/ ${MKDIR} ${DOCSDIR} .for f in ${DOCS} ${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}/ .endfor .endif -.include +.include Property changes on: head/devel/oniguruma/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.18 \ No newline at end of property +1.19 \ No newline at end of property Index: head/devel/oniguruma/distinfo =================================================================== --- head/devel/oniguruma/distinfo (revision 100467) +++ head/devel/oniguruma/distinfo (revision 100468) @@ -1 +1 @@ -MD5 (ruby/onigd20031112.tar.gz) = e0eff399310ce45a8a449791d1141804 +MD5 (ruby/onigd20040202.tar.gz) = e93c9691fe700a2dd4e6fc5c56ff85bf Property changes on: head/devel/oniguruma/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.14 \ No newline at end of property +1.15 \ No newline at end of property Index: head/devel/oniguruma/pkg-plist =================================================================== --- head/devel/oniguruma/pkg-plist (revision 100467) +++ head/devel/oniguruma/pkg-plist (revision 100468) @@ -1,18 +1,16 @@ -include/onig/onigposix.h -include/onig/oniguruma.h -@dirrm include/onig +include/onigposix.h +include/oniguruma.h lib/libonig.a -lib/libonig.so -lib/libonig.so.0 %%PORTDOCS%%%%DOCSDIR%%/API %%PORTDOCS%%%%DOCSDIR%%/HISTORY %%PORTDOCS%%%%DOCSDIR%%/RE %%PORTDOCS%%%%DOCSDIR%%/RE.ja %%PORTDOCS%%%%DOCSDIR%%/README %%PORTDOCS%%@dirrm %%DOCSDIR%% +%%PORTDOCS%%%%EXAMPLESDIR%%/encode.c %%PORTDOCS%%%%EXAMPLESDIR%%/listcap.c %%PORTDOCS%%%%EXAMPLESDIR%%/names.c %%PORTDOCS%%%%EXAMPLESDIR%%/posix.c %%PORTDOCS%%%%EXAMPLESDIR%%/simple.c %%PORTDOCS%%%%EXAMPLESDIR%%/sql.c %%PORTDOCS%%@dirrm %%EXAMPLESDIR%% Property changes on: head/devel/oniguruma/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.8 \ No newline at end of property +1.9 \ No newline at end of property Index: head/devel/oniguruma4/files/BSDmakefile =================================================================== --- head/devel/oniguruma4/files/BSDmakefile (revision 100467) +++ head/devel/oniguruma4/files/BSDmakefile (nonexistent) @@ -1,19 +0,0 @@ -# $FreeBSD$ - -LIB= onig -SHLIB_MAJOR?= 0 -SHLIB_MINOR?= 0 -CFLAGS+= -DHAVE_CONFIG_H -DNOT_RUBY -SRCS= regerror.o regcomp.o regexec.o reggnu.o \ - regposix.o regposerr.o regparse.o -INCS= onigposix.h \ - oniguruma.h -NOMAN= YES -LIBDIR= ${LOCALBASE}/lib -INCSDIR= ${LOCALBASE}/include/onig -INCDIR= ${INCSDIR} # for pre-bsd.incs.mk API - -beforeinstall: - mkdir -p ${INCSDIR} - -.include Property changes on: head/devel/oniguruma4/files/BSDmakefile ___________________________________________________________________ Deleted: cvs2svn:cvs-rev ## -1 +0,0 ## -1.4 \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Index: head/devel/oniguruma4/files/patch-ruby-dev-21973 =================================================================== --- head/devel/oniguruma4/files/patch-ruby-dev-21973 (revision 100467) +++ head/devel/oniguruma4/files/patch-ruby-dev-21973 (nonexistent) @@ -1,82 +0,0 @@ -Taken from: [ruby-dev:21973] - -Index: regparse.c -=================================================================== ---- regparse.c (.../ags/oniguruma/1.9.5) (revision 245) -+++ regparse.c (.../runk/oniguruma) (revision 245) -@@ -833,6 +833,10 @@ - e->back_refs = (int* )NULL; - } - } -+ if (IS_NOT_NULL(t->e)) { -+ xfree(t->e); -+ t->e = NULL; -+ } - t->num = 0; - } - return 0; -@@ -3611,6 +3615,7 @@ - enum CCVALTYPE val_type, in_type; - int val_israw, in_israw; - -+ prev_cc = (CClassNode* )NULL; - *np = NULL_NODE; - r = fetch_token_in_cc(tok, src, end, env); - if (r == TK_BYTE && tok->u.c == '^') { -@@ -3633,7 +3638,6 @@ - *np = node = node_new_cclass(); - CHECK_NULL_RETURN_VAL(node, REGERR_MEMORY); - cc = &(NCCLASS(node)); -- prev_cc = (CClassNode* )NULL; - - and_start = 0; - state = CCS_START; -@@ -3810,6 +3814,7 @@ - if (IS_NOT_NULL(prev_cc)) { - r = and_cclass(prev_cc, cc); - if (r != 0) goto err; -+ bbuf_free(cc->mbuf); - } - else { - prev_cc = cc; -@@ -3846,6 +3851,7 @@ - if (IS_NOT_NULL(prev_cc)) { - r = and_cclass(prev_cc, cc); - if (r != 0) goto err; -+ bbuf_free(cc->mbuf); - cc = prev_cc; - } - -@@ -3864,6 +3870,8 @@ - return 0; - - err: -+ if (cc != &(NCCLASS(*np))) -+ bbuf_free(cc->mbuf); - regex_node_free(*np); - return r; - } -@@ -4490,7 +4498,10 @@ - - *top = NULL; - r = parse_branch(&node, tok, term, src, end, env); -- if (r < 0) return r; -+ if (r < 0) { -+ regex_node_free(node); -+ return r; -+ } - - if (r == term) { - *top = node; -Index: regcomp.c -=================================================================== ---- regcomp.c (.../ags/oniguruma/1.9.5) (revision 245) -+++ regcomp.c (.../runk/oniguruma) (revision 245) -@@ -3675,6 +3675,7 @@ - } - else { - len = mblen(code, *p); -+ if (i + len > OPT_EXACT_MAXLEN) break; - for (j = 0; j < len; j++) - to->s[i++] = *p++; - } Property changes on: head/devel/oniguruma4/files/patch-ruby-dev-21973 ___________________________________________________________________ Deleted: cvs2svn:cvs-rev ## -1 +0,0 ## -1.1 \ No newline at end of property Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Index: head/devel/oniguruma4/Makefile =================================================================== --- head/devel/oniguruma4/Makefile (revision 100467) +++ head/devel/oniguruma4/Makefile (revision 100468) @@ -1,47 +1,35 @@ # New ports collection makefile for: Oniguruma # Date created: 31 January 2003 # Whom: Akinori MUSHA aka knu # # $FreeBSD$ # PORTNAME= oniguruma -PORTVERSION= 1.9.5 -PORTREVISION= 1 +PORTVERSION= 2.1.0 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_RUBY} MASTER_SITE_SUBDIR= contrib -DISTNAME= onigd20031112 +DISTNAME= onigd20040202 DIST_SUBDIR= ruby MAINTAINER= knu@FreeBSD.org COMMENT= A BSDL Regular Expressions library compatible with POSIX/GNU/Perl WRKSRC= ${WRKDIR}/${PORTNAME} GNU_CONFIGURE= yes -MAKEFILE= BSDmakefile -MAKE_ARGS= NOPROFILE=true INSTALLS_SHLIB= yes DOCS= HISTORY README doc/* -.include - -.if ${OSVERSION} > 502000 -BROKEN= "Does not compile" -.endif - -pre-build: - ${CP} ${FILESDIR}/${MAKEFILE} ${WRKSRC}/ - post-install: .if !defined(NOPORTDOCS) ${MKDIR} ${EXAMPLESDIR} ${INSTALL_DATA} ${WRKSRC}/sample/* ${EXAMPLESDIR}/ ${MKDIR} ${DOCSDIR} .for f in ${DOCS} ${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}/ .endfor .endif -.include +.include Property changes on: head/devel/oniguruma4/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.18 \ No newline at end of property +1.19 \ No newline at end of property Index: head/devel/oniguruma4/distinfo =================================================================== --- head/devel/oniguruma4/distinfo (revision 100467) +++ head/devel/oniguruma4/distinfo (revision 100468) @@ -1 +1 @@ -MD5 (ruby/onigd20031112.tar.gz) = e0eff399310ce45a8a449791d1141804 +MD5 (ruby/onigd20040202.tar.gz) = e93c9691fe700a2dd4e6fc5c56ff85bf Property changes on: head/devel/oniguruma4/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.14 \ No newline at end of property +1.15 \ No newline at end of property Index: head/devel/oniguruma4/pkg-plist =================================================================== --- head/devel/oniguruma4/pkg-plist (revision 100467) +++ head/devel/oniguruma4/pkg-plist (revision 100468) @@ -1,18 +1,16 @@ -include/onig/onigposix.h -include/onig/oniguruma.h -@dirrm include/onig +include/onigposix.h +include/oniguruma.h lib/libonig.a -lib/libonig.so -lib/libonig.so.0 %%PORTDOCS%%%%DOCSDIR%%/API %%PORTDOCS%%%%DOCSDIR%%/HISTORY %%PORTDOCS%%%%DOCSDIR%%/RE %%PORTDOCS%%%%DOCSDIR%%/RE.ja %%PORTDOCS%%%%DOCSDIR%%/README %%PORTDOCS%%@dirrm %%DOCSDIR%% +%%PORTDOCS%%%%EXAMPLESDIR%%/encode.c %%PORTDOCS%%%%EXAMPLESDIR%%/listcap.c %%PORTDOCS%%%%EXAMPLESDIR%%/names.c %%PORTDOCS%%%%EXAMPLESDIR%%/posix.c %%PORTDOCS%%%%EXAMPLESDIR%%/simple.c %%PORTDOCS%%%%EXAMPLESDIR%%/sql.c %%PORTDOCS%%@dirrm %%EXAMPLESDIR%% Property changes on: head/devel/oniguruma4/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.8 \ No newline at end of property +1.9 \ No newline at end of property Index: head/devel/oniguruma5/files/BSDmakefile =================================================================== --- head/devel/oniguruma5/files/BSDmakefile (revision 100467) +++ head/devel/oniguruma5/files/BSDmakefile (nonexistent) @@ -1,19 +0,0 @@ -# $FreeBSD$ - -LIB= onig -SHLIB_MAJOR?= 0 -SHLIB_MINOR?= 0 -CFLAGS+= -DHAVE_CONFIG_H -DNOT_RUBY -SRCS= regerror.o regcomp.o regexec.o reggnu.o \ - regposix.o regposerr.o regparse.o -INCS= onigposix.h \ - oniguruma.h -NOMAN= YES -LIBDIR= ${LOCALBASE}/lib -INCSDIR= ${LOCALBASE}/include/onig -INCDIR= ${INCSDIR} # for pre-bsd.incs.mk API - -beforeinstall: - mkdir -p ${INCSDIR} - -.include Property changes on: head/devel/oniguruma5/files/BSDmakefile ___________________________________________________________________ Deleted: cvs2svn:cvs-rev ## -1 +0,0 ## -1.4 \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Index: head/devel/oniguruma5/files/patch-ruby-dev-21973 =================================================================== --- head/devel/oniguruma5/files/patch-ruby-dev-21973 (revision 100467) +++ head/devel/oniguruma5/files/patch-ruby-dev-21973 (nonexistent) @@ -1,82 +0,0 @@ -Taken from: [ruby-dev:21973] - -Index: regparse.c -=================================================================== ---- regparse.c (.../ags/oniguruma/1.9.5) (revision 245) -+++ regparse.c (.../runk/oniguruma) (revision 245) -@@ -833,6 +833,10 @@ - e->back_refs = (int* )NULL; - } - } -+ if (IS_NOT_NULL(t->e)) { -+ xfree(t->e); -+ t->e = NULL; -+ } - t->num = 0; - } - return 0; -@@ -3611,6 +3615,7 @@ - enum CCVALTYPE val_type, in_type; - int val_israw, in_israw; - -+ prev_cc = (CClassNode* )NULL; - *np = NULL_NODE; - r = fetch_token_in_cc(tok, src, end, env); - if (r == TK_BYTE && tok->u.c == '^') { -@@ -3633,7 +3638,6 @@ - *np = node = node_new_cclass(); - CHECK_NULL_RETURN_VAL(node, REGERR_MEMORY); - cc = &(NCCLASS(node)); -- prev_cc = (CClassNode* )NULL; - - and_start = 0; - state = CCS_START; -@@ -3810,6 +3814,7 @@ - if (IS_NOT_NULL(prev_cc)) { - r = and_cclass(prev_cc, cc); - if (r != 0) goto err; -+ bbuf_free(cc->mbuf); - } - else { - prev_cc = cc; -@@ -3846,6 +3851,7 @@ - if (IS_NOT_NULL(prev_cc)) { - r = and_cclass(prev_cc, cc); - if (r != 0) goto err; -+ bbuf_free(cc->mbuf); - cc = prev_cc; - } - -@@ -3864,6 +3870,8 @@ - return 0; - - err: -+ if (cc != &(NCCLASS(*np))) -+ bbuf_free(cc->mbuf); - regex_node_free(*np); - return r; - } -@@ -4490,7 +4498,10 @@ - - *top = NULL; - r = parse_branch(&node, tok, term, src, end, env); -- if (r < 0) return r; -+ if (r < 0) { -+ regex_node_free(node); -+ return r; -+ } - - if (r == term) { - *top = node; -Index: regcomp.c -=================================================================== ---- regcomp.c (.../ags/oniguruma/1.9.5) (revision 245) -+++ regcomp.c (.../runk/oniguruma) (revision 245) -@@ -3675,6 +3675,7 @@ - } - else { - len = mblen(code, *p); -+ if (i + len > OPT_EXACT_MAXLEN) break; - for (j = 0; j < len; j++) - to->s[i++] = *p++; - } Property changes on: head/devel/oniguruma5/files/patch-ruby-dev-21973 ___________________________________________________________________ Deleted: cvs2svn:cvs-rev ## -1 +0,0 ## -1.1 \ No newline at end of property Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Index: head/devel/oniguruma5/Makefile =================================================================== --- head/devel/oniguruma5/Makefile (revision 100467) +++ head/devel/oniguruma5/Makefile (revision 100468) @@ -1,47 +1,35 @@ # New ports collection makefile for: Oniguruma # Date created: 31 January 2003 # Whom: Akinori MUSHA aka knu # # $FreeBSD$ # PORTNAME= oniguruma -PORTVERSION= 1.9.5 -PORTREVISION= 1 +PORTVERSION= 2.1.0 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_RUBY} MASTER_SITE_SUBDIR= contrib -DISTNAME= onigd20031112 +DISTNAME= onigd20040202 DIST_SUBDIR= ruby MAINTAINER= knu@FreeBSD.org COMMENT= A BSDL Regular Expressions library compatible with POSIX/GNU/Perl WRKSRC= ${WRKDIR}/${PORTNAME} GNU_CONFIGURE= yes -MAKEFILE= BSDmakefile -MAKE_ARGS= NOPROFILE=true INSTALLS_SHLIB= yes DOCS= HISTORY README doc/* -.include - -.if ${OSVERSION} > 502000 -BROKEN= "Does not compile" -.endif - -pre-build: - ${CP} ${FILESDIR}/${MAKEFILE} ${WRKSRC}/ - post-install: .if !defined(NOPORTDOCS) ${MKDIR} ${EXAMPLESDIR} ${INSTALL_DATA} ${WRKSRC}/sample/* ${EXAMPLESDIR}/ ${MKDIR} ${DOCSDIR} .for f in ${DOCS} ${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}/ .endfor .endif -.include +.include Property changes on: head/devel/oniguruma5/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.18 \ No newline at end of property +1.19 \ No newline at end of property Index: head/devel/oniguruma5/distinfo =================================================================== --- head/devel/oniguruma5/distinfo (revision 100467) +++ head/devel/oniguruma5/distinfo (revision 100468) @@ -1 +1 @@ -MD5 (ruby/onigd20031112.tar.gz) = e0eff399310ce45a8a449791d1141804 +MD5 (ruby/onigd20040202.tar.gz) = e93c9691fe700a2dd4e6fc5c56ff85bf Property changes on: head/devel/oniguruma5/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.14 \ No newline at end of property +1.15 \ No newline at end of property Index: head/devel/oniguruma5/pkg-plist =================================================================== --- head/devel/oniguruma5/pkg-plist (revision 100467) +++ head/devel/oniguruma5/pkg-plist (revision 100468) @@ -1,18 +1,16 @@ -include/onig/onigposix.h -include/onig/oniguruma.h -@dirrm include/onig +include/onigposix.h +include/oniguruma.h lib/libonig.a -lib/libonig.so -lib/libonig.so.0 %%PORTDOCS%%%%DOCSDIR%%/API %%PORTDOCS%%%%DOCSDIR%%/HISTORY %%PORTDOCS%%%%DOCSDIR%%/RE %%PORTDOCS%%%%DOCSDIR%%/RE.ja %%PORTDOCS%%%%DOCSDIR%%/README %%PORTDOCS%%@dirrm %%DOCSDIR%% +%%PORTDOCS%%%%EXAMPLESDIR%%/encode.c %%PORTDOCS%%%%EXAMPLESDIR%%/listcap.c %%PORTDOCS%%%%EXAMPLESDIR%%/names.c %%PORTDOCS%%%%EXAMPLESDIR%%/posix.c %%PORTDOCS%%%%EXAMPLESDIR%%/simple.c %%PORTDOCS%%%%EXAMPLESDIR%%/sql.c %%PORTDOCS%%@dirrm %%EXAMPLESDIR%% Property changes on: head/devel/oniguruma5/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.8 \ No newline at end of property +1.9 \ No newline at end of property