Remove devel/oniguruma4

Details:
- No longer maintained upstream
- Superseded by devel/oniguruma6
- No longer any in-tree dependencies

PR:		222867
Reported by:	m.bueker@berlin.de
This commit is contained in:
Thomas Zander 2017-11-12 12:33:11 +00:00
parent 6a00060775
commit fe1e8be18c
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=454034
6 changed files with 1 additions and 142 deletions

1
MOVED
View file

@ -9621,3 +9621,4 @@ devel/pinba_engine||2017-11-11|Has expired: Broken for more than 6 months
devel/py-event||2017-11-11|Has expired: Broken for more than 6 months
databases/glom||2017-11-11|Has expired: Broken for more than 6 months
math/bargraph||2017-11-11|Has expired: Unfetchable for more than six months (google code has gone away)
devel/oniguruma4|devel/oniguruma6|2017-11-12|Upstream no longer maintained, superseded by devel/oniguruma6

View file

@ -1,46 +0,0 @@
# Created by: Akinori MUSHA aka knu <knu@idaemons.org>
# $FreeBSD$
PORTNAME= oniguruma
PORTVERSION= 4.7.1
PORTREVISION= 1
CATEGORIES= devel textproc
MASTER_SITES= http://mirror.jaredwhiting.net/distfiles/ruby/
DISTNAME= onig-${PORTVERSION}
DIST_SUBDIR= ruby
MAINTAINER= ports@FreeBSD.org
COMMENT= BSDL Regular Expressions library compatible with POSIX/GNU/Perl
LICENSE= BSD2CLAUSE
LICENSE_FILE= ${WRKSRC}/COPYING
USES= libtool
CONFLICTS_INSTALL= oniguruma[56]
GNU_CONFIGURE= yes
USE_LDCONFIG= yes
INSTALL_TARGET= install-strip
DOCS= HISTORY README doc/*
DEPRECATED= Upstream no longer maintained, superseded by devel/oniguruma6
EXPIRATION_DATE=2017-11-12
PKGNAMESUFFIX= 4
OPTIONS_DEFINE= DOCS EXAMPLES
post-configure:
@${SED} -e 's|%%PREFIX%%|${PREFIX}|' \
${FILESDIR}/onig-config > ${WRKSRC}/onig-config
post-install:
${INSTALL_SCRIPT} ${WRKSRC}/onig-config ${STAGEDIR}${PREFIX}/bin/
${MKDIR} ${STAGEDIR}${DOCSDIR}
.for f in ${DOCS}
${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR}/
.endfor
${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
${INSTALL_DATA} ${WRKSRC}/sample/*.c ${WRKSRC}/sample/Makefile* \
${STAGEDIR}${EXAMPLESDIR}/
.include <bsd.port.mk>

View file

@ -1,2 +0,0 @@
SHA256 (ruby/onig-4.7.1.tar.gz) = 26cd6dc3127bbc1f65909385563628ec5c6473a4218a092cb41fb16e77c2a059
SIZE (ruby/onig-4.7.1.tar.gz) = 571831

View file

@ -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

View file

@ -1,14 +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.
WWW: http://www.geocities.jp/kosako3/oniguruma/

View file

@ -1,26 +0,0 @@
bin/onig-config
include/oniggnu.h
include/onigposix.h
include/oniguruma.h
lib/libonig.a
lib/libonig.so
lib/libonig.so.1
lib/libonig.so.1.0.0
%%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
%%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