Commit c19abfc1 authored by Rene Ladan's avatar Rene Ladan
Browse files

cleanup: Remove expired ports:

2022-12-31 devel/unittest-cpp: Upstream have declared hiatus status since 2+ years back. Please consider using devel/googletest instead
parent fdb010a8
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -17719,3 +17719,4 @@ comms/hylafax||2022-12-31|Has expired: dead upstream, someone port hylafax+ from
comms/tkhylafax||2022-12-31|Has expired: Depends on expired comms/hylafax
lang/ponyc||2022-12-31|Has expired: Very outdated and unsupported upstream, depends on end of life devel/llvm70
www/varnish4|www/varnish6|2022-12-31|Has expired: End of life upstream, users are recommended to upgrade to 6.x or higher
devel/unittest-cpp||2022-12-31|Has expired: Upstream have declared hiatus status since 2+ years back. Please consider using devel/googletest instead
+0 −1
Original line number Diff line number Diff line
@@ -7416,7 +7416,6 @@
    SUBDIR += umbrello
    SUBDIR += umlgraph
    SUBDIR += unibilium
    SUBDIR += unittest-cpp
    SUBDIR += universal-ctags
    SUBDIR += upnp
    SUBDIR += upp

devel/unittest-cpp/Makefile

deleted100644 → 0
+0 −20
Original line number Diff line number Diff line
PORTNAME=	unittest-cpp
PORTVERSION=	2.0.0
DISTVERSIONPREFIX=	v
CATEGORIES=	devel

MAINTAINER=	iblis@hs.ntnu.edu.tw
COMMENT=	Lightweight unit testing framework for C++
WWW=		https://github.com/unittest-cpp/unittest-cpp

LICENSE=	MIT
LICENSE_FILE=	${WRKSRC}/LICENSE

DEPRECATED=	Upstream have declared hiatus status since 2+ years back. Please consider using devel/googletest instead
EXPIRATION_DATE=2022-12-31

USE_GITHUB=	yes

USES=		cmake

.include <bsd.port.mk>

devel/unittest-cpp/distinfo

deleted100644 → 0
+0 −3
Original line number Diff line number Diff line
TIMESTAMP = 1484404298
SHA256 (unittest-cpp-unittest-cpp-v2.0.0_GH0.tar.gz) = 74852198877dc2fdebdc4e5e9bd074018bf8ee03a13de139bfe41f4585b2f5b9
SIZE (unittest-cpp-unittest-cpp-v2.0.0_GH0.tar.gz) = 54100
+0 −14
Original line number Diff line number Diff line
--- CMakeLists.txt.orig	2017-01-14 14:55:56 UTC
+++ CMakeLists.txt
@@ -106,5 +106,10 @@ set(exec_prefix ${CMAKE_INSTALL_PREFIX}/
 set(libdir      ${CMAKE_INSTALL_PREFIX}/lib)
 set(includedir  ${CMAKE_INSTALL_PREFIX}/include/UnitTest++)
 configure_file("UnitTest++.pc.in" "UnitTest++.pc" @ONLY)
+if(${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD")
+    set(pkgconfdir  ${CMAKE_INSTALL_PREFIX}/libdata/pkgconfig)
+else()
+    set(pkgconfdir  ${CMAKE_INSTALL_PREFIX}/lib/pkgconfig)
+endif()
 install(FILES       "${CMAKE_CURRENT_BINARY_DIR}/UnitTest++.pc"
-        DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/pkgconfig")
+        DESTINATION "${pkgconfdir}")
Loading