From owner-svn-ports-head@freebsd.org Sun Sep 13 17:00:02 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 AE1E13E0A1D; Sun, 13 Sep 2020 17:00:02 +0000 (UTC) (envelope-from zeising@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 4BqG2B49D5z4P6b; Sun, 13 Sep 2020 17:00:02 +0000 (UTC) (envelope-from zeising@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 70EBF9593; Sun, 13 Sep 2020 17:00:02 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 08DH025Y078503; Sun, 13 Sep 2020 17:00:02 GMT (envelope-from zeising@FreeBSD.org) Received: (from zeising@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 08DH028L078501; Sun, 13 Sep 2020 17:00:02 GMT (envelope-from zeising@FreeBSD.org) Message-Id: <202009131700.08DH028L078501@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: zeising set sender to zeising@FreeBSD.org using -f From: Niclas Zeising Date: Sun, 13 Sep 2020 17:00:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r548487 - head/x11/libxcb X-SVN-Group: ports-head X-SVN-Commit-Author: zeising X-SVN-Commit-Paths: head/x11/libxcb X-SVN-Commit-Revision: 548487 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.33 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, 13 Sep 2020 17:00:02 -0000 Author: zeising Date: Sun Sep 13 17:00:01 2020 New Revision: 548487 URL: https://svnweb.freebsd.org/changeset/ports/548487 Log: x11/libxcb: Update to 1.14 Update x11/libxcb to 1.14. Clean up the makefile: * Remove the dependency on check and libxslt, they are only needed for tests which aren't built and installed anyway. * No need to use gmake * Correct configure options * Have libxcb use pkgconfig to figure out cflags and ldflags, instead of hardcoding some cflags and ldflags in the Makefile. Modified: head/x11/libxcb/Makefile head/x11/libxcb/distinfo Modified: head/x11/libxcb/Makefile ============================================================================== --- head/x11/libxcb/Makefile Sun Sep 13 16:41:04 2020 (r548486) +++ head/x11/libxcb/Makefile Sun Sep 13 17:00:01 2020 (r548487) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= libxcb -PORTVERSION= 1.13.1 +PORTVERSION= 1.14 CATEGORIES= x11 python MASTER_SITES= https://xcb.freedesktop.org/dist/ @@ -12,33 +12,16 @@ COMMENT= The X protocol C-language Binding (XCB) libra LICENSE= MIT LICENSE_FILE= ${WRKSRC}/COPYING -BUILD_DEPENDS= ${LOCALBASE}/lib/libcheck.a:devel/check \ - xcb-proto>=1.9:x11/xcb-proto \ +BUILD_DEPENDS= xcb-proto>=1.9:x11/xcb-proto \ ${LOCALBASE}/libdata/pkgconfig/pthread-stubs.pc:devel/libpthread-stubs -RUN_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/pthread-stubs.pc:devel/libpthread-stubs -CONFIGURE_ARGS+= --disable-build-docs --without-doxygen --enable-xinput +CONFIGURE_ARGS= --disable-devel-docs --without-doxygen --enable-xinput --enable-xkb -USES= cpe gmake gnome python:build xorg xorg-cat:lib -USE_GNOME= libxslt:build +USES= cpe python:build tar:xz xorg xorg-cat:lib USE_XORG= xau xdmcp INSTALL_TARGET= install-strip CPE_VENDOR= x OPTIONS_DEFINE= DOCS - -.for f in XPROTO_CFLAGS XPROTO_LIBS XDMCP_CFLAGS XDMCP_LIBS NEEDED_CFLAGS NEEDED_LIBS -CONFIGURE_ARGS+=${f}="${${f}}" -.endfor -CONFIGURE_ARGS+=--enable-xkb - -NEEDED_CFLAGS= -I${LOCALBASE}/include -NEEDED_LIBS= -L${LOCALBASE}/lib -lXau `pkg-config --libs pthread-stubs` - -XDMCP_CFLAGS= -I${LOCALBASE}/include -XDMCP_LIBS= -L${LOCALBASE}/lib -lXdmcp - -XPROTO_CFLAGS= -I${LOCALBASE}/include -XPROTO_LIBS= -L${LOCALBASE}/lib .include Modified: head/x11/libxcb/distinfo ============================================================================== --- head/x11/libxcb/distinfo Sun Sep 13 16:41:04 2020 (r548486) +++ head/x11/libxcb/distinfo Sun Sep 13 17:00:01 2020 (r548487) @@ -1,3 +1,3 @@ -TIMESTAMP = 1538162049 -SHA256 (xorg/lib/libxcb-1.13.1.tar.bz2) = a89fb7af7a11f43d2ce84a844a4b38df688c092bf4b67683aef179cdf2a647c4 -SIZE (xorg/lib/libxcb-1.13.1.tar.bz2) = 506778 +TIMESTAMP = 1599995472 +SHA256 (xorg/lib/libxcb-1.14.tar.xz) = a55ed6db98d43469801262d81dc2572ed124edc3db31059d4e9916eb9f844c34 +SIZE (xorg/lib/libxcb-1.14.tar.xz) = 439404