From owner-svn-ports-all@freebsd.org Wed Oct 28 19:48:52 2020 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 86D3444F12B; Wed, 28 Oct 2020 19:48:52 +0000 (UTC) (envelope-from swills@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) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 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 4CLzfD32Llz4VqR; Wed, 28 Oct 2020 19:48:52 +0000 (UTC) (envelope-from swills@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 4B46C215BA; Wed, 28 Oct 2020 19:48:52 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 09SJmqSA088292; Wed, 28 Oct 2020 19:48:52 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 09SJmpWS088287; Wed, 28 Oct 2020 19:48:51 GMT (envelope-from swills@FreeBSD.org) Message-Id: <202010281948.09SJmpWS088287@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Wed, 28 Oct 2020 19:48:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r553561 - in head/devel: . sd-mux sd-mux/files X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: in head/devel: . sd-mux sd-mux/files X-SVN-Commit-Revision: 553561 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.33 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: Wed, 28 Oct 2020 19:48:52 -0000 Author: swills Date: Wed Oct 28 19:48:50 2020 New Revision: 553561 URL: https://svnweb.freebsd.org/changeset/ports/553561 Log: devel/sd-mux: create port Utility for controlling sd-mux and sd-wire WWW: https://wiki.tizen.org/SDWire WWW: https://git.tizen.org/cgit/tools/testlab/sd-mux/ Added: head/devel/sd-mux/ head/devel/sd-mux/Makefile (contents, props changed) head/devel/sd-mux/distinfo (contents, props changed) head/devel/sd-mux/files/ head/devel/sd-mux/files/patch-src_CMakeLists.txt (contents, props changed) head/devel/sd-mux/pkg-descr (contents, props changed) Modified: head/devel/Makefile (contents, props changed) Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Wed Oct 28 19:12:31 2020 (r553560) +++ head/devel/Makefile Wed Oct 28 19:48:50 2020 (r553561) @@ -6614,6 +6614,7 @@ SUBDIR += scandoc SUBDIR += sccache SUBDIR += scons + SUBDIR += sd-mux SUBDIR += sdl12 SUBDIR += sdl20 SUBDIR += sdl2pp Added: head/devel/sd-mux/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/sd-mux/Makefile Wed Oct 28 19:48:50 2020 (r553561) @@ -0,0 +1,23 @@ +# $FreeBSD$ + +PORTNAME= sd-mux +PORTVERSION= g20201028 +CATEGORIES= devel +MASTER_SITES= LOCAL/swills +DISTNAME= sd-mux-20201028 + +MAINTAINER= swills@FreeBSD.org +COMMENT= Utility for controlling sd-mux and sd-wire + +LIB_DEPENDS= libftdi1.so:devel/libftdi1 \ + libpopt.so:devel/popt + +USES= cmake pkgconfig + +PLIST_FILES= bin/sd-mux-ctrl \ + man/man1/sd-mux-ctrl.1.gz + +post-install: + ${INSTALL_MAN} ${WRKSRC}/doc/man/sd-mux-ctrl.1 ${STAGEDIR}${MAN1PREFIX}/man/man1 + +.include Added: head/devel/sd-mux/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/sd-mux/distinfo Wed Oct 28 19:48:50 2020 (r553561) @@ -0,0 +1,3 @@ +TIMESTAMP = 1603909993 +SHA256 (sd-mux-20201028.tar.gz) = 87210ff15bb8f31df78b78061f2842c184dba4498f6bbb88db8522aff684b92c +SIZE (sd-mux-20201028.tar.gz) = 753375 Added: head/devel/sd-mux/files/patch-src_CMakeLists.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/sd-mux/files/patch-src_CMakeLists.txt Wed Oct 28 19:48:50 2020 (r553561) @@ -0,0 +1,12 @@ +--- src/CMakeLists.txt.orig 2020-02-17 16:20:18 UTC ++++ src/CMakeLists.txt +@@ -37,6 +37,9 @@ INCLUDE_DIRECTORIES( + ${FTD2XX_PATH} + ) + ++SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -I${SDMUX_DEP_popt_INCLUDEDIR}") ++SET(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -L${SDMUX_DEP_popt_LIBDIR}") ++ + ADD_EXECUTABLE(${TARGET_SDMUXCTRL} ${SDMUXCTRL_SOURCES}) + + TARGET_LINK_LIBRARIES(${TARGET_SDMUXCTRL} Added: head/devel/sd-mux/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/sd-mux/pkg-descr Wed Oct 28 19:48:50 2020 (r553561) @@ -0,0 +1,4 @@ +Utility for controlling sd-mux and sd-wire + +WWW: https://wiki.tizen.org/SDWire +WWW: https://git.tizen.org/cgit/tools/testlab/sd-mux/