Revision: 7830 http://sourceforge.net/p/ipcop/svn/7830 Author: owes Date: 2015-01-27 13:48:32 +0000 (Tue, 27 Jan 2015) Log Message: ----------- Add CPAN HTTP-Date and HTTP-Message. No longer part of libwww-perl.
Modified Paths: -------------- ipcop/trunk/make.sh Added Paths: ----------- ipcop/trunk/config/rootfiles/common/HTTP-Date ipcop/trunk/config/rootfiles/common/HTTP-Message ipcop/trunk/lfs/HTTP-Date ipcop/trunk/lfs/HTTP-Message Added: ipcop/trunk/config/rootfiles/common/HTTP-Date =================================================================== --- ipcop/trunk/config/rootfiles/common/HTTP-Date (rev 0) +++ ipcop/trunk/config/rootfiles/common/HTTP-Date 2015-01-27 13:48:32 UTC (rev 7830) @@ -0,0 +1,4 @@ +usr/lib/perl5/site_perl/PERLVER/HTTP/Date.pm +#usr/lib/perl5/site_perl/PERLVER/MACHINE-linux/auto/HTTP/Date +#usr/lib/perl5/site_perl/PERLVER/MACHINE-linux/auto/HTTP/Date/.packlist +#usr/share/man/perl/man3/HTTP::Date.3 Added: ipcop/trunk/config/rootfiles/common/HTTP-Message =================================================================== --- ipcop/trunk/config/rootfiles/common/HTTP-Message (rev 0) +++ ipcop/trunk/config/rootfiles/common/HTTP-Message 2015-01-27 13:48:32 UTC (rev 7830) @@ -0,0 +1,24 @@ +#usr/lib/perl5/site_perl/PERLVER/HTTP +usr/lib/perl5/site_perl/PERLVER/HTTP/Config.pm +#usr/lib/perl5/site_perl/PERLVER/HTTP/Headers +usr/lib/perl5/site_perl/PERLVER/HTTP/Headers.pm +usr/lib/perl5/site_perl/PERLVER/HTTP/Headers/Auth.pm +usr/lib/perl5/site_perl/PERLVER/HTTP/Headers/ETag.pm +usr/lib/perl5/site_perl/PERLVER/HTTP/Headers/Util.pm +usr/lib/perl5/site_perl/PERLVER/HTTP/Message.pm +#usr/lib/perl5/site_perl/PERLVER/HTTP/Request +usr/lib/perl5/site_perl/PERLVER/HTTP/Request.pm +usr/lib/perl5/site_perl/PERLVER/HTTP/Request/Common.pm +usr/lib/perl5/site_perl/PERLVER/HTTP/Response.pm +usr/lib/perl5/site_perl/PERLVER/HTTP/Status.pm +#usr/lib/perl5/site_perl/PERLVER/MACHINE-linux/auto/HTTP +#usr/lib/perl5/site_perl/PERLVER/MACHINE-linux/auto/HTTP/Message +#usr/lib/perl5/site_perl/PERLVER/MACHINE-linux/auto/HTTP/Message/.packlist +#usr/share/man/perl/man3/HTTP::Config.3 +#usr/share/man/perl/man3/HTTP::Headers.3 +#usr/share/man/perl/man3/HTTP::Headers::Util.3 +#usr/share/man/perl/man3/HTTP::Message.3 +#usr/share/man/perl/man3/HTTP::Request.3 +#usr/share/man/perl/man3/HTTP::Request::Common.3 +#usr/share/man/perl/man3/HTTP::Response.3 +#usr/share/man/perl/man3/HTTP::Status.3 Added: ipcop/trunk/lfs/HTTP-Date =================================================================== --- ipcop/trunk/lfs/HTTP-Date (rev 0) +++ ipcop/trunk/lfs/HTTP-Date 2015-01-27 13:48:32 UTC (rev 7830) @@ -0,0 +1,93 @@ +############################################################################### +# 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 <r...@sunsetsystems.com> # +# # +# Modifications by: # +# ??-12-2003 Mark Wormgoor < m...@wormgoor.com> # +# - Modified Makefile for IPCop build # +# # +# $Id$ +# # +############################################################################### + +############################################################################### +# Definitions +############################################################################### + +include Config + +PKG_NAME = HTTP-Date +VER = 6.02 +HOST_ARCH = all +OTHER_SRC = yes + +THISAPP = $(PKG_NAME)-$(VER) +DL_FILE = $(THISAPP).tar.gz +DL_FROM = $(URL_CPAN)/G/GA/GAAS +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 = 52b7a0d5982d61be1edb217751d7daba + +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 xf $(DIR_DL)/$(DL_FILE) + + cd $(DIR_APP) && perl Makefile.PL + cd $(DIR_APP) && make +ifeq "$(RUNNING_TEST)" "yes" + -cd $(DIR_APP) && make test TEST_VERBOSE=1 &> $(DIR_TEST)/$(THISAPP)-$(STAGE_ORDER).log +endif + cd $(DIR_APP) && make install + + @rm -rf $(DIR_APP) + @$(POSTBUILD) Property changes on: ipcop/trunk/lfs/HTTP-Date ___________________________________________________________________ Added: svn:keywords ## -0,0 +1 ## +Id \ No newline at end of property Added: ipcop/trunk/lfs/HTTP-Message =================================================================== --- ipcop/trunk/lfs/HTTP-Message (rev 0) +++ ipcop/trunk/lfs/HTTP-Message 2015-01-27 13:48:32 UTC (rev 7830) @@ -0,0 +1,93 @@ +############################################################################### +# 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 <r...@sunsetsystems.com> # +# # +# Modifications by: # +# ??-12-2003 Mark Wormgoor < m...@wormgoor.com> # +# - Modified Makefile for IPCop build # +# # +# $Id$ +# # +############################################################################### + +############################################################################### +# Definitions +############################################################################### + +include Config + +PKG_NAME = HTTP-Message +VER = 6.06 +HOST_ARCH = all +OTHER_SRC = yes + +THISAPP = $(PKG_NAME)-$(VER) +DL_FILE = $(THISAPP).tar.gz +DL_FROM = $(URL_CPAN)/G/GA/GAAS +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 = e563ac516e28d33f65bc0f295f625f85 + +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 xf $(DIR_DL)/$(DL_FILE) + + cd $(DIR_APP) && perl Makefile.PL + cd $(DIR_APP) && make +ifeq "$(RUNNING_TEST)" "yes" + -cd $(DIR_APP) && make test TEST_VERBOSE=1 &> $(DIR_TEST)/$(THISAPP)-$(STAGE_ORDER).log +endif + cd $(DIR_APP) && make install + + @rm -rf $(DIR_APP) + @$(POSTBUILD) Property changes on: ipcop/trunk/lfs/HTTP-Message ___________________________________________________________________ Added: svn:keywords ## -0,0 +1 ## +Id \ No newline at end of property Modified: ipcop/trunk/make.sh =================================================================== --- ipcop/trunk/make.sh 2015-01-27 09:14:54 UTC (rev 7829) +++ ipcop/trunk/make.sh 2015-01-27 13:48:32 UTC (rev 7830) @@ -1930,6 +1930,8 @@ chroot_make DBD-SQLite chroot_make Digest-SHA1 chroot_make Digest-HMAC + chroot_make HTTP-Message + chroot_make HTTP-Date chroot_make libwww-perl chroot_make Locale-Maketext-Gettext chroot_make NetAddr-IP This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. ------------------------------------------------------------------------------ Dive into the World of Parallel Programming. The Go Parallel Website, sponsored by Intel and developed in partnership with Slashdot Media, is your hub for all things parallel software development, from weekly thought leadership blogs to news, videos, case studies, tutorials and more. Take a look and join the conversation now. http://goparallel.sourceforge.net/ _______________________________________________ Ipcop-svn mailing list Ipcop-svn@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/ipcop-svn