pkgsrc/devel/cook/Makefile

28 lines
757 B
Makefile
Raw Normal View History

2009-02-16 22:09:57 +01:00
# $NetBSD: Makefile,v 1.21 2009/02/16 21:09:57 joerg Exp $
update cook from 2.22 to 2.26. besides fixing GCC4 builds, many of the changes since 2.22 include: * A bug has been fixed in the tell-position flag. It wasn't actually giving the file name and line number when executing commands if you used the "set tell-position" variants, only the -tell-position command line option. * A bug has been fixed in the cook -fp-update command, it would segfault in some cases. * A bug has been fixed in the cookbook include file processing. * A bug has been fixed in the negative flag setting (comamnd line options and "set" clauses). * The find_command command now copes better with directories it is not allowed to access. * A Java cookbook has been added to to the distribution. * A bug has been fixed in the execution of some commands. If any words of the command had spaces in them, it did not pass it to a shell to be executed, but instead constructed a command of a different shape than the user expected. * A bug has been fixed on Linux (and it only ever ocurred on Linux) where cook would suddenly stop for no reason with exit status 1. Turns out that sometimes fflush(stderr) returns an EAGAIN error. * A bug has been fixed which caused the cook -script option to produce invalid shell scripts when a recipe body contained no statements. * A bug has been fixed in the graph file pair generation, used to generate warnings about dangerous #include-cooked contents. * There is a new tell-position setting, so that when Cook prints a command it is about to run, it includes the file name and line nunmber of the command. This can be useful when debugging cookbooks. * A bug has been fixed in the output line wrapping. Once again it adapts to the window width. * A major problem with parallel execution and hangs has been fixed. The table indexed by process ID was now growing correctly.
2006-08-10 01:29:15 +02:00
DISTNAME= cook-2.26
PKGREVISION= 1
CATEGORIES= devel
MASTER_SITES= http://miller.emu.id.au/pmiller/software/cook/
2003-07-17 23:21:03 +02:00
MAINTAINER= groo@NetBSD.org
HOMEPAGE= http://miller.emu.id.au/pmiller/software/cook/
COMMENT= More powerful replacement for the traditional make(1) tool
2009-02-16 22:09:57 +01:00
PKG_DESTDIR_SUPPORT= user-destdir
USE_TOOLS+= msgfmt yacc perl:run
GNU_CONFIGURE= yes
2007-11-07 09:03:55 +01:00
MAKE_JOBS_SAFE= no
2007-11-07 09:37:51 +01:00
LIBS.SunOS+= -lintl
2009-02-16 22:09:57 +01:00
INSTALLATION_DIRS= ${PKGMANDIR}/man1
INSTALL_MAKE_FLAGS+= bindir=${DESTDIR}${PREFIX}/bin \
datadir=${DESTDIR}${PREFIX}/share/cook \
libdir=${DESTDIR}${PREFIX}/lib/cook \
mandir=${DESTDIR}${PREFIX}/${PKGMANDIR}
2004-04-25 05:59:47 +02:00
.include "../../devel/gettext-lib/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"