Revision: 6252
          http://ipcop.svn.sourceforge.net/ipcop/?rev=6252&view=rev
Author:   owes
Date:     2012-01-21 16:21:09 +0000 (Sat, 21 Jan 2012)
Log Message:
-----------
Add IO-Socket-SSL so sendEmail can use TLS

Modified Paths:
--------------
    ipcop/trunk/make.sh
    ipcop/trunk/updates/2.0.3/ROOTFILES.i486-2.0.3
    ipcop/trunk/updates/2.0.3/information.xml

Added Paths:
-----------
    ipcop/trunk/config/rootfiles/common/IO-Socket-SSL
    ipcop/trunk/lfs/IO-Socket-SSL

Added: ipcop/trunk/config/rootfiles/common/IO-Socket-SSL
===================================================================
--- ipcop/trunk/config/rootfiles/common/IO-Socket-SSL                           
(rev 0)
+++ ipcop/trunk/config/rootfiles/common/IO-Socket-SSL   2012-01-21 16:21:09 UTC 
(rev 6252)
@@ -0,0 +1,8 @@
+#usr/lib/perl5/site_perl/PERLVER/IO
+#usr/lib/perl5/site_perl/PERLVER/IO/Socket
+usr/lib/perl5/site_perl/PERLVER/IO/Socket/SSL.pm
+#usr/lib/perl5/site_perl/PERLVER/MACHINE-linux/auto/IO
+#usr/lib/perl5/site_perl/PERLVER/MACHINE-linux/auto/IO/Socket
+#usr/lib/perl5/site_perl/PERLVER/MACHINE-linux/auto/IO/Socket/SSL
+#usr/lib/perl5/site_perl/PERLVER/MACHINE-linux/auto/IO/Socket/SSL/.packlist
+#usr/share/man/man3/IO::Socket::SSL.3

Added: ipcop/trunk/lfs/IO-Socket-SSL
===================================================================
--- ipcop/trunk/lfs/IO-Socket-SSL                               (rev 0)
+++ ipcop/trunk/lfs/IO-Socket-SSL       2012-01-21 16:21:09 UTC (rev 6252)
@@ -0,0 +1,94 @@
+###############################################################################
+# 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   = IO-Socket-SSL
+VER        = 1.54
+HOST_ARCH  = all
+OTHER_SRC  = yes
+
+THISAPP    = $(PKG_NAME)-$(VER)
+DL_FILE    = $(THISAPP).tar.gz
+DL_FROM    = $(URL_CPAN)/S/SU/SULLR
+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 = 3d091d3de33a8ca2fe5f75172b1a329b
+
+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) && sed -i "s%,'y'%,'n'%" Makefile.PL
+       cd $(DIR_APP) && yes 'n' | 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/IO-Socket-SSL
___________________________________________________________________
Added: svn:keywords
   + Id

Modified: ipcop/trunk/make.sh
===================================================================
--- ipcop/trunk/make.sh 2012-01-21 16:15:54 UTC (rev 6251)
+++ ipcop/trunk/make.sh 2012-01-21 16:21:09 UTC (rev 6252)
@@ -1850,6 +1850,7 @@
        chroot_make Digest-HMAC
        chroot_make GD
        chroot_make libwww-perl
+       chroot_make IO-Socket-SSL
        chroot_make Locale-Maketext-Gettext
        chroot_make NetAddr-IP
        chroot_make Net-DNS

Modified: ipcop/trunk/updates/2.0.3/ROOTFILES.i486-2.0.3
===================================================================
--- ipcop/trunk/updates/2.0.3/ROOTFILES.i486-2.0.3      2012-01-21 16:15:54 UTC 
(rev 6251)
+++ ipcop/trunk/updates/2.0.3/ROOTFILES.i486-2.0.3      2012-01-21 16:21:09 UTC 
(rev 6252)
@@ -147,6 +147,9 @@
 /usr/lib/libfreetype.so.6
 /usr/lib/libfreetype.so.6.8.0
 ##
+## IO-Socket-SSL-1.54
+/usr/lib/perl5/site_perl/5.10.1/IO/Socket/SSL.pm
+##
 ## libraries linked to freetype
 /usr/lib/libcairo.so
 /usr/lib/libcairo.so.2

Modified: ipcop/trunk/updates/2.0.3/information.xml
===================================================================
--- ipcop/trunk/updates/2.0.3/information.xml   2012-01-21 16:15:54 UTC (rev 
6251)
+++ ipcop/trunk/updates/2.0.3/information.xml   2012-01-21 16:21:09 UTC (rev 
6252)
@@ -3,7 +3,7 @@
         <version>2.0.3</version>
         <releasedate>2012-01-dd</releasedate>
         <size>0</size>
-        <description>Add again capi4k-utils plugins. Add wget.&lt;br /&gt;
+        <description>Add again capi4k-utils plugins. Add wget. Add TLS support 
for sendEmail&lt;br /&gt;
             Disable traffic accounting with detail level High, always use 
Low.&lt;br /&gt;
             Patch krb5-1.9.2 against MITKRB5-SA-2011-007.&lt;br /&gt;
             More gnupg-1.4.11 hardening. Patched ulogd-1.24.&lt;br /&gt;

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


------------------------------------------------------------------------------
Try before you buy = See our experts in action!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-dev2
_______________________________________________
Ipcop-svn mailing list
Ipcop-svn@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ipcop-svn

Reply via email to