2012-07-12 10:06:58 +00:00
|
|
|
OPENSSL_VERSION = 1.0.1c
|
2012-05-24 13:34:22 +00:00
|
|
|
OPENSSL = openssl-$(OPENSSL_VERSION)
|
|
|
|
OPENSSL_TGZ = $(OPENSSL).tar.gz
|
|
|
|
OPENSSL_URL = https://www.openssl.org/source/$(OPENSSL_TGZ)
|
|
|
|
|
|
|
|
# local openssl src
|
|
|
|
OPENSSL_SRC = src/lib/openssl
|
|
|
|
|
|
|
|
#
|
|
|
|
# Interface to top-level prepare Makefile
|
|
|
|
#
|
|
|
|
PORTS += $(OPENSSL)
|
|
|
|
|
|
|
|
prepare-openssl: $(CONTRIB_DIR)/$(OPENSSL) include/openssl generate_asm
|
|
|
|
|
|
|
|
#$(CONTRIB_DIR)/$(OPENSSL):
|
|
|
|
|
|
|
|
#
|
|
|
|
# Port-specific local rules
|
|
|
|
#
|
|
|
|
$(DOWNLOAD_DIR)/$(OPENSSL_TGZ):
|
|
|
|
$(VERBOSE)wget -c -P $(DOWNLOAD_DIR) $(OPENSSL_URL) && touch $@
|
|
|
|
|
|
|
|
$(CONTRIB_DIR)/$(OPENSSL): $(DOWNLOAD_DIR)/$(OPENSSL_TGZ)
|
|
|
|
$(VERBOSE)tar xfz $< -C $(CONTRIB_DIR) && touch $@
|
|
|
|
|
|
|
|
#
|
|
|
|
# Generate ASM codes
|
|
|
|
#
|
|
|
|
|
2012-07-12 10:06:58 +00:00
|
|
|
generate_asm: $(OPENSSL_SRC)/x86_64/modexp512.s $(OPENSSL_SRC)/x86_64/rc4_md5.s
|
2012-05-24 13:34:22 +00:00
|
|
|
|
2012-05-29 12:22:13 +00:00
|
|
|
$(OPENSSL_SRC)/x86_64/modexp512.s:
|
|
|
|
$(VERBOSE)perl $(CONTRIB_DIR)/$(OPENSSL)/crypto/bn/asm/modexp512-x86_64.pl \
|
|
|
|
$(CONTRIB_DIR)/$(OPENSSL_DIR)/crypto/perlasm/x86as.pl > $@
|
|
|
|
|
|
|
|
$(OPENSSL_SRC)/x86_64/rc4_md5.s:
|
|
|
|
$(VERBOSE)perl $(CONTRIB_DIR)/$(OPENSSL)/crypto/rc4/asm/rc4-md5-x86_64.pl \
|
|
|
|
$(CONTRIB_DIR)/$(OPENSSL_DIR)/crypto/perlasm/x86as.pl > $@
|
|
|
|
|
2012-05-24 13:34:22 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# Install openssl headers
|
|
|
|
#
|
|
|
|
include/openssl:
|
|
|
|
$(VERBOSE)mkdir -p $@
|
|
|
|
$(VERBOSE)for i in `find $(CONTRIB_DIR)/$(OPENSSL)/include -name *.h`; do \
|
|
|
|
ln -fs ../../$$i include/openssl/; done
|
|
|
|
$(VERBOSE)rm include/openssl/opensslconf.h
|
|
|
|
$(VERBOSE)ln -fs ../../$(CONTRIB_DIR)/$(OPENSSL)/e_os.h include/openssl/
|
|
|
|
$(VERBOSE)ln -fs ../../$(CONTRIB_DIR)/$(OPENSSL)/crypto/md2/md2.h include/openssl/
|
|
|
|
$(VERBOSE)ln -fs ../../$(CONTRIB_DIR)/$(OPENSSL)/crypto/rc5/rc5.h include/openssl/
|
|
|
|
$(VERBOSE)ln -fs ../../$(CONTRIB_DIR)/$(OPENSSL)/crypto/store/store.h include/openssl/
|
|
|
|
|
|
|
|
clean-openssl:
|
2012-07-12 10:06:58 +00:00
|
|
|
$(VERBOSE)rm -rf include/openssl
|
2012-05-24 13:34:22 +00:00
|
|
|
$(VERBOSE)rm -rf $(CONTRIB_DIR)/$(OPENSSL)
|
|
|
|
$(VERBOSE)rm -rf $(OPENSSL_SRC)/x86_32/*.s $(OPENSSL_SRC)/x86_64/*.s
|