43f8bc4bd8
it fails to re-read the config.cache. Don't use a cache under IRIX, then. (At least this way we can build this package which otherwise would break some 650 dependencies.)
31 lines
742 B
Makefile
31 lines
742 B
Makefile
# $NetBSD: Makefile,v 1.17 2004/04/12 20:28:54 jschauma Exp $
|
|
#
|
|
|
|
DISTNAME= pkgconfig-0.15.0
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://www.freedesktop.org/software/pkgconfig/releases/
|
|
|
|
MAINTAINER= tech-pkg@NetBSD.org
|
|
HOMEPAGE= http://www.freedesktop.org/software/pkgconfig/
|
|
COMMENT= System for managing library compile/link flags
|
|
|
|
PKG_INSTALLATION_TYPES= overwrite pkgviews
|
|
|
|
USE_BUILDLINK3= YES
|
|
GNU_CONFIGURE= YES
|
|
USE_LIBTOOL= YES
|
|
CONFIGURE_ARGS+= --disable-threads
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
.if ${OPSYS} == "IRIX"
|
|
# configure bails out in subdir after re-parsing the cache
|
|
CONFIGURE_ARGS+= --cache-file=/dev/null
|
|
.endif
|
|
|
|
TEST_TARGET= check
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/lib/pkgconfig
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|