From: Michael Tremer Date: Tue, 27 Jan 2009 21:19:45 +0000 (+0100) Subject: Moved perl XML-Parser to an extra package. X-Git-Tag: v3.0-alpha1~76^2~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e0426a0467db18e01c927d068c72c5b81dce7254;p=ipfire-3.x.git Moved perl XML-Parser to an extra package. --- diff --git a/lfs/perl b/lfs/perl index b7053913a..f5e84c46d 100644 --- 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 index 000000000..3b7b13ff2 --- /dev/null +++ b/lfs/perl-xml-parser @@ -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 . # +# # +############################################################################### + +############################################################################### +# 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)