svn commit: r435576 - head/devel/pkgconf

Dag-Erling Smørgrav des at FreeBSD.org
Tue Mar 7 01:03:21 UTC 2017


Author: des
Date: Tue Mar  7 01:03:19 2017
New Revision: 435576
URL: https://svnweb.freebsd.org/changeset/ports/435576

Log:
  Change the search path to include ${PREFIX}/lib/pkgconfig ahead of the
  usual ${PREFIX}/libdata/pkgconfig and /usr/libdata/pkgconfig.  This
  renders 82.6% of Mk/Uses/pathfix.mk obsolete.
  
  Reviewed by:	bapt
  Approved by:	bapt

Modified:
  head/devel/pkgconf/Makefile

Modified: head/devel/pkgconf/Makefile
==============================================================================
--- head/devel/pkgconf/Makefile	Tue Mar  7 00:06:43 2017	(r435575)
+++ head/devel/pkgconf/Makefile	Tue Mar  7 01:03:19 2017	(r435576)
@@ -2,6 +2,7 @@
 
 PORTNAME=	pkgconf
 PORTVERSION=	1.3.0
+PORTREVISION=	1
 CATEGORIES=	devel
 MASTER_SITES=	https://distfiles.dereferenced.org/pkgconf/ \
 		http://files.etoilebsd.net/pkgconf/
@@ -16,7 +17,7 @@ GNU_CONFIGURE=	yes
 INSTALL_TARGET=	install-strip
 USE_LDCONFIG=	yes
 TEST_TARGET=	check
-CONFIGURE_ARGS=	--with-pkg-config-dir=${PREFIX}/libdata/pkgconfig:/usr/libdata/pkgconfig \
+CONFIGURE_ARGS=	--with-pkg-config-dir=${PREFIX}/lib/pkgconfig:${PREFIX}/libdata/pkgconfig:/usr/libdata/pkgconfig \
 		--with-system-libdir=/usr/lib \
 		--with-system-includedir=/usr/include
 MAKE_ARGS=	MANDIR="${MAN1PREFIX}/man/man1"


More information about the svn-ports-all mailing list