- Improved signal handling: Kill compiler on SIGTERM; wait for compiler to exit before exiting; die appropriately. - The correct compression level is now used if compression is requested. - Fixed a bug where cache cleanup could be run too early for caches larger than 64 GiB on 32-bit systems.
32 lines
760 B
Makefile
32 lines
760 B
Makefile
# $OpenBSD: Makefile,v 1.30 2015/10/09 13:33:44 sthen Exp $
|
|
|
|
COMMENT = compiler cache
|
|
|
|
DISTNAME = ccache-3.2.4
|
|
CATEGORIES = devel
|
|
|
|
# The ccache(1) manual page causes ERRORs with mandoc(1),
|
|
# so normally this port would require USE_GROFF.
|
|
# However, the actual formatting issues are not very serious,
|
|
# and USE_GROFF would cause a circular dependency
|
|
# because the textproc/groff port can use ccache.
|
|
# When updating, please check that mandoc(1) still
|
|
# does not drop any content from the ccache(1) manual.
|
|
|
|
HOMEPAGE = http://ccache.samba.org/
|
|
|
|
MAINTAINER = Stuart Henderson <sthen@openbsd.org>
|
|
|
|
# GPLv3+
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
|
|
WANTLIB += c m z
|
|
|
|
MASTER_SITES = http://samba.org/ftp/ccache/
|
|
|
|
CONFIGURE_STYLE = gnu
|
|
|
|
NO_CCACHE = Yes
|
|
|
|
.include <bsd.port.mk>
|