Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id 2C93C1A9239 for ; Fri, 17 Dec 2021 20:09:37 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 6ACAF84EC5; Fri, 17 Dec 2021 20:09:36 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id A4E6F84EC0 for ; Fri, 17 Dec 2021 20:09:35 +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 muEvgC4LPgCy for ; Fri, 17 Dec 2021 20:09:35 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 0841684D8C for ; Fri, 17 Dec 2021 20:09:35 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 05C5CFAEC; Fri, 17 Dec 2021 20:09:35 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1639771775273830" MIME-Version: 1.0 Date: Fri, 17 Dec 2021 20:09:35 +0000 From: "Maya Rashish" Subject: CVS commit: pkgsrc/chat/hexchat To: pkgsrc-changes@NetBSD.org Reply-To: maya@netbsd.org X-Mailer: log_accum Message-Id: <20211217200935.05C5CFAEC@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1639771775273830 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: maya Date: Fri Dec 17 20:09:34 UTC 2021 Modified Files: pkgsrc/chat/hexchat: options.mk Log Message: hexchat: use pciutils mk fragment to find libpci soname. no functional change To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.11 pkgsrc/chat/hexchat/options.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1639771775273830 Content-Disposition: inline Content-Length: 857 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/chat/hexchat/options.mk diff -u pkgsrc/chat/hexchat/options.mk:1.10 pkgsrc/chat/hexchat/options.mk:1.11 --- pkgsrc/chat/hexchat/options.mk:1.10 Tue Oct 19 08:17:06 2021 +++ pkgsrc/chat/hexchat/options.mk Fri Dec 17 20:09:34 2021 @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.10 2021/10/19 08:17:06 nia Exp $ +# $NetBSD: options.mk,v 1.11 2021/12/17 20:09:34 maya Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.hexchat PKG_SUPPORTED_OPTIONS= dbus gtk2 libcanberra libpci @@ -39,11 +39,8 @@ MESON_ARGS+= -Dlibcanberra=disabled .if !empty(PKG_OPTIONS:Mlibpci) .include "../../sysutils/pciutils/buildlink3.mk" -. if ${OPSYS} == "NetBSD" -LIBS+= -lpciutils -. else -LIBS+= -lpci -. endif +.include "../../sysutils/pciutils/libname.mk" +LIBS+= -l${PCIUTILS_LIBNAME} PLIST.libpci= yes MESON_ARGS+= -Dwith-sysinfo=true .else --_----------=_1639771775273830--