Commit c0d89bb1 authored by Muhammad Moinur Rahman's avatar Muhammad Moinur Rahman
Browse files

multimedia/fxtv: Remove expired port

2023-12-31 multimedia/fxtv: Requires defunct bktr
parent 3de19db2
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -8247,3 +8247,4 @@ audio/mp3splt-gtk||2023-12-31|Has expired: BROKEN on all supported versions for
audio/mp3info||2023-12-31|Has expired: Last release in 2006 and lacks support for ID3v2
comms/uartlirc||2023-12-31|Has expired: BROKEN on all supported versions for more than 2 years after the EOL of 12
comms/mlan3||2023-12-31|Has expired: BROKEN on all supported versions for more than 2 years after the EOL of 12
multimedia/fxtv||2023-12-31|Has expired: Requires defunct bktr
+0 −1
Original line number Diff line number Diff line
@@ -69,7 +69,6 @@
    SUBDIR += flvstreamer
    SUBDIR += flvtool++
    SUBDIR += fswebcam
    SUBDIR += fxtv
    SUBDIR += gaupol
    SUBDIR += gavl
    SUBDIR += gdialog

multimedia/fxtv/Makefile

deleted100644 → 0
+0 −43
Original line number Diff line number Diff line
PORTNAME=	fxtv
PORTVERSION=	1.03
PORTREVISION=	14
CATEGORIES=	multimedia
MASTER_SITES=	LOCAL/sanpei

MAINTAINER=	ports@FreeBSD.org
COMMENT=	X11-based TV display and capture application (for use with bt848 driver)
WWW=		https://people.freebsd.org/~rhh/fxtv/

LICENSE=	BSD2CLAUSE

DEPRECATED=	Requires defunct bktr
EXPIRATION_DATE=2023-12-31
.if !exists(/usr/include/dev/bktr/ioctl_bt848.h)
IGNORE=		needs bktr(4) which is no longer available on your FreeBSD version
.endif
ONLY_FOR_ARCHS=	amd64 i386

LIB_DEPENDS=	libtiff.so:graphics/tiff \
		libXaw3d.so:x11-toolkits/Xaw3d

USES=		gmake jpeg tar:tgz xorg
USE_XORG=	ice sm x11 xaw xext xmu xt xpm xxf86vm xxf86dga

MAKE_ENV=	X11BASE=${LOCALBASE}
MAKE_FLAGS=	-e

OPTIONS_DEFINE=	EXTRA

EXTRA_DESC=	Extra programs required to record/playback/save

# This program does not actually require the programs below unless you
# use audio/video recording and/or playback and save to a non-raw format.
EXTRA_RUN_DEPENDS=	sox:audio/sox \
			mpg123:audio/mpg123 \
			mpeg_encode:multimedia/mpeg_encode \
			mplex:multimedia/mplex

pre-install:
	@${CP} -p ${WRKSRC}/fxtv.1 ${WRKSRC}/fxtv.man

.include <bsd.port.mk>

multimedia/fxtv/distinfo

deleted100644 → 0
+0 −2
Original line number Diff line number Diff line
SHA256 (fxtv-1.03.tgz) = 17e256afe895b2294cdaeb6fe8461d8869cc458687a4ea8895f8b16b5e85cc82
SIZE (fxtv-1.03.tgz) = 198669
+0 −38
Original line number Diff line number Diff line
--- Makefile.orig	2001-02-12 22:08:59 UTC
+++ Makefile
@@ -62,7 +62,7 @@ endif
 ifneq ($(DEBUG),NO)
   override CFLAGS          = -DDEBUG -g
 else
-  override CFLAGS          = -DNDEBUG -O2
+  override CFLAGS          += -DNDEBUG #-O2
 endif
 C_WARN_FLAG                = -Wall
 override CFLAGS           += $(C_WARN_FLAG) $(INC) $(CF_VERS)
@@ -116,15 +116,17 @@ $(VIDEOLIB_LIB) :
 tv.o : tv.c app_rsrc.h
 
 install : fxtv
-	mkdir -p $(FXTV_LIBDIR)/bitmaps
-	install -c -m 444 -o root $(PIXMAPS) $(FXTV_LIBDIR)/bitmaps
-	install -c -m 444 -o root README $(FXTV_LIBDIR)
-	mkdir -p $(X11BASEINST)/lib/X11/app-defaults
-	install -c -m 444 -o root Fxtv $(X11BASEINST)/lib/X11/app-defaults
-	mkdir -p $(X11BASEINST)/bin
-	install -c -m 444 -o root fxtv.1 $(X11BASEINST)/man/man1/fxtv.1
-	install -c -m 555 -o root fxtv $(X11BASEINST)/bin
-	install -c -m 555 -o root fxtv_cnvt.sh $(FXTV_LIBDIR)
+	mkdir -p $(DESTDIR)$(FXTV_LIBDIR)/bitmaps
+	$(BSD_INSTALL_DATA) $(PIXMAPS) $(DESTDIR)$(FXTV_LIBDIR)/bitmaps
+	$(BSD_INSTALL_DATA) README $(DESTDIR)$(FXTV_LIBDIR)
+	mkdir -p $(DESTDIR)$(X11BASEINST)/lib/X11/app-defaults
+	$(BSD_INSTALL_DATA) Fxtv \
+		$(DESTDIR)$(X11BASEINST)/lib/X11/app-defaults
+	mkdir -p $(DESTDIR)$(X11BASEINST)/bin
+	$(BSD_INSTALL_MAN) fxtv.1 \
+		$(DESTDIR)$(X11BASEINST)/man/man1/fxtv.1
+	$(BSD_INSTALL_PROGRAM) fxtv $(DESTDIR)$(X11BASEINST)/bin
+	$(BSD_INSTALL_SCRIPT) fxtv_cnvt.sh $(DESTDIR)$(FXTV_LIBDIR)
 
 clean:
 	rm -f *.o fxtv *.core *~
Loading