forked from Lainports/freebsd-ports
devel/pkgconf: accept share/pkgconfig
Since pkg-config then pkgconf was introduced, we as a project decided the lib/pkgconfig was not suitable and moved all .pc files and installed them into libdata/pkconfig instead. This concerns the .pc file referring to potentially architecture dependant information. One thing that has been missed was that there may be some arch independant .pc files only (like headers only libraries for example etc) then in pkg-config but also in pkgconf it has been advertise to use share/pkgconfig for those specific files. As this matches what hier(7) says about "share", let's accept that in the default search path as well. Reported by: Andrea Pappacoda <andrea@pappacoda.it>
This commit is contained in:
parent
7edbd2f196
commit
d48fab59da
1 changed files with 2 additions and 1 deletions
|
|
@ -1,5 +1,6 @@
|
|||
PORTNAME= pkgconf
|
||||
PORTVERSION= 1.8.0
|
||||
PORTREVISION= 1
|
||||
PORTEPOCH= 1
|
||||
CATEGORIES= devel
|
||||
MASTER_SITES= https://distfiles.dereferenced.org/pkgconf/ \
|
||||
|
|
@ -20,7 +21,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}/libdata/pkgconfig:/usr/libdata/pkgconfig:${PREFIX}/share/pkgconfig \
|
||||
--with-system-libdir=/usr/lib \
|
||||
--with-system-includedir=/usr/include
|
||||
MAKE_ARGS= MANDIR="${MAN1PREFIX}/man/man1"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue