[prev in list] [next in list] [prev in thread] [next in thread] 

List:       ipcop-svn
Subject:    [Ipcop-svn] SF.net SVN: ipcop:[3502] ipcop/trunk
From:       gespinasse () users ! sourceforge ! net
Date:       2009-08-28 6:33:56
Message-ID: E1Mgv24-0006G9-8C () dn4whf1 ! ch3 ! sourceforge ! com
[Download RAW message or body]

Revision: 3502
          http://ipcop.svn.sourceforge.net/ipcop/?rev=3502&view=rev
Author:   gespinasse
Date:     2009-08-28 06:33:55 +0000 (Fri, 28 Aug 2009)

Log Message:
-----------
Upgrade xz from 4.999.8beta to 4.999.9beta
This fix a bug in the compressor.

Change lfs name to xz, so corresponding rootfile is found
Nothing is include in iso for now as xz compression is cpu intensive operation

Modified Paths:
--------------
    ipcop/trunk/config/rootfiles/common/xz
    ipcop/trunk/make.sh

Added Paths:
-----------
    ipcop/trunk/lfs/xz

Removed Paths:
-------------
    ipcop/trunk/lfs/xzutils

Modified: ipcop/trunk/config/rootfiles/common/xz
===================================================================
--- ipcop/trunk/config/rootfiles/common/xz	2009-08-27 17:13:08 UTC (rev 3501)
+++ ipcop/trunk/config/rootfiles/common/xz	2009-08-28 06:33:55 UTC (rev 3502)
@@ -1,5 +1,3 @@
-## xz-4.999.8beta
-##
 #bin/lzcat
 #bin/lzcmp
 #bin/lzdiff

Copied: ipcop/trunk/lfs/xz (from rev 3501, ipcop/trunk/lfs/xzutils)
===================================================================
--- ipcop/trunk/lfs/xz	                        (rev 0)
+++ ipcop/trunk/lfs/xz	2009-08-28 06:33:55 UTC (rev 3502)
@@ -0,0 +1,99 @@
+###############################################################################
+# This file is part of the IPCop Firewall.                                    #
+#                                                                             #
+# IPCop is free software; you can redistribute it and/or modify               #
+# it under the terms of the GNU General Public License as published by        #
+# the Free Software Foundation; either version 2 of the License, or           #
+# (at your option) any later version.                                         #
+#                                                                             #
+# IPCop is distributed in the hope that it will be useful,                    #
+# but WITHOUT ANY WARRANTY; without even the implied warranty of              #
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the               #
+# GNU General Public License for more details.                                #
+#                                                                             #
+# You should have received a copy of the GNU General Public License           #
+# along with IPCop; if not, write to the Free Software                        #
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA    #
+#                                                                             #
+# Makefiles are based on LFSMake, which is                                    #
+# Copyright (C) 2002 Rod Roard <rod@sunsetsystems.com>                        #
+#                                                                             #
+# Modifications by:                                                           #
+# ??-12-2003 Mark Wormgoor < mark@wormgoor.com>                               #
+#          - Modified Makefile for IPCop build                                #
+#                                                                             #
+# $Id$
+#                                                                             #
+###############################################################################
+
+###############################################################################
+# Definitions
+###############################################################################
+
+include Config
+
+PKG_NAME   = xz
+VER        = 4.999.9beta
+HOST_ARCH  = all
+OTHER_SRC  = yes
+
+THISAPP    = $(PKG_NAME)-$(VER)
+DL_FILE    = $(THISAPP).tar.gz
+DL_FROM    = http://tukaani.org/xz
+DIR_APP    = $(DIR_SRC)/$(THISAPP)
+TARGET     = $(DIR_INFO)/$(STAGE_ORDER)_$(STAGE)/$(THISAPP)
+
+###############################################################################
+# Top-level Rules
+###############################################################################
+objects = $(DL_FILE)
+
+$(DL_FILE)				= $(DL_FROM)/$(DL_FILE)
+
+$(DL_FILE)_MD5				= f2073579b6da2fe35d453adee1aaf1b2
+
+install : $(TARGET)
+
+check : $(patsubst %,$(DIR_CHK)/%,$(objects))
+
+download :$(patsubst %,$(DIR_DL)/%,$(objects))
+
+md5 : $(subst %,%_MD5,$(objects))
+
+###############################################################################
+# Downloading, checking, md5sum
+###############################################################################
+
+$(patsubst %,$(DIR_CHK)/%,$(objects)) :
+	@$(CHECK)
+
+$(patsubst %,$(DIR_DL)/%,$(objects)) :
+	@$(LOAD)
+
+$(subst %,%_MD5,$(objects)) :
+	@$(MD5)
+
+###############################################################################
+# Installation Details
+###############################################################################
+
+$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
+	@$(PREBUILD)
+	@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
+
+ifeq "$(STAGE)" "toolchain"
+	cd $(DIR_APP) && ./configure	--prefix=/$(TOOLS_DIR) --disable-static
+	cd $(DIR_APP) && make -j $(PARALLELISM)
+	cd $(DIR_APP) && make install
+endif
+
+ifeq "$(STAGE)" "base"
+	cd $(DIR_APP) && ./configure	--prefix=/usr \
+					--bindir=/bin \
+					--disable-static
+	cd $(DIR_APP) && make -j $(PARALLELISM)
+	cd $(DIR_APP) && make install
+endif
+
+	@rm -rf $(DIR_APP)
+	@$(POSTBUILD)

