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

Collapse All | Expand All

(-)devel/oniguruma6/distinfo (+3 lines)
Line 0 Link Here
1
TIMESTAMP = 1480711156
2
SHA256 (kkos-oniguruma-v6.1.2_GH0.tar.gz) = 0c0c63ed17d20b6063fe07d34f5df5704b1134c2de22b3ce3c08889ba6b11e17
3
SIZE (kkos-oniguruma-v6.1.2_GH0.tar.gz) = 566824
(-)devel/oniguruma6/Makefile (+44 lines)
Line 0 Link Here
1
# Created by: Akinori MUSHA aka knu <knu@idaemons.org>
2
# $FreeBSD$
3
4
PORTNAME=	oniguruma
5
PORTVERSION=	6.1.2
6
DISTVERSIONPREFIX=	v
7
CATEGORIES=	devel textproc
8
PKGNAMESUFFIX=	6
9
10
USE_GITHUB=     yes
11
GH_ACCOUNT=     kkos
12
13
MAINTAINER=	rob@theseusnetworking.com
14
COMMENT=	BSDL Regular Expressions library compatible with POSIX/GNU/Perl
15
16
LICENSE=	BSD2CLAUSE
17
LICENSE_FILE=	${WRKSRC}/COPYING
18
19
OPTIONS_DEFINE=	DOCS EXAMPLES
20
21
CONFLICTS=	oniguruma-2.*
22
23
USES=		pathfix autoreconf libtool
24
PATHFIX_MAKEFILEIN=	Makefile.am
25
GNU_CONFIGURE=	yes
26
INSTALL_TARGET=	install-strip
27
USE_LDCONFIG=	yes
28
29
post-patch:
30
	@${REINPLACE_CMD} -e \
31
		'/^INCLUDES/s|$$(includedir)|| ; \
32
		 s|$$(<)|$$(@).in|' ${WRKSRC}/Makefile.am
33
34
post-install:
35
	@${MKDIR} ${STAGEDIR}${DOCSDIR}
36
	(cd ${WRKSRC} && ${INSTALL_DATA} HISTORY README ${STAGEDIR}${DOCSDIR})
37
	(cd ${WRKSRC}/doc && ${INSTALL_DATA} * ${STAGEDIR}${DOCSDIR})
38
	@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
39
	(cd ${WRKSRC}/sample && ${INSTALL_DATA} *.c ${STAGEDIR}${EXAMPLESDIR})
40
41
do-test:
42
	(cd ${WRKSRC}/test && ${MAKE_CMD} test)
43
44
.include <bsd.port.mk>
(-)devel/oniguruma6/pkg-descr (+28 lines)
Line 0 Link Here
1
Oniguruma is a regular expressions library. The characteristics of this 
2
library is that different character encoding for every regular 
3
expression object can be specified.
4
5
Supported character encodings:
6
7
ASCII, UTF-8, UTF-16BE, UTF-16LE, UTF-32BE, UTF-32LE, EUC-JP, EUC-TW, 
8
EUC-KR, EUC-CN, Shift_JIS, Big5, GB18030, KOI8-R, CP1251, ISO-8859-1, 
9
ISO-8859-2, ISO-8859-3, ISO-8859-4, ISO-8859-5, ISO-8859-6, ISO-8859-7, 
10
ISO-8859-8, ISO-8859-9, ISO-8859-10, ISO-8859-11, ISO-8859-13, 
11
ISO-8859-14, ISO-8859-15, ISO-8859-16
12
13
GB18030: contributed by KUBO Takehiro
14
CP1251: contributed by Byte
15
New feature of version 6.1
16
17
improved doc/RE
18
NEW API: onig_scan()
19
New feature of version 6.0
20
21
Update Unicode 8.0 Property/Case-folding
22
NEW API: onig_unicode_define_user_property()
23
24
License:
25
26
BSD license.
27
28
WWW: https://github.com/kkos/oniguruma
(-)devel/oniguruma6/pkg-plist (+29 lines)
Line 0 Link Here
1
bin/onig-config
2
include/oniggnu.h
3
include/onigposix.h
4
include/oniguruma.h
5
lib/libonig.a
6
lib/libonig.so
7
lib/libonig.so.4
8
lib/libonig.so.4.0.0
9
libdata/pkgconfig/oniguruma.pc
10
%%PORTDOCS%%%%DOCSDIR%%/API
11
%%PORTDOCS%%%%DOCSDIR%%/API.ja
12
%%PORTDOCS%%%%DOCSDIR%%/FAQ
13
%%PORTDOCS%%%%DOCSDIR%%/FAQ.ja
14
%%PORTDOCS%%%%DOCSDIR%%/HISTORY
15
%%PORTDOCS%%%%DOCSDIR%%/RE
16
%%PORTDOCS%%%%DOCSDIR%%/RE.ja
17
%%PORTDOCS%%%%DOCSDIR%%/README
18
%%PORTDOCS%%%%DOCSDIR%%/UNICODE_PROPERTIES
19
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bug_fix.c
20
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/crnl.c
21
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/encode.c
22
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/listcap.c
23
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/names.c
24
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/posix.c
25
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scan.c
26
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/simple.c
27
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sql.c
28
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/syntax.c
29
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/user_property.c
(-)devel/Makefile (+1 lines)
Lines 1702-1707 Link Here
1702
    SUBDIR += omniORB-4.1
1702
    SUBDIR += omniORB-4.1
1703
    SUBDIR += oniguruma4
1703
    SUBDIR += oniguruma4
1704
    SUBDIR += oniguruma5
1704
    SUBDIR += oniguruma5
1705
    SUBDIR += oniguruma6
1705
    SUBDIR += onscripter
1706
    SUBDIR += onscripter
1706
    SUBDIR += onscripter-1byte
1707
    SUBDIR += onscripter-1byte
1707
    SUBDIR += oozie
1708
    SUBDIR += oozie

Return to bug 212715