Revision: 5189
          http://ipcop.svn.sourceforge.net/ipcop/?rev=5189&view=rev
Author:   gespinasse
Date:     2010-11-29 20:44:29 +0000 (Mon, 29 Nov 2010)

Log Message:
-----------
Add pax-utils utility
This is not pax, just a set of tools that help to easy check our compilation
As noted in doc/compilation-design, scanelf -qtR is very helpfull to track 
TEXTREL
We will now be able to do that inside our chroot. Nothing is include

Modified Paths:
--------------
    ipcop/trunk/make.sh

Added Paths:
-----------
    ipcop/trunk/config/rootfiles/common/pax-utils
    ipcop/trunk/lfs/pax-utils

Added: ipcop/trunk/config/rootfiles/common/pax-utils
===================================================================
--- ipcop/trunk/config/rootfiles/common/pax-utils                               
(rev 0)
+++ ipcop/trunk/config/rootfiles/common/pax-utils       2010-11-29 20:44:29 UTC 
(rev 5189)
@@ -0,0 +1,14 @@
+#usr/bin/dumpelf
+#usr/bin/lddtree
+#usr/bin/pspax
+#usr/bin/scanelf
+#usr/bin/scanmacho
+#usr/bin/symtree
+#usr/share/doc/pax-utils
+#usr/share/doc/pax-utils/BUGS
+#usr/share/doc/pax-utils/README
+#usr/share/doc/pax-utils/TODO
+#usr/share/man/man1/dumpelf.1
+#usr/share/man/man1/pspax.1
+#usr/share/man/man1/scanelf.1
+#usr/share/man/man1/scanmacho.1

Added: ipcop/trunk/lfs/pax-utils
===================================================================
--- ipcop/trunk/lfs/pax-utils                           (rev 0)
+++ ipcop/trunk/lfs/pax-utils   2010-11-29 20:44:29 UTC (rev 5189)
@@ -0,0 +1,88 @@
+###############################################################################
+# 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 <[email protected]>                        
#
+#                                                                             #
+# Modifications by:                                                           #
+# ??-12-2003 Mark Wormgoor < [email protected]>                               #
+#          - Modified Makefile for IPCop build                                #
+#                                                                             #
+# $Id$
+#                                                                             #
+###############################################################################
+
+###############################################################################
+# Definitions
+###############################################################################
+
+include Config
+
+PKG_NAME   = pax-utils
+VER        = 0.2.1
+HOST_ARCH  = all
+OTHER_SRC  = yes
+
+THISAPP    = $(PKG_NAME)-$(VER)
+DL_FILE    = $(THISAPP).tar.bz2
+DL_FROM    = http://dev.gentoo.org/~vapier/dist
+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 = 2bf53234580e02294453a40c864f5871
+
+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) : $(firstword $(MAKEFILE_LIST)) $(patsubst %,$(DIR_DL)/%,$(objects))
+       @$(PREBUILD)
+       @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE)
+
+       cd $(DIR_APP) && make install
+
+       @rm -rf $(DIR_APP)
+       @$(POSTBUILD)


Property changes on: ipcop/trunk/lfs/pax-utils
___________________________________________________________________
Added: svn:keywords
   + Id Revision

Modified: ipcop/trunk/make.sh
===================================================================
--- ipcop/trunk/make.sh 2010-11-28 22:01:48 UTC (rev 5188)
+++ ipcop/trunk/make.sh 2010-11-29 20:44:29 UTC (rev 5189)
@@ -1814,6 +1814,7 @@
        chroot_make openssh
        chroot_make openswan
        chroot_make openvpn
+       chroot_make pax-utils           # for compilation QA
        chroot_make pptp
        chroot_make radiusplugin        # OpenVPN
        chroot_make rrdtool


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

------------------------------------------------------------------------------
Increase Visibility of Your 3D Game App & Earn a Chance To Win $500!
Tap into the largest installed PC base & get more eyes on your game by
optimizing for Intel(R) Graphics Technology. Get started today with the
Intel(R) Software Partner Program. Five $500 cash prizes are up for grabs.
http://p.sf.net/sfu/intelisp-dev2dev
_______________________________________________
Ipcop-svn mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/ipcop-svn

Reply via email to