diff options
author | jkoshy <jkoshy@FreeBSD.org> | 2006-08-03 19:01:55 +0800 |
---|---|---|
committer | jkoshy <jkoshy@FreeBSD.org> | 2006-08-03 19:01:55 +0800 |
commit | e03ec6bbb936db79ceda7af490796cfce7ec8563 (patch) | |
tree | e13d924a63daac9dcc5f9dad8d65e432e4fd881d | |
parent | 92d1a17f7989b93a01b102a611d7bbca451e50a0 (diff) | |
download | freebsd-ports-gnome-e03ec6bbb936db79ceda7af490796cfce7ec8563.tar.gz freebsd-ports-gnome-e03ec6bbb936db79ceda7af490796cfce7ec8563.tar.zst freebsd-ports-gnome-e03ec6bbb936db79ceda7af490796cfce7ec8563.zip |
Remove a duplicate port; I hadn't noticed that it was already
present as "textproc/libtre".
Submitted by: Nicolas Rachinsky <nicolas-0 at ml.turing-complete.org>
-rw-r--r-- | devel/Makefile | 1 | ||||
-rw-r--r-- | devel/tre/Makefile | 35 | ||||
-rw-r--r-- | devel/tre/distinfo | 3 | ||||
-rw-r--r-- | devel/tre/files/patch-Makefile.in | 11 | ||||
-rw-r--r-- | devel/tre/files/patch-tests_Makefile.in | 11 | ||||
-rw-r--r-- | devel/tre/pkg-descr | 15 | ||||
-rw-r--r-- | devel/tre/pkg-plist | 10 |
7 files changed, 0 insertions, 86 deletions
diff --git a/devel/Makefile b/devel/Makefile index 31bdcf25e2c8..761a0d220570 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -1882,7 +1882,6 @@ SUBDIR += towitoko SUBDIR += tpasm SUBDIR += tpg - SUBDIR += tre SUBDIR += trio SUBDIR += tvision SUBDIR += uclmmbase diff --git a/devel/tre/Makefile b/devel/tre/Makefile deleted file mode 100644 index 89798896b06a..000000000000 --- a/devel/tre/Makefile +++ /dev/null @@ -1,35 +0,0 @@ -# New ports collection makefile for: tre -# Date created: 2006-07-31 -# Whom: Joseph Koshy <jkoshy@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= tre -PORTVERSION= 0.7.4 -CATEGORIES= devel -MASTER_SITES= http://laurikari.net/tre/ - -MAINTAINER= jkoshy@FreeBSD.org -COMMENT= A lightweight, robust, efficient regexp matching library - -USE_LDCONFIG= yes -USE_BZIP2= yes -GNU_CONFIGURE= yes -CONFIGURE_ARGS+= --program-prefix="" --enable-system-abi -USE_AUTOTOOLS= libtool:15 - -OPTIONS= AGREP "Build agrep(1)" on - -.include <bsd.port.pre.mk> - -.if defined(WITH_AGREP) -MAN1= agrep.1 -PLIST_SUB+= AGREP="" -CONFLICTS= glimpse-4.* -.else -PLIST_SUB+= AGREP="@comment " -CONFIGURE_ARGS+= --disable-agrep -.endif - -.include <bsd.port.post.mk> diff --git a/devel/tre/distinfo b/devel/tre/distinfo deleted file mode 100644 index 342389b62cbe..000000000000 --- a/devel/tre/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (tre-0.7.4.tar.bz2) = 8b4bfb078f2cc9e01f37d3d251672f75 -SHA256 (tre-0.7.4.tar.bz2) = 0d55b4bc0a9594c433f2657de9bf4610a1553776f42d317a065929d1c4e91f66 -SIZE (tre-0.7.4.tar.bz2) = 387358 diff --git a/devel/tre/files/patch-Makefile.in b/devel/tre/files/patch-Makefile.in deleted file mode 100644 index 55f74b7849de..000000000000 --- a/devel/tre/files/patch-Makefile.in +++ /dev/null @@ -1,11 +0,0 @@ ---- Makefile.in.orig Sun May 21 19:51:30 2006 -+++ Makefile.in Wed Aug 2 16:14:50 2006 -@@ -236,7 +236,7 @@ - - ACLOCAL_AMFLAGS = -I m4 -I gnulib/m4 - AC_CONFIG_AUX_DIR = utils --pkgconfigdir = $(libdir)/pkgconfig -+pkgconfigdir = $(PREFIX)/libdata/pkgconfig - pkgconfig_DATA = tre.pc - all: config.h - $(MAKE) $(AM_MAKEFLAGS) all-recursive diff --git a/devel/tre/files/patch-tests_Makefile.in b/devel/tre/files/patch-tests_Makefile.in deleted file mode 100644 index 4393d0276bf4..000000000000 --- a/devel/tre/files/patch-tests_Makefile.in +++ /dev/null @@ -1,11 +0,0 @@ ---- tests/Makefile.in.orig Sun May 21 19:51:44 2006 -+++ tests/Makefile.in Wed Aug 2 16:31:05 2006 -@@ -82,7 +82,7 @@ - libxtre_la_OBJECTS = $(am_libxtre_la_OBJECTS) - @TRE_DEBUG_FALSE@am_libxtre_la_rpath = - am_bench_OBJECTS = bench.$(OBJEXT) --bench_OBJECTS = $(am_bench_OBJECTS) -+bench_OBJECTS = $(am_bench_OBJECTS) ../gnulib/lib/getopt.o - am__DEPENDENCIES_1 = - am__DEPENDENCIES_2 = $(am__DEPENDENCIES_1) - bench_DEPENDENCIES = ../lib/libtre.la $(am__DEPENDENCIES_2) diff --git a/devel/tre/pkg-descr b/devel/tre/pkg-descr deleted file mode 100644 index 151d828f75a6..000000000000 --- a/devel/tre/pkg-descr +++ /dev/null @@ -1,15 +0,0 @@ -TRE is a lightweight, robust, and efficient POSIX compliant regexp -matching library supporting: - - approximate (fuzzy) matching, - - strict standards conformance, - - predicable and modest memory consumption, - - wide-character and multibyte character support, - - binary pattern and data support, - - thread-safe implementation. - -At the core of TRE is a new algorithm for regular expression matching -with submatch addressing. The algorithm uses linear worst-case time -in the length of the text being searched, and quadratic worst-case -time in the length of the used regular expression. - -WWW: http://laurikari.net/tre/ diff --git a/devel/tre/pkg-plist b/devel/tre/pkg-plist deleted file mode 100644 index a0d8f83fc83a..000000000000 --- a/devel/tre/pkg-plist +++ /dev/null @@ -1,10 +0,0 @@ -@comment $FreeBSD$ -%%AGREP%%bin/agrep -include/tre/regex.h -include/tre/tre-config.h -lib/libtre.a -lib/libtre.la -lib/libtre.so -lib/libtre.so.6 -libdata/pkgconfig/tre.pc -@dirrm include/tre |