Deleted: ipcop/trunk/lfs/xzutils
===================================================================
--- ipcop/trunk/lfs/xzutils	2009-08-27 17:13:08 UTC (rev 3501)
+++ ipcop/trunk/lfs/xzutils	2009-08-28 06:33:55 UTC (rev 3502)
@@ -1,99 +0,0 @@
-###############################################################################
-# This file is part of the IPCop Firewall.                                    #
-#                                                                             #
-# IPCop is free software; you can redistribute it and/or modify               #
-# it under the terms of the GNU General Public License as published by        #
-# the Free Software Foundation; either version 2 of the License, or           #
-# (at your option) any later version.                                         #
-#                                                                             #
-# IPCop is distributed in the hope that it will be useful,                    #
-# but WITHOUT ANY WARRANTY; without even the implied warranty of              #
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the               #
-# GNU General Public License for more details.                                #
-#                                                                             #
-# You should have received a copy of the GNU General Public License           #
-# along with IPCop; if not, write to the Free Software                        #
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA    #
-#                                                                             #
-# Makefiles are based on LFSMake, which is                                    #
-# Copyright (C) 2002 Rod Roard <rod@sunsetsystems.com>                        #
-#                                                                             #
-# Modifications by:                                                           #
-# ??-12-2003 Mark Wormgoor < mark@wormgoor.com>                               #
-#          - Modified Makefile for IPCop build                                #
-#                                                                             #
-# $Id$
-#                                                                             #
-###############################################################################
-
-###############################################################################
-# Definitions
-###############################################################################
-
-include Config
-
-PKG_NAME   = xzutils
-VER        = 4.999.8beta
-HOST_ARCH  = all
-OTHER_SRC  = yes
-
-THISAPP    = xz-$(VER)
-DL_FILE    = $(THISAPP).tar.gz
-DL_FROM    = http://tukaani.org/xz
-DIR_APP    = $(DIR_SRC)/$(THISAPP)
-TARGET     = $(DIR_INFO)/$(STAGE_ORDER)_$(STAGE)/$(THISAPP)
-
-###############################################################################
-# Top-level Rules
-###############################################################################
-objects = $(DL_FILE)
-
-$(DL_FILE)				= $(DL_FROM)/$(DL_FILE)
-
-$(DL_FILE)_MD5				= f00967331a487e88d51207fe17c56f52
-
-install : $(TARGET)
-
-check : $(patsubst %,$(DIR_CHK)/%,$(objects))
-
-download :$(patsubst %,$(DIR_DL)/%,$(objects))
-
-md5 : $(subst %,%_MD5,$(objects))
-
-###############################################################################
-# Downloading, checking, md5sum
-###############################################################################
-
-$(patsubst %,$(DIR_CHK)/%,$(objects)) :
-	@$(CHECK)
-
-$(patsubst %,$(DIR_DL)/%,$(objects)) :
-	@$(LOAD)
-
-$(subst %,%_MD5,$(objects)) :
-	@$(MD5)
-
-###############################################################################
-# Installation Details
-###############################################################################
-
-$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
-	@$(PREBUILD)
-	@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
-
-ifeq "$(STAGE)" "toolchain"
-	cd $(DIR_APP) && ./configure	--prefix=/$(TOOLS_DIR) --disable-static
-	cd $(DIR_APP) && make -j $(PARALLELISM)
-	cd $(DIR_APP) && make install
-endif
-
-ifeq "$(STAGE)" "base"
-	cd $(DIR_APP) && ./configure	--prefix=/usr \
-					--bindir=/bin \
-					--disable-static
-	cd $(DIR_APP) && make -j $(PARALLELISM)
-	cd $(DIR_APP) && make install
-endif
-
-	@rm -rf $(DIR_APP)
-	@$(POSTBUILD)

Modified: ipcop/trunk/make.sh
===================================================================
--- ipcop/trunk/make.sh	2009-08-27 17:13:08 UTC (rev 3501)
+++ ipcop/trunk/make.sh	2009-08-28 06:33:55 UTC (rev 3502)
@@ -1582,7 +1582,7 @@
 	toolchain_make ncurses
 	toolchain_make bash
 	toolchain_make bzip2
-	toolchain_make xzutils
+	toolchain_make xz
 	toolchain_make coreutils
 	toolchain_make diffutils
 	toolchain_make e2fsprogs


This was sent by the SourceForge.net collaborative development platform, the world's \
largest Open Source development site.

------------------------------------------------------------------------------
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
_______________________________________________
Ipcop-svn mailing list
Ipcop-svn@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ipcop-svn


[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic