From owner-svn-ports-head@freebsd.org Sun Feb 14 10:06:49 2021 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 5E33E5297B3; Sun, 14 Feb 2021 10:06:49 +0000 (UTC) (envelope-from tcberner@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 "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4DdjZK2Dn8z4qNL; Sun, 14 Feb 2021 10:06:49 +0000 (UTC) (envelope-from tcberner@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 3F71C591; Sun, 14 Feb 2021 10:06:49 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 11EA6nKu037823; Sun, 14 Feb 2021 10:06:49 GMT (envelope-from tcberner@FreeBSD.org) Received: (from tcberner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 11EA6nJ8037822; Sun, 14 Feb 2021 10:06:49 GMT (envelope-from tcberner@FreeBSD.org) Message-Id: <202102141006.11EA6nJ8037822@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tcberner set sender to tcberner@FreeBSD.org using -f From: "Tobias C. Berner" Date: Sun, 14 Feb 2021 10:06:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r565217 - head/misc/pnpids X-SVN-Group: ports-head X-SVN-Commit-Author: tcberner X-SVN-Commit-Paths: head/misc/pnpids X-SVN-Commit-Revision: 565217 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.34 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, 14 Feb 2021 10:06:49 -0000 Author: tcberner Date: Sun Feb 14 10:06:48 2021 New Revision: 565217 URL: https://svnweb.freebsd.org/changeset/ports/565217 Log: misc/pnpids: also install pci and usb id files - These can be used by plasma5-kwin in the future Modified: head/misc/pnpids/Makefile Modified: head/misc/pnpids/Makefile ============================================================================== --- head/misc/pnpids/Makefile Sun Feb 14 09:55:42 2021 (r565216) +++ head/misc/pnpids/Makefile Sun Feb 14 10:06:48 2021 (r565217) @@ -4,11 +4,12 @@ PORTNAME= pnpids DISTVERSIONPREFIX= v DISTVERSION= 0.344 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= misc MAINTAINER= gnome@FreeBSD.org -COMMENT= Database of IDs used in Plug and Play devices +COMMENT= Database of IDs used in PCI, PNP and USB devices LICENSE= GPLv2+ MIT LICENSE_COMB= dual @@ -16,14 +17,18 @@ LICENSE_COMB= dual NO_ARCH= yes NO_BUILD= yes -PLIST_FILES= ${DATADIR}/pnp.ids USE_GITHUB= yes GH_ACCOUNT= vcrhonek GH_PROJECT= hwdata +_ID_FILES= pci.ids pnp.ids usb.ids +PLIST_FILES= ${_ID_FILES:C,^,${DATADIR}/,} + do-install: ${MKDIR} ${STAGEDIR}${DATADIR}/ - ${INSTALL_DATA} ${WRKSRC}/pnp.ids ${STAGEDIR}${DATADIR}/ +.for _id_file in ${_ID_FILES} + ${INSTALL_DATA} ${WRKSRC}/${_id_file} ${STAGEDIR}${DATADIR}/ +.endfor .include