Commit e675c36b authored by baptiste daroussin's avatar baptiste daroussin
Browse files

devel/pcre++: delete port

Unmaintained, unused, and depends on devel/pcre which is EOLed
upstream since 2021
parent f35cf3de
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -3033,3 +3033,4 @@ www/cgichk||2024-02-29|Has expired: Deprecated utility that checks a list of URL
www/nibbleblog||2024-02-29|Has expired: Upstream WWW redirects to a different CMS software
chinese/phpbb-tw||2024-02-29|Has expired: Last upstream was released in 2008 use chinese/phpbb3
www/phpbb||2024-02-29|Has expired: Last upstream was released in 2008 use www/phpbb3
devel/pcre++||2024-02-29|Unused in the ports tree depends on pcre which is EOLed since 2021
+0 −1
Original line number Diff line number Diff line
@@ -3892,7 +3892,6 @@
    SUBDIR += pcg-cpp
    SUBDIR += pcl
    SUBDIR += pcre
    SUBDIR += pcre++
    SUBDIR += pcre2
    SUBDIR += pcsc-cyberjack
    SUBDIR += pcsc-lite

devel/pcre++/Makefile

deleted100644 → 0
+0 −42
Original line number Diff line number Diff line
PORTNAME=	pcre++
PORTVERSION=	0.9.5
PORTREVISION=	6
CATEGORIES=	devel
MASTER_SITES=	http://www.daemon.de/idisk/Apps/pcre++/

MAINTAINER=	ports@FreeBSD.org
COMMENT=	Wrapper class around the pcre library
WWW=		https://www.daemon.de/PCRE

LICENSE=	LGPL21

LIB_DEPENDS=	libpcre.so:devel/pcre

USES=		gmake libtool
GNU_CONFIGURE=	yes
GNU_CONFIGURE_MANPREFIX=${PREFIX}/share
USE_LDCONFIG=	yes

CPPFLAGS+=	$$(${PCRE_CONFIG} --cflags)
LDFLAGS+=	$$(${PCRE_CONFIG} --libs)

DOCSDIR=	${PREFIX}/share/doc/lib${PORTNAME}-${PORTVERSION}

PCRE_CONFIG?=	${LOCALBASE}/bin/pcre-config

OPTIONS_DEFINE=	DOCS

post-patch:
	@${REINPLACE_CMD} -e \
		's| ../COPYING|| ; \
		 s| $$(prefix)/doc| $${DESTDIR}$$(prefix)/share/doc|' \
		${WRKSRC}/doc/Makefile.in
.for i in examples/Makefile.in libpcre++/Makefile.in test/Makefile.in
	@${REINPLACE_CMD} -e \
		's|-O -g|@CXXFLAGS@|' ${WRKSRC}/${i}
.endfor

post-install:
	@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libpcre++.so.0

.include <bsd.port.mk>

devel/pcre++/distinfo

deleted100644 → 0
+0 −2
Original line number Diff line number Diff line
SHA256 (pcre++-0.9.5.tar.gz) = 77ee9fc1afe142e4ba2726416239ced66c3add4295ab1e5ed37ca8a9e7bb638a
SIZE (pcre++-0.9.5.tar.gz) = 381589
+0 −15
Original line number Diff line number Diff line
--- libpcre++/pcre++.h.orig
+++ libpcre++/pcre++.h
@@ -47,11 +47,11 @@
 #include <map>
 #include <stdexcept>
 #include <iostream>
+#include <clocale>
 
 
 extern "C" {
   #include <pcre.h>
-  #include <locale.h>
 }
 
 namespace pcrepp {
Loading