From owner-svn-ports-head@freebsd.org Sun Apr 19 10:57:33 2020 Return-Path: Delivered-To: svn-ports-head@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 A52582C1F08; Sun, 19 Apr 2020 10:57:33 +0000 (UTC) (envelope-from dch@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 494mxn3yKfz4426; Sun, 19 Apr 2020 10:57:33 +0000 (UTC) (envelope-from dch@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 831C124A47; Sun, 19 Apr 2020 10:57:33 +0000 (UTC) (envelope-from dch@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 03JAvXgQ072357; Sun, 19 Apr 2020 10:57:33 GMT (envelope-from dch@FreeBSD.org) Received: (from dch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 03JAvWTq072348; Sun, 19 Apr 2020 10:57:32 GMT (envelope-from dch@FreeBSD.org) Message-Id: <202004191057.03JAvWTq072348@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dch set sender to dch@FreeBSD.org using -f From: Dave Cottlehuber Date: Sun, 19 Apr 2020 10:57:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r532102 - in head/games: . linux-steam-utils X-SVN-Group: ports-head X-SVN-Commit-Author: dch X-SVN-Commit-Paths: in head/games: . linux-steam-utils X-SVN-Commit-Revision: 532102 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Apr 2020 10:57:33 -0000 Author: dch Date: Sun Apr 19 10:57:31 2020 New Revision: 532102 URL: https://svnweb.freebsd.org/changeset/ports/532102 Log: games/linux-steam-utils: new port PR: 244207 Submitted by: Alex S Reviewed by: pi Differential Revision: https://reviews.freebsd.org/D24501 Added: head/games/linux-steam-utils/ head/games/linux-steam-utils/Makefile (contents, props changed) head/games/linux-steam-utils/distinfo (contents, props changed) head/games/linux-steam-utils/pkg-descr (contents, props changed) head/games/linux-steam-utils/pkg-message (contents, props changed) head/games/linux-steam-utils/pkg-plist (contents, props changed) Modified: head/games/Makefile Modified: head/games/Makefile ============================================================================== --- head/games/Makefile Sun Apr 19 10:53:03 2020 (r532101) +++ head/games/Makefile Sun Apr 19 10:57:31 2020 (r532102) @@ -510,6 +510,7 @@ SUBDIR += linux-quake4-demo SUBDIR += linux-ssamtfe SUBDIR += linux-ssamtse + SUBDIR += linux-steam-utils SUBDIR += linux-unigine-heaven SUBDIR += linux-unigine-valley SUBDIR += linux-unrealgold Added: head/games/linux-steam-utils/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/linux-steam-utils/Makefile Sun Apr 19 10:57:31 2020 (r532102) @@ -0,0 +1,37 @@ +# $FreeBSD$ + +PORTNAME= steam-utils +DISTVERSION= 20200404 +CATEGORIES= games linux +PKGNAMEPREFIX= linux- + +MAINTAINER= iwtcex@gmail.com +COMMENT= Steam launcher for FreeBSD + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +IGNORE_FreeBSD_11=not tested at all +ONLY_FOR_ARCHS= amd64 + +RUN_DEPENDS= ca_root_nss>=0:security/ca_root_nss + +USES= linux +USE_LINUX= devtools:build dbuslibs gtk2 dri nss openal-soft +USE_RUBY= yes + +RUBY_NO_BUILD_DEPENDS= yes + +USE_GITHUB= yes +GH_ACCOUNT= shkhln +GH_PROJECT= linuxulator-steam-utils + +ALL_TARGET= build +MAKE_ARGS+= PREFIX=${STAGEDIR}${PREFIX} + +post-install: +.for executable in steam steam-install + ${LN} -s ../steam-utils/bin/${executable} ${STAGEDIR}${PREFIX}/bin/${executable} +.endfor + +.include Added: head/games/linux-steam-utils/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/linux-steam-utils/distinfo Sun Apr 19 10:57:31 2020 (r532102) @@ -0,0 +1,3 @@ +TIMESTAMP = 1587292539 +SHA256 (shkhln-linuxulator-steam-utils-20200404_GH0.tar.gz) = ec06be4cced17e6cf99bbdc2843f40c9291ba05fcf4513796f8728a7cde0ee69 +SIZE (shkhln-linuxulator-steam-utils-20200404_GH0.tar.gz) = 16625 Added: head/games/linux-steam-utils/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/linux-steam-utils/pkg-descr Sun Apr 19 10:57:31 2020 (r532102) @@ -0,0 +1,3 @@ +A set of workarounds for running the Linux Steam client under FreeBSD. + +WWW: https://github.com/shkhln/linuxulator-steam-utils Added: head/games/linux-steam-utils/pkg-message ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/linux-steam-utils/pkg-message Sun Apr 19 10:57:31 2020 (r532102) @@ -0,0 +1,21 @@ +[ +{ type: install + message: <