git: 69b262908326 - main - devel/boehm-gc-redirect: Remove port

From: Yasuhiro Kimura <yasu_at_FreeBSD.org>
Date: Mon, 29 Aug 2022 06:50:55 UTC
The branch main has been updated by yasu:

URL: https://cgit.FreeBSD.org/ports/commit/?id=69b26290832651ec6e3fc480619d604f311e10c9

commit 69b26290832651ec6e3fc480619d604f311e10c9
Author:     Yasuhiro Kimura <yasu@FreeBSD.org>
AuthorDate: 2022-08-29 06:41:43 +0000
Commit:     Yasuhiro Kimura <yasu@FreeBSD.org>
CommitDate: 2022-08-29 06:49:09 +0000

    devel/boehm-gc-redirect: Remove port
    
    There is no consumer in ports tree.
---
 MOVED                             |  1 +
 devel/Makefile                    |  1 -
 devel/boehm-gc-redirect/Makefile  |  8 --------
 devel/boehm-gc-redirect/pkg-descr | 19 -------------------
 devel/boehm-gc/Makefile           |  4 ----
 5 files changed, 1 insertion(+), 32 deletions(-)

diff --git a/MOVED b/MOVED
index 263c99a2c32e..8a89cd405a91 100644
--- a/MOVED
+++ b/MOVED
@@ -17540,3 +17540,4 @@ print/py-pdf2|print/py-pypdf2|2022-08-27|Rename to match upstream naming
 textproc/py-Chameleon|textproc/py-chameleon|2022-08-27|Rename to match upstream naming
 print/py-pdf|print/py-pypdf|2022-08-27|Rename to match upstream naming
 shells/ksh93-devel|shells/ksh-devel|2022-08-28|Development has resumed under a new GH account
+devel/boehm-gc-redirect||2022-08-29|No consumer in ports tree
diff --git a/devel/Makefile b/devel/Makefile
index a90e485f7477..f40922e78074 100644
--- a/devel/Makefile
+++ b/devel/Makefile
@@ -283,7 +283,6 @@
     SUBDIR += bmkdep
     SUBDIR += bnf
     SUBDIR += boehm-gc
-    SUBDIR += boehm-gc-redirect
     SUBDIR += boehm-gc-threaded
     SUBDIR += boost-all
     SUBDIR += boost-docs
diff --git a/devel/boehm-gc-redirect/Makefile b/devel/boehm-gc-redirect/Makefile
deleted file mode 100644
index 6a2039800e2e..000000000000
--- a/devel/boehm-gc-redirect/Makefile
+++ /dev/null
@@ -1,8 +0,0 @@
-COMMENT=	Garbage collection and memory leak detection for C and C++ with malloc redirection
-
-MASTERDIR=	${.CURDIR}/../boehm-gc
-DESCR=		${.CURDIR}/pkg-descr
-
-GC_VARIANT=	redirect
-
-.include "${MASTERDIR}/Makefile"
diff --git a/devel/boehm-gc-redirect/pkg-descr b/devel/boehm-gc-redirect/pkg-descr
deleted file mode 100644
index cb6a98e24e38..000000000000
--- a/devel/boehm-gc-redirect/pkg-descr
+++ /dev/null
@@ -1,19 +0,0 @@
-The Boehm-Weiser garbage collection package, for C and C++ -
-garbage collection and memory leak detection libraries.
-
-A garbage collector is something which automatically frees malloc'd
-memory for you by working out what parts of memory your program
-no longer has pointers to.  As a result, garbage collectors can also
-inform you of memory leaks (if they find memory they can free, it means
-you have lost all of your pointers to it, but you didn't free it).
-
-C programs may be linked against either of these, and should run (with
-GC or leak detection) without change.  C++ programs must include a header
-to use garbage collection, though leak detection should work without
-such source code modifications.  See the man page and header files.
-
-This package only brings Boehm-GC libraries with malloc redirection.
-
-ps: garbage collection is addictive.
-
-WWW: https://www.hboehm.info/gc/
diff --git a/devel/boehm-gc/Makefile b/devel/boehm-gc/Makefile
index 86444937a8c7..8fa836564389 100644
--- a/devel/boehm-gc/Makefile
+++ b/devel/boehm-gc/Makefile
@@ -62,10 +62,6 @@ PLIST_FILES=		${CORDLIBS:S,^,lib/lib,:S,$,-${GC_VARIANT}.a,} \
 			${GCTBALIBS:S,^,lib/lib,:S,$,-${GC_VARIANT}.so.1.5.0,} \
 			libdata/pkgconfig/bdw-gc-${GC_VARIANT}.pc
 RUN_DEPENDS+=		${LOCALBASE}/include/gc/gc.h:devel/boehm-gc
-. if ${GC_VARIANT} == "redirect"
-CONFIGURE_ARGS+=	--disable-threads \
-			--enable-redirect-malloc
-. endif
 . if ${GC_VARIANT} == "threaded"
 CONFIGURE_ARGS+=	--disable-redirect-malloc \
 			--enable-threads=posix