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

List:       ipcop-svn
Subject:    [Ipcop-svn] SF.net SVN: ipcop:[7827] ipcop/trunk
From:       owes () users ! sourceforge ! net
Date:       2015-01-27 7:52:31
Message-ID: E1YG0ws-0007Fa-Qp () sfs-ml-1 ! v29 ! ch3 ! sourceforge ! com
[Download RAW message or body]

Revision: 7827
          http://sourceforge.net/p/ipcop/svn/7827
Author:   owes
Date:     2015-01-27 07:52:31 +0000 (Tue, 27 Jan 2015)
Log Message:
-----------
Add CGI from CPAN. Perl > 5.19 notifies CGI::Carp from core as deprecated.

Modified Paths:
--------------
    ipcop/trunk/make.sh
    ipcop/trunk/updates/2.2.0/ROOTFILES.i486-2.2.0

Added Paths:
-----------
    ipcop/trunk/config/rootfiles/common/CGI
    ipcop/trunk/lfs/CGI

Added: ipcop/trunk/config/rootfiles/common/CGI
===================================================================
--- ipcop/trunk/config/rootfiles/common/CGI	                        (rev 0)
+++ ipcop/trunk/config/rootfiles/common/CGI	2015-01-27 07:52:31 UTC (rev 7827)
@@ -0,0 +1,18 @@
+#usr/lib/perl5/site_perl/PERLVER/CGI
+usr/lib/perl5/site_perl/PERLVER/CGI.pm
+usr/lib/perl5/site_perl/PERLVER/CGI/Carp.pm
+usr/lib/perl5/site_perl/PERLVER/CGI/Cookie.pm
+#usr/lib/perl5/site_perl/PERLVER/CGI/File
+usr/lib/perl5/site_perl/PERLVER/CGI/File/Temp.pm
+usr/lib/perl5/site_perl/PERLVER/CGI/Pretty.pm
+usr/lib/perl5/site_perl/PERLVER/CGI/Push.pm
+usr/lib/perl5/site_perl/PERLVER/CGI/Util.pm
+usr/lib/perl5/site_perl/PERLVER/Fh.pm
+#usr/lib/perl5/site_perl/PERLVER/MACHINE-linux/auto/CGI
+#usr/lib/perl5/site_perl/PERLVER/MACHINE-linux/auto/CGI/.packlist
+#usr/share/man/perl/man3/CGI.3
+#usr/share/man/perl/man3/CGI::Carp.3
+#usr/share/man/perl/man3/CGI::Cookie.3
+#usr/share/man/perl/man3/CGI::Pretty.3
+#usr/share/man/perl/man3/CGI::Push.3
+#usr/share/man/perl/man3/CGI::Util.3

Added: ipcop/trunk/lfs/CGI
===================================================================
--- ipcop/trunk/lfs/CGI	                        (rev 0)
+++ ipcop/trunk/lfs/CGI	2015-01-27 07:52:31 UTC (rev 7827)
@@ -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 <rod@sunsetsystems.com>                        #
+#                                                                             #
+# Modifications by:                                                           #
+# ??-12-2003 Mark Wormgoor < mark@wormgoor.com>                               #
+#          - Modified Makefile for IPCop build                                #
+#                                                                             #
+# $Id$
+#                                                                             #
+###############################################################################
+
+###############################################################################
+# Definitions
+###############################################################################
+
+include Config
+
+PKG_NAME   = CGI
+VER        = 4.13
+HOST_ARCH  = all
+OTHER_SRC  = yes
+
+THISAPP    = $(PKG_NAME)-$(VER)
+DL_FILE    = $(PKG_NAME)-$(VER).tar.gz
+DL_FROM    = $(URL_CPAN)/L/LE/LEEJO
+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 = 1de46434384fc0e59da6b6b407130c20
+
+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 zxf $(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/CGI
___________________________________________________________________
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 07:50:21 UTC (rev 7826)
+++ ipcop/trunk/make.sh	2015-01-27 07:52:31 UTC (rev 7827)
@@ -1922,6 +1922,7 @@
 	chroot_make Archive-Zip		# OpenVPN
 	chroot_make Apache-Htpasswd
 	chroot_make Crypt-PasswdMD5
+	chroot_make CGI
 	chroot_make URI
 	chroot_make HTML-Tagset
 	chroot_make HTML-Parser

Modified: ipcop/trunk/updates/2.2.0/ROOTFILES.i486-2.2.0
===================================================================
--- ipcop/trunk/updates/2.2.0/ROOTFILES.i486-2.2.0	2015-01-27 07:50:21 UTC (rev 7826)
+++ ipcop/trunk/updates/2.2.0/ROOTFILES.i486-2.2.0	2015-01-27 07:52:31 UTC (rev 7827)
@@ -319,6 +319,16 @@
 /usr/lib/perl5/5.20.1/warnings.pm
 /usr/lib/perl5/5.20.1/warnings/register.pm
 ##
+## perl CPAN and/or perl dependend
+/usr/lib/perl5/site_perl/5.20.1/CGI.pm
+/usr/lib/perl5/site_perl/5.20.1/CGI/Carp.pm
+/usr/lib/perl5/site_perl/5.20.1/CGI/Cookie.pm
+/usr/lib/perl5/site_perl/5.20.1/CGI/File/Temp.pm
+/usr/lib/perl5/site_perl/5.20.1/CGI/Pretty.pm
+/usr/lib/perl5/site_perl/5.20.1/CGI/Push.pm
+/usr/lib/perl5/site_perl/5.20.1/CGI/Util.pm
+/usr/lib/perl5/site_perl/5.20.1/Fh.pm
+##
 ## xz-5.2.0
 /usr/bin/xz
 /usr/lib/liblzma.so.5.2.0

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


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

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