Date: Tue, 10 Sep 2019 07:10:57 +0000 (UTC) From: Guido Falsi <madpilot@FreeBSD.org> 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 Message-ID: <201909100710.x8A7Avq4073991@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 <bsd.port.mk> 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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201909100710.x8A7Avq4073991>