pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/devel/pkgconf



Module Name:    pkgsrc
Committed By:   markd
Date:           Sun May 18 03:00:19 UTC 2025

Modified Files:
        pkgsrc/devel/pkgconf: Makefile

Log Message:
pkgconf: Linux (at least ArchLinux) installs some pkgconfig files in
/usr/share/pkgconfig so add it to the search path.


To generate a diff of this commit:
cvs rdiff -u -r1.34 -r1.35 pkgsrc/devel/pkgconf/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/devel/pkgconf/Makefile
diff -u pkgsrc/devel/pkgconf/Makefile:1.34 pkgsrc/devel/pkgconf/Makefile:1.35
--- pkgsrc/devel/pkgconf/Makefile:1.34  Thu May  1 19:34:59 2025
+++ pkgsrc/devel/pkgconf/Makefile       Sun May 18 03:00:19 2025
@@ -1,6 +1,7 @@
-# $NetBSD: Makefile,v 1.34 2025/05/01 19:34:59 schmonz Exp $
+# $NetBSD: Makefile,v 1.35 2025/05/18 03:00:19 markd Exp $
 
 DISTNAME=      pkgconf-2.4.3
+PKGREVISION=   1
 CATEGORIES=    devel
 MASTER_SITES=  https://distfiles.dereferenced.org/pkgconf/
 
@@ -36,6 +37,10 @@ CPPFLAGS.NetBSD+=    -D_OPENBSD_SOURCE
 PKGCONFIG_PATHS+=      ${X11BASE}/lib/pkgconfig
 .endif
 
+.if ${OPSYS} == "Linux"
+PKGCONFIG_PATHS+=      /usr/share/pkgconfig
+.endif
+
 CONFIGURE_ARGS+=       --with-pkg-config-dir=${PKGCONFIG_PATHS:ts::Q}
 
 # configure script incorrectly sets only _FILE_OFFSET_BITS=64



Home | Main Index | Thread Index | Old Index