diff options
author | jmmv <jmmv@pkgsrc.org> | 2004-02-04 17:12:09 +0000 |
---|---|---|
committer | jmmv <jmmv@pkgsrc.org> | 2004-02-04 17:12:09 +0000 |
commit | 84c7b36877b66aa50ad0b0c17e931f9926973eba (patch) | |
tree | 89650cb87e40cb1df3109d9735e330b151cfa7b5 /devel/buildtool/Makefile | |
parent | 4db773ba907c26277d1c1955f30111d63fbbf08f (diff) | |
download | pkgsrc-84c7b36877b66aa50ad0b0c17e931f9926973eba.tar.gz |
Update to 0.15:
Fifteenth alpha version, released on 2004/02/04.
o Finally dropped bt_make and bt_wrap, together with all compatibility
code introduced around them.
o M4 is no longer needed. It was introduced to clean up code, but it
has proven to only ofuscate it. As a side effect, bt_swcgen uses
shell scripts instead of macro files to generate system wide configu-
ration.
o Added some checks to bt_config: bt_check_hdr_time(),
bt_check_prog_cc_flag() and bt_check_prog_cxx_flag().
o Support for the `+=' operator (append text to a variable) was added
to bt_sh. This can be used to simplify syntax when writting scripts.
o Support for pkgconfig files was added to bt_pkgflags.
o Support for pkgconfig command line syntax was added to bt_pkgflags
(it is not exactly the same, but we now support operators in their
real form, like `=' or `!=', plus spaces to separate keywords).
o Multiple portability problems fixed.
Diffstat (limited to 'devel/buildtool/Makefile')
-rw-r--r-- | devel/buildtool/Makefile | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/devel/buildtool/Makefile b/devel/buildtool/Makefile index 9dc3f9ca11e..3280cc511e2 100644 --- a/devel/buildtool/Makefile +++ b/devel/buildtool/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.14 2003/09/15 14:49:44 jmmv Exp $ +# $NetBSD: Makefile,v 1.15 2004/02/04 17:12:09 jmmv Exp $ # -DISTNAME= buildtool-0.14 +DISTNAME= buildtool-0.15 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=buildtool/} @@ -12,19 +12,14 @@ COMMENT= Portable build infrastructure USE_BUILDLINK2= yes HAS_CONFIGURE= yes +TEST_TARGET= test + PKG_SYSCONFSUBDIR= buildtool CONFIGURE_ARGS= -p ${LOCALBASE} CONFIGURE_ARGS+= -c ${PKG_SYSCONFDIR} CONFIGURE_ENV+= SH="${SH}" -.include "../../mk/bsd.prefs.mk" - -.if !empty(MACHINE_PLATFORM:MNetBSD-1.5*) -DEPENDS+= m4>=1.4nb1:../../devel/m4 -M4= "${GNU_PROGRAM_PREFIX}m4" -.endif - post-install: ${INSTALL_DATA_DIR} ${PREFIX}/share/buildtool-0/pkgflags |