Author: jhuntwork Date: 2005-04-15 18:23:37 -0600 (Fri, 15 Apr 2005) New Revision: 80
Modified: trunk/packages/openssl/Makefile Log: Upgraded OpenSSL Modified: trunk/packages/openssl/Makefile =================================================================== --- trunk/packages/openssl/Makefile 2005-04-16 00:18:50 UTC (rev 79) +++ trunk/packages/openssl/Makefile 2005-04-16 00:23:37 UTC (rev 80) @@ -2,9 +2,10 @@ # Package versions NM= openssl -VRS= 0.9.7e +VRS= 0.9.7f DIR= $(NM)-$(VRS) FILE= $(DIR).tar.gz +PATCH= http://www.linuxfromscratch.org/blfs/downloads/svn/openssl-0.9.7f-fix_manpages-1.patch URL= http://www.openssl.org/source/$(FILE) #RULES @@ -19,11 +20,10 @@ @echo "=====> Building $(NM) in chroot" @echo "" @if [ ! -f $(FILE) ] ; then $(WD)/bin/$(WGET) $(URL) ; fi + @if [ ! -f $(PATCH) ] ; then $(WD)/bin/$(WGET) $(URL) ; fi @if [ ! -d /etc/ssl ] ; then tar xzvf $(FILE) && cd $(DIR) && \ - sed 's/^passwd/openssl-passwd/' doc/apps/passwd.pod > doc/apps/openssl-passwd.pod && \ - rm doc/apps/passwd.pod && mv doc/crypto/{,openssl_}threads.pod && \ + patch -Np1 -i ../$(PATCH) && \ ./config --openssldir=/etc/ssl --prefix=/usr shared && \ - sed -i '[EMAIL PROTECTED] fips crypto [EMAIL PROTECTED] crypto [EMAIL PROTECTED]' Makefile && \ sed -i 's/mcpu=pentium/mtune=i486/' Configure && \ sed -i 's/mcpu=pentium/mtune=i486/' Makefile && \ make -j3 MANDIR=/usr/share/man && make MANDIR=/usr/share/man install && \ -- http://linuxfromscratch.org/mailman/listinfo/livecd FAQ: http://www.linuxfromscratch.org/faq/ Unsubscribe: See the above information page
