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

Collapse All | Expand All

(-)devel/Makefile (+1 lines)
Lines 1634-1639 Link Here
1634
    SUBDIR += omniORB-4.1
1634
    SUBDIR += omniORB-4.1
1635
    SUBDIR += oniguruma4
1635
    SUBDIR += oniguruma4
1636
    SUBDIR += oniguruma5
1636
    SUBDIR += oniguruma5
1637
    SUBDIR += oniguruma6
1637
    SUBDIR += onscripter
1638
    SUBDIR += onscripter
1638
    SUBDIR += onscripter-1byte
1639
    SUBDIR += onscripter-1byte
1639
    SUBDIR += oozie
1640
    SUBDIR += oozie
(-)devel/oniguruma6/Makefile (+49 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.1
6
DISTVERSIONPREFIX=	v
7
PORTREVISION=	1
8
CATEGORIES=	devel textproc
9
PKGNAMESUFFIX=	6
10
DISTNAME=	onig-${PORTVERSION}
11
DIST_SUBDIR=	ruby
12
13
USE_GITHUB=     yes
14
GH_ACCOUNT=     kkos
15
GH_PROJECT=     oniguruma
16
GH_TAGNAME=     v6.1.1
17
18
19
MAINTAINER=	rob@theseusnetworking.com
20
COMMENT=	BSDL Regular Expressions library compatible with POSIX/GNU/Perl
21
22
LICENSE=	BSD2CLAUSE
23
LICENSE_FILE=	${WRKSRC}/COPYING
24
25
OPTIONS_DEFINE=	DOCS EXAMPLES
26
27
CONFLICTS=	oniguruma-2.*
28
29
USES=		pathfix autoreconf libtool
30
PATHFIX_MAKEFILEIN=	Makefile.am
31
GNU_CONFIGURE=	yes
32
INSTALL_TARGET=	install-strip
33
USE_LDCONFIG=	yes
34
35
.include <bsd.port.options.mk>
36
37
post-patch:
38
	@${REINPLACE_CMD} -e \
39
		'/^INCLUDES/s|$$(includedir)|| ; \
40
		 s|$$(<)|$$(@).in|' ${WRKSRC}/Makefile.am
41
42
post-install:
43
	@${MKDIR} ${STAGEDIR}${DOCSDIR}
44
	(cd ${WRKSRC} && ${INSTALL_DATA} HISTORY README ${STAGEDIR}${DOCSDIR})
45
	(cd ${WRKSRC}/doc && ${INSTALL_DATA} * ${STAGEDIR}${DOCSDIR})
46
	@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
47
	(cd ${WRKSRC}/sample && ${INSTALL_DATA} *.c ${STAGEDIR}${EXAMPLESDIR})
48
49
.include <bsd.port.mk>
(-)devel/oniguruma6/distinfo (+4 lines)
Line 0 Link Here
1
TIMESTAMP = 1473948948
2
SHA256 (ruby/onig-6.1.1_GH0.tar.gz) = a6b16d57f027f9804a4aebe38222ae796e7104a9c51afbbc4a15182f8604e720
3
SIZE (ruby/onig-6.1.1_GH0.tar.gz) = 566225
4
(-)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

Return to bug 212715