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

multimedia/obs-qtwebkit: Remove expired port

2023-06-16 multimedia/obs-qtwebkit: OBS ships with their own browser plugin from version 25 onwards
parent 0622751d
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -7639,3 +7639,4 @@ audio/hvl2wav|audio/ocp|2023-06-10|Has expired: Abandoned upstream, use audio/oc
x11/thinglaunch|x11/thingylaunch|2023-06-10|Has expired: Abandonware, please use x11/thingylaunch instead
sysutils/intel-nvmupdate|sysutils/intel-nvmupdate-40g|2023-06-14|Moved to sysutils/intel-nvmupdate-40g, which is 40G-generation specific port to make space for 10G and 100G generations
sysutils/intel-qcu|sysutils/intel-epct|2023-06-14|Moved to sysutils/intel-epct
multimedia/obs-qtwebkit||2023-06-16|Has expired: OBS ships with their own browser plugin from version 25 onwards
+0 −1
Original line number Diff line number Diff line
@@ -256,7 +256,6 @@
    SUBDIR += nymphcast
    SUBDIR += nymphcastlib
    SUBDIR += nymphrpc
    SUBDIR += obs-qtwebkit
    SUBDIR += obs-recursion-effect
    SUBDIR += obs-scrab
    SUBDIR += obs-streamfx

multimedia/obs-qtwebkit/Makefile

deleted100644 → 0
+0 −39
Original line number Diff line number Diff line
PORTNAME=	obs-qtwebkit
PORTVERSION=	g2018090201
PORTREVISION=	6
CATEGORIES=	multimedia

MAINTAINER=	bofh@FreeBSD.org
COMMENT=	Browser source plugin for obs-studio
WWW=		https://github.com/swills/obs-qtwebkit

LICENSE=	GPLv2
LICENSE_FILE=	${WRKSRC}/LICENSE

DEPRECATED=		OBS ships with their own browser plugin from version 25 onwards
EXPIRATION_DATE=	2023-06-16

LIB_DEPENDS=	libobs.so:multimedia/obs-studio \
		libinotify.so:devel/libinotify

USES=		compiler:c++11-lang gmake pkgconfig qt:5
USE_QT=		core gui network webkit widgets

USE_GITHUB=	yes
GH_ACCOUNT=	swills
GH_TAGNAME=	c01aa76
MAKEFILE=	GNUmakefile
MAKE_ARGS=	OBS_INCLUDE=${LOCALBASE}/include OBS_LIB=${LOCALBASE}/lib

post-patch:
	@${REINPLACE_CMD} -e 's,%%LOCALBASE%%,${LOCALBASE},g' ${WRKSRC}/GNUmakefile

do-install:
	@${MKDIR} ${STAGEDIR}${PREFIX}/lib/obs-plugins/
	@${MKDIR} ${STAGEDIR}${PREFIX}/share/obs/obs-plugins/qtwebkit-browser/data/locale
	${INSTALL_PROGRAM} ${WRKSRC}/build/qtwebkit-browser.so ${STAGEDIR}${PREFIX}/lib/obs-plugins/
	${INSTALL_PROGRAM} ${WRKSRC}/build/renderer ${STAGEDIR}${PREFIX}/lib/obs-plugins/
	cd ${WRKSRC}/build/qtwebkit-browser/data/locale ; ${COPYTREE_SHARE} . \
		${STAGEDIR}${PREFIX}/share/obs/obs-plugins/qtwebkit-browser/data/locale

.include <bsd.port.mk>

multimedia/obs-qtwebkit/distinfo

deleted100644 → 0
+0 −3
Original line number Diff line number Diff line
TIMESTAMP = 1535926470
SHA256 (swills-obs-qtwebkit-g2018090201-c01aa76_GH0.tar.gz) = cd73bb03b7a5bc6f5524a3c9e70f5bc44c0fe58179ddf86034887f3c72c88300
SIZE (swills-obs-qtwebkit-g2018090201-c01aa76_GH0.tar.gz) = 14629
+0 −15
Original line number Diff line number Diff line
Temporary, see:

https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=231108

--- GNUmakefile.orig	2018-09-02 22:04:19 UTC
+++ GNUmakefile
@@ -5,7 +5,7 @@ ifndef OBS_LIB
 OBS_LIB = /usr/lib
 endif
 
-CXXFLAGS = -std=c++11 -Wall -g -fPIC -I$(OBS_INCLUDE) -I./src $(shell pkg-config --cflags Qt5Widgets) $(shell pkg-config --cflags Qt5WebKit) $(shell pkg-config --cflags Qt5WebKitWidgets)
+CXXFLAGS += -std=c++11 -Wall -g -fPIC -I$(OBS_INCLUDE) -I./src $(shell pkg-config --cflags Qt5Widgets) $(shell pkg-config --cflags Qt5WebKit) -I%%LOCALBASE%%/include/qt5/QtWebKitWidgets
 CXX      ?= c++
 RM       = /bin/rm -rf
 LDFLAGS  = -L$(OBS_LIB)
Loading