]> git.ipfire.org Git - ipfire-3.x.git/commitdiff
Moved perl XML-Parser to an extra package.
authorMichael Tremer <michael.tremer@ipfire.org>
Tue, 27 Jan 2009 21:19:45 +0000 (22:19 +0100)
committerMichael Tremer <michael.tremer@ipfire.org>
Tue, 27 Jan 2009 21:19:45 +0000 (22:19 +0100)
lfs/perl
lfs/perl-xml-parser [new file with mode: 0644]

index b7053913a5c392ed6bddf3ad7c38b0e8f40720af..f5e84c46d561cd2c6d9fe11ac3fd063d885ab80b 100644 (file)
--- a/lfs/perl
+++ b/lfs/perl
@@ -33,16 +33,13 @@ DIR_APP    = $(DIR_SRC)/$(THISAPP)
 
 OBJECT     = $(DIR_INFO)/$(STAGE_ORDER)_$(STAGE)/$(THISAPP)
 
-XMLPARSER  = XML-Parser-2.34
-
 ###############################################################################
 # Top-level Rules
 ###############################################################################
 
 objects = $(DL_FILE) \
        $(THISAPP)-page-1.patch \
-       $(THISAPP)-security_fix-1.patch \
-       $(XMLPARSER).tar.gz
+       $(THISAPP)-security_fix-1.patch
 
 install : $(OBJECT)
 
@@ -110,12 +107,5 @@ ifeq "$(STAGE)" "base"
        rm -f /etc/hosts
 endif
 
-ifeq "$(STAGE)" "ipfire"
-       cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(XMLPARSER).tar.gz
-       cd $(DIR_SRC)/$(XMLPARSER) && perl Makefile.PL
-       cd $(DIR_SRC)/$(XMLPARSER) && make
-       cd $(DIR_SRC)/$(XMLPARSER) && make install
-endif
-
        @rm -rf $(DIR_SRC)/perl*
        @$(POSTBUILD)
diff --git a/lfs/perl-xml-parser b/lfs/perl-xml-parser
new file mode 100644 (file)
index 0000000..3b7b13f
--- /dev/null
@@ -0,0 +1,60 @@
+###############################################################################
+#                                                                             #
+# IPFire.org - A linux based firewall                                         #
+# Copyright (C) 2007  Michael Tremer & Christian Schmidt                      #
+#                                                                             #
+# This program 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 3 of the License, or           #
+# (at your option) any later version.                                         #
+#                                                                             #
+# This program 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 this program.  If not, see <http://www.gnu.org/licenses/>.       #
+#                                                                             #
+###############################################################################
+
+###############################################################################
+# Definitions
+###############################################################################
+
+include Config
+
+PKG_NAME   = XML-Parser
+VER        = 2.34
+
+THISAPP    = $(PKG_NAME)-$(VER)
+DL_FILE    = $(THISAPP).tar.gz
+DIR_APP    = $(DIR_SRC)/$(THISAPP)
+
+OBJECT     = $(DIR_INFO)/$(STAGE_ORDER)_$(STAGE)/$(THISAPP)
+
+###############################################################################
+# Top-level Rules
+###############################################################################
+
+objects = $(DL_FILE)
+
+install : $(OBJECT)
+
+download : $(objects)
+
+$(objects) :
+       @$(LOAD)
+
+###############################################################################
+# Installation Details
+###############################################################################
+
+$(OBJECT) : 
+       @$(PREBUILD)
+       @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
+       cd $(DIR_APP) && perl Makefile.PL
+       cd $(DIR_APP) && make #$(PARALLELISMFLAGS)
+       cd $(DIR_APP) && make install
+       @rm -rf $(DIR_APP)
+       @$(POSTBUILD)