Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 10 Oct 2020 07:51:14 +0000 (UTC)
From:      Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org
Subject:   svn commit: r551907 - in branches/2020Q4/devel/libpci: . files
Message-ID:  <202010100751.09A7pEu7068788@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: sunpoet
Date: Sat Oct 10 07:51:13 2020
New Revision: 551907
URL: https://svnweb.freebsd.org/changeset/ports/551907

Log:
  MFH: r551866
  
  Fix default pci.ids location
  
  - Bump PORTREVISION for package change
  
  Reported by:	mav
  
  Approved by:	ports-secteam (blanket)

Modified:
  branches/2020Q4/devel/libpci/Makefile
  branches/2020Q4/devel/libpci/files/patch-Makefile
Directory Properties:
  branches/2020Q4/   (props changed)

Modified: branches/2020Q4/devel/libpci/Makefile
==============================================================================
--- branches/2020Q4/devel/libpci/Makefile	Sat Oct 10 07:47:33 2020	(r551906)
+++ branches/2020Q4/devel/libpci/Makefile	Sat Oct 10 07:51:13 2020	(r551907)
@@ -3,6 +3,7 @@
 
 PORTNAME=	libpci
 PORTVERSION=	3.7.0
+PORTREVISION=	1
 CATEGORIES=	devel
 MASTER_SITES=	KERNEL_ORG/software/utils/pciutils \
 		LOCAL/sunpoet

Modified: branches/2020Q4/devel/libpci/files/patch-Makefile
==============================================================================
--- branches/2020Q4/devel/libpci/files/patch-Makefile	Sat Oct 10 07:47:33 2020	(r551906)
+++ branches/2020Q4/devel/libpci/files/patch-Makefile	Sat Oct 10 07:51:13 2020	(r551907)
@@ -11,7 +11,7 @@
  
  VERSION=3.7.0
  DATE=2020-05-31
-@@ -32,7 +32,7 @@ HWDB=
+@@ -32,10 +32,10 @@ HWDB=
  ABI_VERSION=.3
  
  # Installation directories
@@ -19,7 +19,11 @@
 +# PREFIX=/usr/local
  SBINDIR=$(PREFIX)/sbin
  SHAREDIR=$(PREFIX)/share
- IDSDIR=$(SHAREDIR)
+-IDSDIR=$(SHAREDIR)
++IDSDIR=$(SHAREDIR)/pciids
+ MANDIR:=$(shell if [ -d $(PREFIX)/share/man ] ; then echo $(PREFIX)/share/man ; else echo $(PREFIX)/man ; fi)
+ INCDIR=$(PREFIX)/include
+ LIBDIR=$(PREFIX)/lib
 @@ -45,7 +45,7 @@ PKGCFDIR=$(LIBDIR)/pkgconfig
  INSTALL=install
  DIRINSTALL=install -d



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202010100751.09A7pEu7068788>