From owner-svn-ports-all@freebsd.org Thu Nov 21 00:54:44 2019 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 7BD9B1C7991; Thu, 21 Nov 2019 00:54:44 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47JLgS2pxqz4cdr; Thu, 21 Nov 2019 00:54:44 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 440173327; Thu, 21 Nov 2019 00:54:44 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id xAL0siQN081411; Thu, 21 Nov 2019 00:54:44 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id xAL0sh8P081404; Thu, 21 Nov 2019 00:54:43 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201911210054.xAL0sh8P081404@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Thu, 21 Nov 2019 00:54:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r518070 - in head/multimedia: . wlrobs X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: in head/multimedia: . wlrobs X-SVN-Commit-Revision: 518070 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Nov 2019 00:54:44 -0000 Author: jbeich Date: Thu Nov 21 00:54:43 2019 New Revision: 518070 URL: https://svnweb.freebsd.org/changeset/ports/518070 Log: multimedia/wlrobs: add new port wlrobs is an obs-studio plugin that allows you to screen capture on wlroots-based Wayland compositors. https://hg.sr.ht/~scoopta/wlrobs Added: head/multimedia/wlrobs/ head/multimedia/wlrobs/Makefile (contents, props changed) head/multimedia/wlrobs/distinfo (contents, props changed) head/multimedia/wlrobs/pkg-descr (contents, props changed) Modified: head/multimedia/Makefile (contents, props changed) Modified: head/multimedia/Makefile ============================================================================== --- head/multimedia/Makefile Thu Nov 21 00:54:37 2019 (r518069) +++ head/multimedia/Makefile Thu Nov 21 00:54:43 2019 (r518070) @@ -453,6 +453,7 @@ SUBDIR += wf-recorder SUBDIR += win32-codecs SUBDIR += winff + SUBDIR += wlrobs SUBDIR += x264 SUBDIR += x265 SUBDIR += xanim Added: head/multimedia/wlrobs/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/wlrobs/Makefile Thu Nov 21 00:54:43 2019 (r518070) @@ -0,0 +1,36 @@ +# $FreeBSD$ + +PORTNAME= wlrobs +PORTVERSION= s20191120 +DISTVERSIONSUFFIX= -8b4656a90bc7 +CATEGORIES= multimedia +MASTER_SITES= https://hg.sr.ht/~scoopta/${PORTNAME}/archive/${DISTVERSIONSUFFIX:S/^-//}${EXTRACT_SUFX}?dummy=/ +MASTER_SITES+= LOCAL/jbeich # https://todo.sr.ht/~sircmpwn/hg.sr.ht/33 +DISTNAME= ${PORTNAME}${DISTVERSIONSUFFIX} + +MAINTAINER= jbeich@FreeBSD.org +COMMENT= Wayland screen capture plugin for obs-studio + +BUILD_DEPENDS= ${LOCALBASE}/include/obs/obs-module.h:multimedia/obs-studio +LIB_DEPENDS= libwayland-client.so:graphics/wayland + +USES= compiler:c11 gmake localbase:ldflags +WRKSRC_SUBDIR= Release +MAKEFILE= makefile +DATADIR= ${PREFIX}/lib/obs-plugins +PORTDATA= ${PORTNAME}.so + +post-patch: + @${REINPLACE_CMD} -e 's/ -O3//' \ + -e '/-shared/!s/gcc/$$(CC) $$(CFLAGS)/' \ + -e '/-shared/s/gcc/$$(CC) $$(LDFLAGS)/' \ + ${WRKSRC}/makefile \ + ${WRKSRC}/proto/subdir.mk \ + ${WRKSRC}/src/subdir.mk + +do-install: + ${MKDIR} ${STAGEDIR}${DATADIR} + ${INSTALL_LIB} ${WRKSRC}/lib${PORTNAME}.so \ + ${STAGEDIR}${DATADIR}/${PORTNAME}.so + +.include Added: head/multimedia/wlrobs/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/wlrobs/distinfo Thu Nov 21 00:54:43 2019 (r518070) @@ -0,0 +1,3 @@ +TIMESTAMP = 1574287498 +SHA256 (wlrobs-8b4656a90bc7.tar.gz) = eb8ffbfc80c2b6e6888e401d0a222e694fc8fc4a6ac3948cca0bae2acc136dc1 +SIZE (wlrobs-8b4656a90bc7.tar.gz) = 22963 Added: head/multimedia/wlrobs/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/wlrobs/pkg-descr Thu Nov 21 00:54:43 2019 (r518070) @@ -0,0 +1,4 @@ +wlrobs is an obs-studio plugin that allows you to screen capture on +wlroots-based Wayland compositors. + +WWW: https://hg.sr.ht/~scoopta/wlrobs