summaryrefslogtreecommitdiff
path: root/devel/oniguruma5
diff options
context:
space:
mode:
Diffstat (limited to 'devel/oniguruma5')
-rw-r--r--devel/oniguruma5/Makefile46
-rw-r--r--devel/oniguruma5/distinfo3
-rw-r--r--devel/oniguruma5/files/onig-config54
-rw-r--r--devel/oniguruma5/pkg-descr15
-rw-r--r--devel/oniguruma5/pkg-plist28
5 files changed, 0 insertions, 146 deletions
diff --git a/devel/oniguruma5/Makefile b/devel/oniguruma5/Makefile
deleted file mode 100644
index 9d565cf7934c..000000000000
--- a/devel/oniguruma5/Makefile
+++ /dev/null
@@ -1,46 +0,0 @@
-# New ports collection makefile for: oniguruma4
-# Date created: 31 January 2003
-# Whom: Akinori MUSHA aka knu <knu@idaemons.org>
-#
-# $FreeBSD$
-#
-
-PORTNAME= oniguruma
-PORTVERSION= 4.7.1
-CATEGORIES= devel textproc
-MASTER_SITES= http://www.geocities.jp/kosako3/oniguruma/archive/
-DISTNAME= onig-${PORTVERSION}
-DIST_SUBDIR= ruby
-
-MAINTAINER= dinoex@FreeBSD.org
-COMMENT= A BSDL Regular Expressions library compatible with POSIX/GNU/Perl
-
-CONFLICTS= oniguruma-2.*
-USE_GNOME= gnometarget
-GNU_CONFIGURE= yes
-USE_LDCONFIG= yes
-DOCS= HISTORY README doc/*
-
-post-patch:
- ${REINPLACE_CMD} -e 's|echo aout|echo elf|' \
- ${WRKSRC}/configure
-
-post-configure:
- ${SED} -e 's|%%PREFIX%%|${PREFIX}|' \
- ${FILESDIR}/onig-config > ${WRKSRC}/onig-config
-
-post-install:
- ${INSTALL_SCRIPT} ${WRKSRC}/onig-config ${PREFIX}/bin/
-.if !defined(NOPORTDOCS)
- ${MKDIR} ${DOCSDIR}
-.for f in ${DOCS}
- ${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}/
-.endfor
-.endif
-.if !defined(NOPORTEXAMPLES)
- ${MKDIR} ${EXAMPLESDIR}
- ${INSTALL_DATA} ${WRKSRC}/sample/*.c ${WRKSRC}/sample/Makefile* \
- ${EXAMPLESDIR}/
-.endif
-
-.include <bsd.port.mk>
diff --git a/devel/oniguruma5/distinfo b/devel/oniguruma5/distinfo
deleted file mode 100644
index 6dbff05bb1d9..000000000000
--- a/devel/oniguruma5/distinfo
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 (ruby/onig-4.7.1.tar.gz) = fbd9c627e2d6eb78603b500a290cc37b
-SHA256 (ruby/onig-4.7.1.tar.gz) = 26cd6dc3127bbc1f65909385563628ec5c6473a4218a092cb41fb16e77c2a059
-SIZE (ruby/onig-4.7.1.tar.gz) = 571831
diff --git a/devel/oniguruma5/files/onig-config b/devel/oniguruma5/files/onig-config
deleted file mode 100644
index 5ad4f48a0b1e..000000000000
--- a/devel/oniguruma5/files/onig-config
+++ /dev/null
@@ -1,54 +0,0 @@
-#!/bin/sh
-
-prefix=%%PREFIX%%
-exec_prefix=${prefix}
-exec_prefix_set=no
-
-usage="\
-Usage: onig-config [--prefix[=DIR]] [--exec-prefix[=DIR]] [--version] [--cflags] [--libs] [--static-libs]"
-
-if test $# -eq 0; then
- echo "${usage}" 1>&2
- exit 1
-fi
-
-while test $# -gt 0; do
- case "$1" in
- -*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
- *) optarg= ;;
- esac
-
- case $1 in
- --prefix=*)
- prefix=$optarg
- if test $exec_prefix_set = no ; then
- exec_prefix=$optarg
- fi
- ;;
- --prefix)
- echo $prefix
- ;;
- --exec-prefix=*)
- exec_prefix=$optarg
- exec_prefix_set=yes
- ;;
- --exec-prefix)
- echo $exec_prefix
- ;;
- --version)
- echo 1.2.9
- ;;
- --cflags)
- echo -I${prefix}/include
- ;;
- --libs|--static-libs)
- libdirs="-L${exec_prefix}/lib -Wl,-rpath,${exec_prefix}/lib"
- echo $libdirs -lonig
- ;;
- *)
- echo "${usage}" 1>&2
- exit 1
- ;;
- esac
- shift
-done
diff --git a/devel/oniguruma5/pkg-descr b/devel/oniguruma5/pkg-descr
deleted file mode 100644
index 35c25052b79d..000000000000
--- a/devel/oniguruma5/pkg-descr
+++ /dev/null
@@ -1,15 +0,0 @@
-Oniguruma is a BSDL Regular Expression library written for ruby-m17n,
-which implements all of Perl extensions, many of .NET extensions plus
-more.
-
-It provides multiple APIs for ease of use; GNU regex compatible API,
-POSIX regex compatible API and its own.
-
-This library is multilingualized by design and can have one encoding
-for each regex object. Currently supported character encodings are
-ASCII, UTF-8, EUC-JP and Shift_JIS.
-
-4.x supports Ruby1.9.
-
-Author: K.Kosako <kosako@sofnec.co.jp>
-WWW: http://www.geocities.jp/kosako3/oniguruma/
diff --git a/devel/oniguruma5/pkg-plist b/devel/oniguruma5/pkg-plist
deleted file mode 100644
index a2c39d416452..000000000000
--- a/devel/oniguruma5/pkg-plist
+++ /dev/null
@@ -1,28 +0,0 @@
-bin/onig-config
-include/oniggnu.h
-include/onigposix.h
-include/oniguruma.h
-lib/libonig.a
-lib/libonig.la
-lib/libonig.so
-lib/libonig.so.1
-%%PORTDOCS%%%%DOCSDIR%%/API
-%%PORTDOCS%%%%DOCSDIR%%/API.ja
-%%PORTDOCS%%%%DOCSDIR%%/FAQ
-%%PORTDOCS%%%%DOCSDIR%%/FAQ.ja
-%%PORTDOCS%%%%DOCSDIR%%/HISTORY
-%%PORTDOCS%%%%DOCSDIR%%/RE
-%%PORTDOCS%%%%DOCSDIR%%/RE.ja
-%%PORTDOCS%%%%DOCSDIR%%/README
-%%PORTDOCS%%@dirrm %%DOCSDIR%%
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Makefile
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Makefile.am
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Makefile.in
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/encode.c
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/listcap.c
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/names.c
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/posix.c
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/simple.c
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sql.c
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/syntax.c
-%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%