From owner-svn-ports-all@freebsd.org Thu Jul 27 06:56:10 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3F82FDC3825; Thu, 27 Jul 2017 06:56:10 +0000 (UTC) (envelope-from araujo@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 mx1.freebsd.org (Postfix) with ESMTPS id 1B9F569E2E; Thu, 27 Jul 2017 06:56:10 +0000 (UTC) (envelope-from araujo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v6R6u9Hd028954; Thu, 27 Jul 2017 06:56:09 GMT (envelope-from araujo@FreeBSD.org) Received: (from araujo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v6R6u8wf028950; Thu, 27 Jul 2017 06:56:08 GMT (envelope-from araujo@FreeBSD.org) Message-Id: <201707270656.v6R6u8wf028950@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: araujo set sender to araujo@FreeBSD.org using -f From: Marcelo Araujo Date: Thu, 27 Jul 2017 06:56:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r446716 - in head/devel: . libhyve-remote X-SVN-Group: ports-head X-SVN-Commit-Author: araujo X-SVN-Commit-Paths: in head/devel: . libhyve-remote X-SVN-Commit-Revision: 446716 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.23 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, 27 Jul 2017 06:56:10 -0000 Author: araujo Date: Thu Jul 27 06:56:08 2017 New Revision: 446716 URL: https://svnweb.freebsd.org/changeset/ports/446716 Log: The libhyve-remote aims to abstract functionalities from other third party libraries such like libvncserver, freerdp and spice to be used in hypervisor implementation. With a basic data structure it is easy to implement any remote desktop protocol without dig into the protocol specification or third part libraries, you can check some of our examples. WWW: https://github.com/araujobsd/libhyve-remote Differential Revision: iXsystems, Inc. Added: head/devel/libhyve-remote/ head/devel/libhyve-remote/Makefile (contents, props changed) head/devel/libhyve-remote/distinfo (contents, props changed) head/devel/libhyve-remote/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Thu Jul 27 05:56:08 2017 (r446715) +++ head/devel/Makefile Thu Jul 27 06:56:08 2017 (r446716) @@ -1370,6 +1370,7 @@ SUBDIR += libhid SUBDIR += libhoard SUBDIR += libhtp + SUBDIR += libhyve-remote SUBDIR += libical SUBDIR += libical-glib SUBDIR += libinotify Added: head/devel/libhyve-remote/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libhyve-remote/Makefile Thu Jul 27 06:56:08 2017 (r446716) @@ -0,0 +1,50 @@ +# $FreeBSD$ + +PORTNAME= libhyve-remote +PORTVERSION= 0.1.0 +CATEGORIES= devel + +MAINTAINER= araujo@FreeBSD.org +COMMENT= Library to abstract vnc, rdp and spice protocols + +LICENSE= BSD2CLAUSE GPLv2 +LICENSE_COMB= dual + +LIB_DEPENDS= libvncserver.so:net/libvncserver + +CFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib + +PLIST_FILES= ${HEADER_FILES} \ + ${LIB_FILES} + +HEADER_FILES= include/libhyverem/hyverem.h \ + include/libhyverem/rfbsrv.h \ + include/libhyverem/libcheck.h \ + include/libhyverem/vncserver.h + +LIB_FILES= lib/libhyverem.so.1 \ + lib/libhyverem.so \ + lib/libhyverem.a \ + lib/libhyverem_p.a +PLIST_DIRS= ${LOCALBASE}/include/libhyverem + +USE_GITHUB= yes +GH_ACCOUNT= araujobsd +GH_PROJECT= ${PORTNAME} +GH_TAGNAME= ${PORTVERSION} + +USE_LDCONFIG= yes + +do-install: + ${MKDIR} ${STAGEDIR}${PREFIX}/include/libhyverem +.for headers in ${HEADER_FILES} + ${INSTALL_DATA} ${WRKSRC}/include/${headers:T} ${STAGEDIR}${PREFIX}/include/libhyverem/${headers:T} +.endfor +.for lib in ${LIB_FILES:T} + ${INSTALL_DATA} ${WRKSRC}/${lib} ${STAGEDIR}${PREFIX}/lib/ +.endfor + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/*.so.1 + ${LN} -fs libhyverem.so.1 ${STAGEDIR}${PREFIX}/lib/libhyverem.so + +.include Added: head/devel/libhyve-remote/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libhyve-remote/distinfo Thu Jul 27 06:56:08 2017 (r446716) @@ -0,0 +1,3 @@ +TIMESTAMP = 1500978166 +SHA256 (araujobsd-libhyve-remote-0.1.0_GH0.tar.gz) = e4d842097ad1afd138c4bd3bfa14fb2da0928d32b70c60c0194b1606139bbaf5 +SIZE (araujobsd-libhyve-remote-0.1.0_GH0.tar.gz) = 6125 Added: head/devel/libhyve-remote/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libhyve-remote/pkg-descr Thu Jul 27 06:56:08 2017 (r446716) @@ -0,0 +1,9 @@ +The libhyve-remote aims to abstract functionalities from other third party +libraries such like libvncserver, freerdp and spice to be used in hypervisor +implementation. + +With a basic data structure it is easy to implement any remote desktop +protocol without dig into the protocol specification or third part +libraries, you can check some of our examples. + +WWW: https://github.com/araujobsd/libhyve-remote