Received: by mail.netbsd.org (Postfix, from userid 605) id 7CEC884EFF; Wed, 18 Aug 2021 21:03:45 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id B617584DA5 for ; Wed, 18 Aug 2021 21:03:44 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id oaOVC066awOO for ; Wed, 18 Aug 2021 21:03:44 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id CAF6184D0E for ; Wed, 18 Aug 2021 21:03:43 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id C89C4FA97; Wed, 18 Aug 2021 21:03:43 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1629320623103650" MIME-Version: 1.0 Date: Wed, 18 Aug 2021 21:03:43 +0000 From: "pin" Subject: CVS commit: pkgsrc/x11/xcolor To: pkgsrc-changes@NetBSD.org Reply-To: pin@netbsd.org X-Mailer: log_accum Message-Id: <20210818210343.C89C4FA97@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1629320623103650 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: pin Date: Wed Aug 18 21:03:43 UTC 2021 Modified Files: pkgsrc/x11/xcolor: Makefile Log Message: x11/xcolor: declare libxcb dependency To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 pkgsrc/x11/xcolor/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1629320623103650 Content-Disposition: inline Content-Length: 1225 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/x11/xcolor/Makefile diff -u pkgsrc/x11/xcolor/Makefile:1.1 pkgsrc/x11/xcolor/Makefile:1.2 --- pkgsrc/x11/xcolor/Makefile:1.1 Tue Aug 17 17:44:25 2021 +++ pkgsrc/x11/xcolor/Makefile Wed Aug 18 21:03:43 2021 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1 2021/08/17 17:44:25 pin Exp $ +# $NetBSD: Makefile,v 1.2 2021/08/18 21:03:43 pin Exp $ DISTNAME= xcolor-0.5.0 CATEGORIES= x11 @@ -11,17 +11,21 @@ LICENSE= mit .include "cargo-depends.mk" -USE_TOOLS+= pkg-config +USE_TOOLS+= pkg-config +PYTHON_VERSIONS_INCOMPATIBLE= 27 +PYTHON_FOR_BUILD_ONLY= tool INSTALLATION_DIRS= bin ${PKGMANDIR}/man1 RUSTFLAGS+= -C link-arg=${COMPILER_RPATH_FLAG}${BUILDLINK_PREFIX.libX11}/lib -RUSTFLAGS+= -C link-arg=-L${BUILDLINK_PREFIX.libX11}/lib +RUSTFLAGS+= -C link-arg=${COMPILER_RPATH_FLAG}${BUILDLINK_PREFIX.libxcb}/lib do-install: ${INSTALL_PROGRAM} ${WRKSRC}/target/release/xcolor ${DESTDIR}${PREFIX}/bin ${INSTALL_MAN} ${WRKSRC}/man/xcolor.1 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1/xcolor.1 .include "../../lang/rust/cargo.mk" +.include "../../lang/python/tool.mk" .include "../../x11/libX11/buildlink3.mk" +.include "../../x11/libxcb/buildlink3.mk" .include "../../mk/bsd.pkg.mk" --_----------=_1629320623103650--