Commit 0bca3ab2 authored by Daniel Engberg's avatar Daniel Engberg
Browse files

multimedia/nymphcast: Remove from tree

Listed as broken for more than 6 months
parent 5ae682c0
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -5355,3 +5355,4 @@ sysutils/docker|sysutils/docker-cli|2026-06-18|Reflect its actual content
multimedia/dvbcut||2026-06-19|Broken for more than 6 months and upstream is dead
games/cgoban||2026-06-19|Broken for more than a year and upstream is dead
games/valyriatear||2026-06-19|Broken for more than a year and upstream is dead
multimedia/nymphcast||2026-06-19|Broken for more than 6 months
+0 −1
Original line number Diff line number Diff line
@@ -252,7 +252,6 @@
    SUBDIR += navidrome
    SUBDIR += neolink
    SUBDIR += nostt
    SUBDIR += nymphcast
    SUBDIR += nymphcastlib
    SUBDIR += nymphrpc
    SUBDIR += obs-multi-rtmp

multimedia/nymphcast/Makefile

deleted100644 → 0
+0 −37
Original line number Diff line number Diff line
PORTNAME=	NymphCast
DISTVERSION=	v0.1
PORTREVISION=	7
CATEGORIES=	multimedia

MAINTAINER=	adridg@FreeBSD.org
COMMENT=	Audio and video source for a television or powered speakers
WWW=		http://nyanko.ws/nymphcast.php

BROKEN=		Does not build with ffmpeg > 6

# The LICENSE_FILE lives outside the top-of-the-tree because
# WRKSRC_SUBDIR is set.
LICENSE=	BSD3CLAUSE
LICENSE_FILE=	${WRKSRC}/../../LICENSE

BUILD_DEPENDS=	rapidjson>=0:devel/rapidjson
LIB_DEPENDS=	libnymphrpc.so:multimedia/nymphrpc \
		libnymphcast.so:multimedia/nymphcastlib \
		libasound.so:audio/alsa-lib \
		libPocoFoundation.so:devel/poco \
		libcurl.so:ftp/curl \
		libfreeimage.so:graphics/freeimage \
		libavutil.so:multimedia/ffmpeg \
		libvlccore.so:multimedia/vlc \
		libfreetype.so:print/freetype2

USES=		compiler:c++17-lang gl gmake pkgconfig sdl
USE_GL=		gl
USE_SDL=	sdl2 image2

USE_GITHUB=	yes
GH_ACCOUNT=	MayaPosch

WRKSRC_SUBDIR=	src/server

.include <bsd.port.mk>

multimedia/nymphcast/distinfo

deleted100644 → 0
+0 −3
Original line number Diff line number Diff line
TIMESTAMP = 1650830483
SHA256 (MayaPosch-NymphCast-v0.1_GH0.tar.gz) = 434669fb336f63c15a755e2b23cef8a7753f62285f18792795226073abbc3f47
SIZE (MayaPosch-NymphCast-v0.1_GH0.tar.gz) = 124186102
+0 −57
Original line number Diff line number Diff line
--- Makefile.orig	2022-03-15 23:26:07 UTC
+++ Makefile
@@ -9,15 +9,15 @@ TARGET := $(PLATFORM)
 CROSSC := 1
 else
 # Get the compiler's (GCC or Clang) target triplet and use that as platform.
-TARGET := $(shell g++ -dumpmachine)
+# TARGET := $(shell g++ -dumpmachine)
 endif
 
 ifdef TOOLCHAIN
 #include Makefile.$(TARGET)
 include toolchain/$(TOOLCHAIN).mk
 else
-GPP = g++
-GCC = gcc
+GPP = c++
+GCC = cc
 STRIP = strip
 MAKEDIR = mkdir -p
 RM = rm
@@ -56,7 +56,7 @@ endif
 LIB := -lnymphrpc -lPocoUtil -lPocoNet -lPocoNetSSL -lPocoJSON -lPocoData -lPocoDataSQLite \
 		-lPocoFoundation -lswscale -lavcodec -lavdevice -lavformat -lavutil -lpostproc \
 		-lswresample -lavfilter -lSDL2_image -Langelscript/angelscript/lib-$(TARGET) -langelscript \
-		-lstdc++fs -lfreetype \
+		-lfreetype \
 			 -lcurl -lfreeimage \
 			-lnymphcast -lPocoNet -lPocoUtil -lPocoFoundation
 			# -lvlc
@@ -95,7 +95,7 @@ ifdef OS
 	LDFLAGS += -lws2_32 -lopengl32 -lwinmm -lole32
 	OUTPUT := $(OUTPUT).exe
 else
-	LDFLAGS += -pthread -latomic -lGL -lasound
+	LDFLAGS += -pthread -lGL -lasound
 endif
 
 # Check which version of OpenGL or OpenGL ES to use.
@@ -178,7 +178,7 @@ makedir:
 	$(MAKEDIR) bin/$(TARGET)
 	
 angelscript:
-	make -C angelscript/angelscript/projects/gnuc/ static
+	$(MAKE) -C angelscript/angelscript/projects/gnuc/ static
 	
 gui: $(GUI_OBJECTS)
 
@@ -199,7 +199,7 @@ clean-objects:
 	$(RM) $(OBJECTS) $(C_OBJECTS)
 	
 clean-angelscript:
-	make -C angelscript/angelscript/projects/gnuc/ clean
+	$(MAKE) -C angelscript/angelscript/projects/gnuc/ clean
 	
 clean-gui:
 	$(RM) $(GUI_OBJECTS)
Loading