From owner-svn-ports-all@freebsd.org Tue Sep 10 07:10:58 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 80D5BF4175; Tue, 10 Sep 2019 07:10:58 +0000 (UTC) (envelope-from madpilot@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 46SGQp2vHQz42cv; Tue, 10 Sep 2019 07:10:58 +0000 (UTC) (envelope-from madpilot@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 47AA52279C; Tue, 10 Sep 2019 07:10:58 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x8A7Awxp073996; Tue, 10 Sep 2019 07:10:58 GMT (envelope-from madpilot@FreeBSD.org) Received: (from madpilot@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x8A7Avq4073991; Tue, 10 Sep 2019 07:10:57 GMT (envelope-from madpilot@FreeBSD.org) Message-Id: <201909100710.x8A7Avq4073991@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: madpilot set sender to madpilot@FreeBSD.org using -f From: Guido Falsi Date: Tue, 10 Sep 2019 07:10:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r511744 - in head: Mk/Uses x11 x11/libXpresent X-SVN-Group: ports-head X-SVN-Commit-Author: madpilot X-SVN-Commit-Paths: in head: Mk/Uses x11 x11/libXpresent X-SVN-Commit-Revision: 511744 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: Tue, 10 Sep 2019 07:10:58 -0000 Author: madpilot Date: Tue Sep 10 07:10:56 2019 New Revision: 511744 URL: https://svnweb.freebsd.org/changeset/ports/511744 Log: Add libXpresent: Xlib-based library for the X Present Extension. Assigning maintainership to x11. Reviewed by: zeising Approved by: x11 (zeising) Differential Revision: https://reviews.freebsd.org/D21526 Added: head/x11/libXpresent/ head/x11/libXpresent/Makefile (contents, props changed) head/x11/libXpresent/distinfo (contents, props changed) head/x11/libXpresent/pkg-descr (contents, props changed) head/x11/libXpresent/pkg-plist (contents, props changed) Modified: head/Mk/Uses/xorg.mk head/x11/Makefile Modified: head/Mk/Uses/xorg.mk ============================================================================== --- head/Mk/Uses/xorg.mk Tue Sep 10 07:03:47 2019 (r511743) +++ head/Mk/Uses/xorg.mk Tue Sep 10 07:10:56 2019 (r511744) @@ -74,6 +74,7 @@ XORG_MODULES= dmx \ xorgproto \ xp \ xpm \ + xpresent \ xprintapputil \ xprintutil \ xrandr \ @@ -131,6 +132,7 @@ xorg-server_LIB_PC_DEPENDS= ${LOCALBASE}/libdata/pkgco xorgproto_BUILD_DEPENDS= xorgproto>=0:x11/xorgproto xp_LIB_PC_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/xp.pc:x11/libXp xpm_LIB_PC_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/xpm.pc:x11/libXpm +xpresent_LIB_PC_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/xpresent.pc:x11/libXpresent xprintapputil_LIB_PC_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/xprintapputil.pc:x11/libXprintAppUtil xprintutil_LIB_PC_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/xprintutil.pc:x11/libXprintUtil xrandr_LIB_PC_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/xrandr.pc:x11/libXrandr Modified: head/x11/Makefile ============================================================================== --- head/x11/Makefile Tue Sep 10 07:03:47 2019 (r511743) +++ head/x11/Makefile Tue Sep 10 07:10:56 2019 (r511744) @@ -152,6 +152,7 @@ SUBDIR += libXinerama SUBDIR += libXp SUBDIR += libXpm + SUBDIR += libXpresent SUBDIR += libXprintAppUtil SUBDIR += libXprintUtil SUBDIR += libXrandr Added: head/x11/libXpresent/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/libXpresent/Makefile Tue Sep 10 07:10:56 2019 (r511744) @@ -0,0 +1,18 @@ +# $FreeBSD$ + +PORTNAME= libXpresent +PORTVERSION= 1.0.0 +CATEGORIES= x11 + +MAINTAINER= x11@FreeBSD.org +COMMENT= X Present Extension library + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/COPYING + +USES= xorg-cat:lib +USE_XORG= x11 xfixes xext xorgproto xrandr + +INSTALL_TARGET= install-strip + +.include Added: head/x11/libXpresent/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/libXpresent/distinfo Tue Sep 10 07:10:56 2019 (r511744) @@ -0,0 +1,3 @@ +TIMESTAMP = 1566903596 +SHA256 (xorg/lib/libXpresent-1.0.0.tar.bz2) = c11ae015141a9afbe10f4f2b8ee00b11adca6373dc1b9808d7c6c138b2da7b8a +SIZE (xorg/lib/libXpresent-1.0.0.tar.bz2) = 263461 Added: head/x11/libXpresent/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/libXpresent/pkg-descr Tue Sep 10 07:10:56 2019 (r511744) @@ -0,0 +1,3 @@ +This package contains the X Composite extension library. + +WWW: https://gitlab.freedesktop.org/xorg/lib/libxpresent Added: head/x11/libXpresent/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/libXpresent/pkg-plist Tue Sep 10 07:10:56 2019 (r511744) @@ -0,0 +1,7 @@ +include/X11/extensions/Xpresent.h +lib/libXpresent.a +lib/libXpresent.so +lib/libXpresent.so.1 +lib/libXpresent.so.1.0.0 +libdata/pkgconfig/xpresent.pc +man/man3/Xpresent.3.gz