This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "IPFire 3.x development tree".
The branch, master has been updated via 04c03d11e8ba46c65f01e014d6044cb746a9e42c (commit) from 1def4e795bb4b84cd06fc2ea7dd04975055e4414 (commit)
Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below.
- Log ----------------------------------------------------------------- commit 04c03d11e8ba46c65f01e014d6044cb746a9e42c Author: Michael Tremer michael.tremer@ipfire.org Date: Sun Jul 3 19:22:43 2011 +0200
gawk: Update to 4.0.0.
-----------------------------------------------------------------------
Summary of changes: pkgs/gawk/gawk.nm | 38 ++++++++++++++++++++------------------ 1 files changed, 20 insertions(+), 18 deletions(-)
Difference in files: diff --git a/pkgs/gawk/gawk.nm b/pkgs/gawk/gawk.nm index 9f96da5..29b52b1 100644 --- a/pkgs/gawk/gawk.nm +++ b/pkgs/gawk/gawk.nm @@ -25,8 +25,8 @@ include $(PKGROOT)/Include
PKG_NAME = gawk -PKG_VER = 3.1.8 -PKG_REL = 0 +PKG_VER = 4.0.0 +PKG_REL = 1
PKG_MAINTAINER = PKG_GROUPS = Base System/Tools @@ -34,31 +34,33 @@ PKG_URL = http://www.gnu.org/software/gawk/gawk.html PKG_LICENSE = GPLv3+ PKG_SUMMARY = The GNU version of the awk text processing utility.
+# Needed for testsuite. +PKG_BUILD_DEPS+= util-linux + define PKG_DESCRIPTION The gawk package contains the GNU version of awk, a text processing \ utility. Awk interprets a special-purpose programming language to do \ quick and easy text pattern matching and reformatting jobs. endef
-PKG_TARBALL = $(THISAPP).tar.bz2 +PKG_TARBALL = $(THISAPP).tar.xz
-############################################################################### -# Installation Details -############################################################################### +CONFIGURE_OPTIONS += \ + --bindir=/bin \ + --libexecdir=/usr/lib \ + --with-libsigsegv-prefix=no
-define STAGE_BUILD - cd $(DIR_APP) && \ - ac_cv_func_working_mktime=yes \ - ./configure \ - --prefix=/usr \ - --libexecdir=/usr/lib +define STAGE_TEST + cd $(DIR_APP) && make check diffout +endef
- cd $(DIR_APP) && echo "#define HAVE_LANGINFO_CODESET 1" >> config.h - cd $(DIR_APP) && echo "#define HAVE_LC_MESSAGES 1" >> config.h +define STAGE_INSTALL_CMDS + -mkdir -pv $(BUILDROOT)/usr/bin + ln -svf ../../bin/awk $(BUILDROOT)/usr/bin/awk + ln -svf ../../bin/gawk $(BUILDROOT)/usr/bin/gawk
- cd $(DIR_APP) && make $(PARALLELISMFLAGS) -endef + mv -v $(BUILDROOT)/bin/{p,i}gawk $(BUILDROOT)/usr/bin/
-define STAGE_TEST - cd $(DIR_APP) && make check + # Remove versioned binary. + rm -rfv $(BUILDROOT)/bin/{,p}gawk-* endef
hooks/post-receive -- IPFire 3.x development tree