Date: Wed, 27 Jul 2005 23:01:38 -0700 (PDT) From: Roman Bogorodskiy <bogorodskiy@gmail.com> To: FreeBSD-gnats-submit@FreeBSD.org Subject: ports/84207: [ patch ] security/gnutls: update to 1.2.4 - current stable branch Message-ID: <42e874c2.2e5c6ec6.4e80.ffff8a0f@mx.gmail.com> Resent-Message-ID: <200507280610.j6S6ACqk062811@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
>Number: 84207 >Category: ports >Synopsis: [ patch ] security/gnutls: update to 1.2.4 - current stable branch >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Thu Jul 28 06:10:12 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Roman Bogorodskiy >Release: FreeBSD 7.0-CURRENT i386 >Organization: >Environment: System: FreeBSD lame.novel.ru 7.0-CURRENT FreeBSD 7.0-CURRENT #24: Mon Jul 25 22:59:53 MSD 2005 root@lame.novel.ru:/usr/obj/usr/src/sys/NOVEL i386 >Description: - Update to 1.2.4 - current stable branch - Chase shared lib bump for all affected ports - Take maintainership security/gnutls-devel should be removed then. I've tested it in my tinderbox on 4.x-7.x/386. Patch is attached. You can also get it here: update of security/gnutls: http://people.freebsd.org/~novel/patches/freebsd/gnutls-update.diff update of affected ports: http://people.freebsd.org/~novel/patches/freebsd/gnutls-affected-ports.diff >How-To-Repeat: >Fix: Index: Makefile =================================================================== RCS file: /home/ncvs/ports/security/gnutls/Makefile,v retrieving revision 1.24 diff -u -r1.24 Makefile --- Makefile 12 Apr 2005 03:26:27 -0000 1.24 +++ Makefile 28 Jul 2005 05:20:12 -0000 @@ -6,18 +6,19 @@ # PORTNAME= gnutls -PORTVERSION= 1.0.24 -PORTREVISION= 1 +PORTVERSION= 1.2.4 CATEGORIES= security net MASTER_SITES= ${MASTER_SITE_GNUPG} \ http://www.mirrors.wiretapped.net/security/network-security/gnutls/ \ ftp://ftp.mirrors.wiretapped.net/security/network-security/gnutls/ \ + http://josefsson.org/gnutls/releases/ \ ftp://ftp.gnutls.org/pub/gnutls/ MASTER_SITE_SUBDIR= alpha/gnutls -MAINTAINER= sergei@FreeBSD.org +MAINTAINER= novel@FreeBSD.org COMMENT= GNU Transport Layer Security library +BUILD_DEPENDS= ${LOCALBASE}/bin/makeinfo:${PORTSDIR}/print/texinfo LIB_DEPENDS= gcrypt.13:${PORTSDIR}/security/libgcrypt \ gpg-error.1:${PORTSDIR}/security/libgpg-error @@ -29,10 +30,7 @@ LIB_DEPENDS+= tasn1.2:${PORTSDIR}/security/libtasn1 .endif -CONFLICTS= gnutls-devel-[0-9]* - -USE_GPG?= yes -SIG_SUFFIX= .sig +USE_BZIP2= yes USE_ICONV= yes USE_GETTEXT= yes USE_GNOME= pkgconfig @@ -41,13 +39,16 @@ INSTALLS_SHLIB= yes CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}" +MAKE_ARGS= MAKEINFO="${PREFIX}/bin/makeinfo" +CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}" \ + MAKEINFO="${PREFIX}/bin/makeinfo" CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} CONFIGURE_ARGS= --with-included-lzo +MANCOMPRESSED= no -MAN1= certtool.1 gnutls-cli.1 gnutls-cli-debug.1 \ - gnutls-serv.1 srptool.1 -DOCS= AUTHORS NEWS README THANKS doc/tex/*.ps +.if !defined(NOPORTDOCS) +PORTDOCS= AUTHORS NEWS README THANKS +.endif EXAMPLES= doc/examples/*.c post-patch: @@ -59,7 +60,10 @@ cd ${WRKSRC} && ${INSTALL_DATA} ${EXAMPLES} ${EXAMPLESDIR} .if !defined(NOPORTDOCS) @${MKDIR} ${DOCSDIR} - cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${DOCSDIR} +.for i in ${PORTDOCS} + @${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR} +.endfor .endif +.include "Makefile.man" .include <bsd.port.mk> Index: Makefile.man =================================================================== RCS file: Makefile.man diff -N Makefile.man --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ Makefile.man 28 Jul 2005 05:20:12 -0000 @@ -0,0 +1,365 @@ +# vi:ft=make +# $FreeBSD$ + +INFO= gnutls + +MAN1= certtool.1 \ + gnutls-cli.1 \ + gnutls-cli-debug.1 \ + gnutls-serv.1 \ + srptool.1 + +MAN3= gnutls_srp_base64_encode.3 \ + gnutls_srp_base64_encode_alloc.3 \ + gnutls_srp_base64_decode.3 \ + gnutls_srp_base64_decode_alloc.3 \ + gnutls_server_name_get.3 \ + gnutls_server_name_set.3 \ + gnutls_alert_get_name.3 \ + gnutls_alert_send.3 \ + gnutls_error_to_alert.3 \ + gnutls_alert_send_appropriate.3 \ + gnutls_alert_get.3 \ + gnutls_mac_get_name.3 \ + gnutls_compression_get_name.3 \ + gnutls_cipher_get_key_size.3 \ + gnutls_cipher_get_name.3 \ + gnutls_kx_get_name.3 \ + gnutls_protocol_get_name.3 \ + gnutls_cipher_suite_get_name.3 \ + gnutls_perror.3 \ + gnutls_certificate_type_get_name.3 \ + gnutls_sign_algorithm_get_name.3 \ + gnutls_pk_algorithm_get_name.3 \ + gnutls_anon_free_server_credentials.3 \ + gnutls_anon_allocate_server_credentials.3 \ + gnutls_anon_free_client_credentials.3 \ + gnutls_anon_allocate_client_credentials.3 \ + gnutls_credentials_clear.3 \ + gnutls_credentials_set.3 \ + gnutls_auth_get_type.3 \ + gnutls_auth_server_get_type.3 \ + gnutls_auth_client_get_type.3 \ + gnutls_record_check_pending.3 \ + gnutls_certificate_free_keys.3 \ + gnutls_certificate_free_cas.3 \ + gnutls_certificate_free_ca_names.3 \ + gnutls_certificate_free_credentials.3 \ + gnutls_certificate_allocate_credentials.3 \ + gnutls_certificate_server_set_request.3 \ + gnutls_certificate_client_set_retrieve_function.3 \ + gnutls_certificate_server_set_retrieve_function.3 \ + gnutls_certificate_verify_peers2.3 \ + gnutls_db_set_ptr.3 \ + gnutls_certificate_expiration_time_peers.3 \ + gnutls_certificate_activation_time_peers.3 \ + gnutls_db_set_retrieve_function.3 \ + gnutls_db_set_remove_function.3 \ + gnutls_db_set_store_function.3 \ + gnutls_db_get_ptr.3 \ + gnutls_db_set_cache_expiration.3 \ + gnutls_db_check_entry.3 \ + gnutls_db_remove_session.3 \ + gnutls_dh_params_import_raw.3 \ + gnutls_dh_params_init.3 \ + gnutls_dh_params_deinit.3 \ + gnutls_dh_params_cpy.3 \ + gnutls_dh_params_generate2.3 \ + gnutls_dh_params_import_pkcs3.3 \ + gnutls_dh_params_export_pkcs3.3 \ + gnutls_dh_params_export_raw.3 \ + gnutls_error_is_fatal.3 \ + gnutls_strerror.3 \ + gnutls_global_set_log_function.3 \ + gnutls_global_set_log_level.3 \ + gnutls_global_set_mem_functions.3 \ + gnutls_global_init.3 \ + gnutls_global_deinit.3 \ + gnutls_transport_set_pull_function.3 \ + gnutls_transport_set_push_function.3 \ + gnutls_check_version.3 \ + gnutls_rehandshake.3 \ + gnutls_handshake.3 \ + gnutls_handshake_set_max_packet_length.3 \ + gnutls_handshake_get_last_in.3 \ + gnutls_handshake_get_last_out.3 \ + gnutls_malloc.3 \ + gnutls_free.3 \ + gnutls_cipher_set_priority.3 \ + gnutls_kx_set_priority.3 \ + gnutls_mac_set_priority.3 \ + gnutls_compression_set_priority.3 \ + gnutls_protocol_set_priority.3 \ + gnutls_set_default_priority.3 \ + gnutls_certificate_type_set_priority.3 \ + gnutls_set_default_export_priority.3 \ + gnutls_protocol_get_version.3 \ + gnutls_transport_set_lowat.3 \ + gnutls_transport_set_ptr.3 \ + gnutls_transport_set_ptr2.3 \ + gnutls_transport_get_ptr.3 \ + gnutls_transport_get_ptr2.3 \ + gnutls_bye.3 \ + gnutls_record_send.3 \ + gnutls_record_recv.3 \ + gnutls_record_get_max_size.3 \ + gnutls_record_set_max_size.3 \ + gnutls_kx_get.3 \ + gnutls_rsa_params_import_raw.3 \ + gnutls_rsa_params_init.3 \ + gnutls_rsa_params_deinit.3 \ + gnutls_rsa_params_cpy.3 \ + gnutls_rsa_params_generate2.3 \ + gnutls_rsa_params_import_pkcs1.3 \ + gnutls_rsa_params_export_pkcs1.3 \ + gnutls_rsa_params_export_raw.3 \ + gnutls_session_get_data.3 \ + gnutls_session_get_id.3 \ + gnutls_session_set_data.3 \ + gnutls_srp_free_client_credentials.3 \ + gnutls_srp_set_client_credentials.3 \ + gnutls_srp_allocate_client_credentials.3 \ + gnutls_srp_free_server_credentials.3 \ + gnutls_srp_allocate_server_credentials.3 \ + gnutls_srp_set_server_credentials_file.3 \ + gnutls_srp_set_server_credentials_function.3 \ + gnutls_srp_set_client_credentials_function.3 \ + gnutls_srp_server_get_username.3 \ + gnutls_srp_verifier.3 \ + gnutls_cipher_get.3 \ + gnutls_certificate_type_get.3 \ + gnutls_mac_get.3 \ + gnutls_init.3 \ + gnutls_compression_get.3 \ + gnutls_deinit.3 \ + gnutls_openpgp_send_key.3 \ + gnutls_certificate_send_x509_rdn_sequence.3 \ + gnutls_handshake_set_private_extensions.3 \ + gnutls_session_is_resumed.3 \ + gnutls_session_get_ptr.3 \ + gnutls_session_set_ptr.3 \ + gnutls_record_get_direction.3 \ + gnutls_dh_get_group.3 \ + gnutls_dh_get_pubkey.3 \ + gnutls_dh_get_prime_bits.3 \ + gnutls_rsa_export_get_pubkey.3 \ + gnutls_dh_get_secret_bits.3 \ + gnutls_dh_set_prime_bits.3 \ + gnutls_rsa_export_get_modulus_bits.3 \ + gnutls_dh_get_peers_public_bits.3 \ + gnutls_certificate_get_ours.3 \ + gnutls_certificate_get_peers.3 \ + gnutls_certificate_client_get_request_status.3 \ + gnutls_fingerprint.3 \ + gnutls_anon_set_server_dh_params.3 \ + gnutls_certificate_set_dh_params.3 \ + gnutls_certificate_free_crls.3 \ + gnutls_anon_set_params_function.3 \ + gnutls_certificate_set_verify_flags.3 \ + gnutls_certificate_set_verify_limits.3 \ + gnutls_certificate_set_params_function.3 \ + gnutls_certificate_set_rsa_export_params.3 \ + gnutls_certificate_set_x509_key_mem.3 \ + gnutls_certificate_set_x509_key.3 \ + gnutls_certificate_set_x509_key_file.3 \ + gnutls_certificate_set_x509_trust_mem.3 \ + gnutls_certificate_set_x509_trust.3 \ + gnutls_certificate_set_x509_trust_file.3 \ + gnutls_pem_base64_encode.3 \ + gnutls_certificate_set_x509_crl_mem.3 \ + gnutls_certificate_set_x509_crl.3 \ + gnutls_certificate_set_x509_crl_file.3 \ + gnutls_pem_base64_encode_alloc.3 \ + gnutls_pem_base64_decode.3 \ + gnutls_pem_base64_decode_alloc.3 \ + gnutls_global_init_extra.3 \ + gnutls_extra_check_version.3 \ + gnutls_certificate_set_openpgp_key_mem.3 \ + gnutls_certificate_set_openpgp_key_file.3 \ + gnutls_certificate_set_openpgp_keyring_file.3 \ + gnutls_certificate_set_openpgp_keyring_mem.3 \ + gnutls_certificate_set_openpgp_keyserver.3 \ + gnutls_certificate_set_openpgp_trustdb.3 \ + gnutls_openpgp_set_recv_key_function.3 \ + gnutls_certificate_set_openpgp_key.3 \ + gnutls_x509_dn_oid_known.3 \ + gnutls_x509_crl_init.3 \ + gnutls_x509_crl_deinit.3 \ + gnutls_x509_crl_import.3 \ + gnutls_x509_crl_get_issuer_dn_by_oid.3 \ + gnutls_pkcs7_init.3 \ + gnutls_x509_crl_get_dn_oid.3 \ + gnutls_x509_crl_get_signature_algorithm.3 \ + gnutls_x509_crl_get_this_update.3 \ + gnutls_x509_crl_get_next_update.3 \ + gnutls_x509_crl_get_crt_count.3 \ + gnutls_x509_crl_sign.3 \ + gnutls_x509_crl_set_this_update.3 \ + gnutls_x509_crl_set_next_update.3 \ + gnutls_x509_crl_set_crt.3 \ + gnutls_x509_crq_init.3 \ + gnutls_x509_crq_deinit.3 \ + gnutls_x509_crq_import.3 \ + gnutls_x509_crq_get_dn.3 \ + gnutls_x509_crq_get_dn_by_oid.3 \ + gnutls_x509_crq_get_challenge_password.3 \ + gnutls_x509_crq_set_attribute_by_oid.3 \ + gnutls_x509_crq_get_attribute_by_oid.3 \ + gnutls_x509_crq_set_dn_by_oid.3 \ + gnutls_x509_crq_set_version.3 \ + gnutls_x509_crq_get_version.3 \ + gnutls_x509_crq_set_key.3 \ + gnutls_x509_crq_set_challenge_password.3 \ + gnutls_x509_crq_sign2.3 \ + gnutls_x509_crq_sign.3 \ + gnutls_x509_crq_export.3 \ + gnutls_x509_crq_get_pk_algorithm.3 \ + gnutls_x509_rdn_get_by_oid.3 \ + gnutls_x509_rdn_get_oid.3 \ + gnutls_pkcs12_bag_init.3 \ + gnutls_pkcs12_bag_deinit.3 \ + gnutls_pkcs12_bag_get_count.3 \ + gnutls_pkcs12_bag_get_data.3 \ + gnutls_pkcs12_bag_set_data.3 \ + gnutls_pkcs12_bag_set_crl.3 \ + gnutls_pkcs12_bag_set_key_id.3 \ + gnutls_pkcs12_bag_get_key_id.3 \ + gnutls_pkcs12_bag_get_friendly_name.3 \ + gnutls_pkcs12_bag_set_friendly_name.3 \ + gnutls_pkcs12_init.3 \ + gnutls_pkcs12_bag_encrypt.3 \ + gnutls_pkcs12_deinit.3 \ + gnutls_pkcs12_import.3 \ + gnutls_pkcs12_export.3 \ + gnutls_pkcs12_get_bag.3 \ + gnutls_pkcs12_set_bag.3 \ + gnutls_pkcs12_generate_mac.3 \ + gnutls_pkcs12_verify_mac.3 \ + gnutls_pkcs7_deinit.3 \ + gnutls_pkcs7_import.3 \ + gnutls_pkcs7_get_crt_raw.3 \ + gnutls_pkcs7_get_crt_count.3 \ + gnutls_pkcs7_set_crt_raw.3 \ + gnutls_pkcs7_set_crt.3 \ + gnutls_pkcs7_delete_crt.3 \ + gnutls_pkcs7_get_crl_raw.3 \ + gnutls_pkcs7_get_crl_count.3 \ + gnutls_pkcs7_set_crl_raw.3 \ + gnutls_pkcs7_set_crl.3 \ + gnutls_pkcs12_bag_get_type.3 \ + gnutls_pkcs12_bag_set_crt.3 \ + gnutls_pkcs12_bag_decrypt.3 \ + gnutls_pkcs7_export.3 \ + gnutls_pkcs7_delete_crl.3 \ + gnutls_x509_crl_get_issuer_dn.3 \ + gnutls_x509_crl_get_version.3 \ + gnutls_x509_crl_get_crt_serial.3 \ + gnutls_x509_crl_export.3 \ + gnutls_x509_crl_set_version.3 \ + gnutls_x509_crl_sign2.3 \ + gnutls_x509_crl_set_crt_serial.3 \ + gnutls_x509_crq_get_dn_oid.3 \ + gnutls_x509_rdn_get.3 \ + gnutls_x509_privkey_init.3 \ + gnutls_x509_privkey_deinit.3 \ + gnutls_x509_privkey_import_rsa_raw.3 \ + gnutls_x509_privkey_cpy.3 \ + gnutls_x509_privkey_import.3 \ + gnutls_x509_privkey_import_dsa_raw.3 \ + gnutls_x509_privkey_get_pk_algorithm.3 \ + gnutls_x509_privkey_export.3 \ + gnutls_x509_privkey_export_rsa_raw.3 \ + gnutls_x509_privkey_export_dsa_raw.3 \ + gnutls_x509_privkey_generate.3 \ + gnutls_x509_privkey_get_key_id.3 \ + gnutls_x509_privkey_sign_data.3 \ + gnutls_x509_privkey_verify_data.3 \ + gnutls_x509_privkey_fix.3 \ + gnutls_x509_privkey_export_pkcs8.3 \ + gnutls_x509_privkey_import_pkcs8.3 \ + gnutls_x509_crl_check_issuer.3 \ + gnutls_x509_crl_verify.3 \ + gnutls_x509_crt_init.3 \ + gnutls_x509_crt_deinit.3 \ + gnutls_x509_crt_import.3 \ + gnutls_x509_crt_get_issuer_dn.3 \ + gnutls_x509_crt_get_issuer_dn_by_oid.3 \ + gnutls_x509_crt_get_issuer_dn_oid.3 \ + gnutls_x509_crt_get_dn.3 \ + gnutls_x509_crt_get_dn_oid.3 \ + gnutls_x509_crt_get_signature_algorithm.3 \ + gnutls_x509_crt_get_version.3 \ + gnutls_x509_crt_get_activation_time.3 \ + gnutls_x509_crt_get_expiration_time.3 \ + gnutls_x509_crt_get_serial.3 \ + gnutls_x509_crt_get_subject_key_id.3 \ + gnutls_x509_crt_get_authority_key_id.3 \ + gnutls_x509_crt_get_pk_algorithm.3 \ + gnutls_x509_crt_get_subject_alt_name.3 \ + gnutls_x509_crt_get_ca_status.3 \ + gnutls_x509_crt_get_key_usage.3 \ + gnutls_x509_crt_get_extension_by_oid.3 \ + gnutls_x509_crt_get_extension_oid.3 \ + gnutls_x509_crt_export.3 \ + gnutls_x509_crt_get_key_id.3 \ + gnutls_x509_crt_check_revocation.3 \ + gnutls_x509_crt_verify_data.3 \ + gnutls_x509_crt_get_crl_dist_points.3 \ + gnutls_x509_crt_get_key_purpose_oid.3 \ + gnutls_x509_crt_check_hostname.3 \ + gnutls_x509_crt_check_issuer.3 \ + gnutls_x509_crt_list_verify.3 \ + gnutls_x509_crt_verify.3 \ + gnutls_x509_crt_get_dn_by_oid.3 \ + gnutls_x509_crt_get_fingerprint.3 \ + gnutls_x509_crt_get_pk_rsa_raw.3 \ + gnutls_x509_crt_get_pk_dsa_raw.3 \ + gnutls_x509_crt_sign2.3 \ + gnutls_x509_crt_list_import.3 \ + gnutls_x509_crt_set_dn_by_oid.3 \ + gnutls_x509_crt_set_issuer_dn_by_oid.3 \ + gnutls_x509_crt_set_version.3 \ + gnutls_x509_crt_set_key.3 \ + gnutls_x509_crt_set_crq.3 \ + gnutls_x509_crt_set_extension_by_oid.3 \ + gnutls_x509_crt_set_ca_status.3 \ + gnutls_x509_crt_set_key_usage.3 \ + gnutls_x509_crt_set_subject_alternative_name.3 \ + gnutls_x509_crt_sign.3 \ + gnutls_x509_crt_set_activation_time.3 \ + gnutls_x509_crt_set_expiration_time.3 \ + gnutls_x509_crt_set_serial.3 \ + gnutls_x509_crt_set_crl_dist_points.3 \ + gnutls_x509_crt_set_subject_key_id.3 \ + gnutls_x509_crt_set_authority_key_id.3 \ + gnutls_x509_crt_set_key_purpose_oid.3 \ + gnutls_x509_crt_to_xml.3 \ + gnutls_x509_crt_cpy_crl_dist_points.3 \ + gnutls_openpgp_keyring_deinit.3 \ + gnutls_openpgp_keyring_check_id.3 \ + gnutls_openpgp_keyring_import.3 \ + gnutls_openpgp_trustdb_init.3 \ + gnutls_openpgp_trustdb_deinit.3 \ + gnutls_openpgp_key_init.3 \ + gnutls_openpgp_key_import.3 \ + gnutls_openpgp_key_export.3 \ + gnutls_openpgp_key_get_fingerprint.3 \ + gnutls_openpgp_key_get_name.3 \ + gnutls_openpgp_key_get_pk_algorithm.3 \ + gnutls_openpgp_key_get_version.3 \ + gnutls_openpgp_key_get_creation_time.3 \ + gnutls_openpgp_key_get_expiration_time.3 \ + gnutls_openpgp_key_get_id.3 \ + gnutls_openpgp_key_check_hostname.3 \ + gnutls_openpgp_key_verify_ring.3 \ + gnutls_openpgp_key_verify_self.3 \ + gnutls_openpgp_key_verify_trustdb.3 \ + gnutls_openpgp_keyring_init.3 \ + gnutls_openpgp_trustdb_import_file.3 \ + gnutls_openpgp_key_deinit.3 \ + gnutls_openpgp_key_get_key_usage.3 \ + gnutls_openpgp_privkey_init.3 \ + gnutls_openpgp_privkey_deinit.3 \ + gnutls_openpgp_privkey_import.3 \ + gnutls_openpgp_key_to_xml.3 \ + gnutls_openpgp_privkey_get_pk_algorithm.3 Index: distinfo =================================================================== RCS file: /home/ncvs/ports/security/gnutls/distinfo,v retrieving revision 1.11 diff -u -r1.11 distinfo --- distinfo 7 Feb 2005 08:19:29 -0000 1.11 +++ distinfo 28 Jul 2005 05:20:12 -0000 @@ -1,4 +1,2 @@ -MD5 (gnutls-1.0.24.tar.gz) = 3debf25f86c8d42670719f654bb19f5e -SIZE (gnutls-1.0.24.tar.gz) = 1623082 -MD5 (gnutls-1.0.24.tar.gz.sig) = 7dd74da88c9ed1f1b6bddf60f7a337ee -SIZE (gnutls-1.0.24.tar.gz.sig) = 184 +MD5 (gnutls-1.2.4.tar.bz2) = 57f97e1544f19e986ea20d5180b013fd +SIZE (gnutls-1.2.4.tar.bz2) = 2446316 Index: pkg-plist =================================================================== RCS file: /home/ncvs/ports/security/gnutls/pkg-plist,v retrieving revision 1.11 diff -u -r1.11 pkg-plist --- pkg-plist 7 Feb 2005 08:19:29 -0000 1.11 +++ pkg-plist 28 Jul 2005 05:20:12 -0000 @@ -3,12 +3,10 @@ bin/gnutls-cli bin/gnutls-cli-debug bin/gnutls-serv -bin/gnutls-srpcrypt bin/libgnutls-config bin/libgnutls-extra-config bin/srptool -include/gnutls/compat4.h -include/gnutls/compat8.h +include/gnutls/compat.h include/gnutls/extra.h include/gnutls/gnutls.h include/gnutls/openpgp.h @@ -18,33 +16,31 @@ lib/libgnutls-extra.a lib/libgnutls-extra.la lib/libgnutls-extra.so -lib/libgnutls-extra.so.12 +lib/libgnutls-extra.so.15 lib/libgnutls-openssl.a lib/libgnutls-openssl.la lib/libgnutls-openssl.so -lib/libgnutls-openssl.so.12 +lib/libgnutls-openssl.so.15 lib/libgnutls.a lib/libgnutls.la lib/libgnutls.so -lib/libgnutls.so.12 +lib/libgnutls.so.15 libdata/pkgconfig/gnutls-extra.pc libdata/pkgconfig/gnutls.pc +@comment info/gnutls.info-1 +@comment info/gnutls.info-2 share/aclocal/libgnutls-extra.m4 share/aclocal/libgnutls.m4 -%%PORTDOCS%%%%DOCSDIR%%/AUTHORS -%%PORTDOCS%%%%DOCSDIR%%/NEWS -%%PORTDOCS%%%%DOCSDIR%%/README -%%PORTDOCS%%%%DOCSDIR%%/THANKS -%%PORTDOCS%%%%DOCSDIR%%/gnutls-logo.ps -%%PORTDOCS%%%%DOCSDIR%%/gnutls.ps -%%PORTDOCS%%@dirrm %%DOCSDIR%% %%EXAMPLESDIR%%/ex-alert.c %%EXAMPLESDIR%%/ex-cert-select.c %%EXAMPLESDIR%%/ex-client-resume.c %%EXAMPLESDIR%%/ex-client-srp.c +%%EXAMPLESDIR%%/ex-client1.c %%EXAMPLESDIR%%/ex-client2.c %%EXAMPLESDIR%%/ex-crq.c %%EXAMPLESDIR%%/ex-pkcs12.c +%%EXAMPLESDIR%%/ex-rfc2818.c +%%EXAMPLESDIR%%/ex-serv-anon.c %%EXAMPLESDIR%%/ex-serv-export.c %%EXAMPLESDIR%%/ex-serv-pgp.c %%EXAMPLESDIR%%/ex-serv-srp.c Index: bitlbee/Makefile =================================================================== RCS file: /home/ncvs/ports/irc/bitlbee/Makefile,v retrieving revision 1.14 diff -u -r1.14 Makefile --- bitlbee/Makefile 12 Mar 2005 10:54:19 -0000 1.14 +++ bitlbee/Makefile 28 Jul 2005 05:20:51 -0000 @@ -25,7 +25,7 @@ PKGMESSAGE= ${WRKDIR}/pkg-message .if defined(WITH_MSN) -LIB_DEPENDS+= gnutls.12:${PORTSDIR}/security/gnutls +LIB_DEPENDS+= gnutls.15:${PORTSDIR}/security/gnutls CONFIGURE_ARGS+= --msn=1 pre-configure: @${ECHO_CMD} "MSN and Jabber/SSL support will be enabled." Index: cherokee/Makefile =================================================================== RCS file: /home/ncvs/ports/www/cherokee/Makefile,v retrieving revision 1.9 diff -u -r1.9 Makefile --- cherokee/Makefile 12 Jul 2005 08:08:20 -0000 1.9 +++ cherokee/Makefile 28 Jul 2005 05:20:51 -0000 @@ -34,7 +34,7 @@ CONFIGURE_ARGS+= --enable-tls=openssl LDFLAGS+= -lssl -lcrypto .else -LIB_DEPENDS+= gnutls.12:${PORTSDIR}/security/gnutls +LIB_DEPENDS+= gnutls.15:${PORTSDIR}/security/gnutls CONFIGURE_ARGS+= --enable-tls=gnutls .endif Index: cups/Makefile.common =================================================================== RCS file: /home/ncvs/ports/print/cups/Makefile.common,v retrieving revision 1.23 diff -u -r1.23 Makefile.common --- cups/Makefile.common 19 Apr 2005 12:38:05 -0000 1.23 +++ cups/Makefile.common 28 Jul 2005 05:20:51 -0000 @@ -79,7 +79,7 @@ .if !defined(WITHOUT_GNUTLS) CONFIGURE_ARGS+= --enable-gnutls --disable-openssl -LIB_DEPENDS+= gnutls-openssl.12:${PORTSDIR}/security/gnutls +LIB_DEPENDS+= gnutls-openssl.15:${PORTSDIR}/security/gnutls .endif CONFIGURE_ARGS+= CPPFLAGS="-I.. -I${LOCALBASE}/include" Index: gkrellm2/Makefile =================================================================== RCS file: /home/ncvs/ports/sysutils/gkrellm2/Makefile,v retrieving revision 1.112 diff -u -r1.112 Makefile --- gkrellm2/Makefile 25 May 2005 16:38:44 -0000 1.112 +++ gkrellm2/Makefile 28 Jul 2005 05:20:51 -0000 @@ -47,7 +47,7 @@ .endif USE_XLIB= yes .if defined(WITH_GNUTLS) -LIB_DEPENDS+= gnutls-openssl.12:${PORTSDIR}/security/gnutls +LIB_DEPENDS+= gnutls-openssl.15:${PORTSDIR}/security/gnutls MAKE_ENV+= GNUTLSINC=${LOCALBASE}/include GNUTLSLIB=${LOCALBASE}/lib \ without-ssl=1 .elif defined(WITH_OPENSSL) Index: gurlchecker/Makefile =================================================================== RCS file: /home/ncvs/ports/www/gurlchecker/Makefile,v retrieving revision 1.14 diff -u -r1.14 Makefile --- gurlchecker/Makefile 5 Apr 2005 16:29:20 -0000 1.14 +++ gurlchecker/Makefile 28 Jul 2005 05:20:51 -0000 @@ -13,7 +13,7 @@ MAINTAINER= kwm@FreeBSD.org COMMENT= A Gnome program to check a page/website for broken links -LIB_DEPENDS= gnutls.12:${PORTSDIR}/security/gnutls \ +LIB_DEPENDS= gnutls.15:${PORTSDIR}/security/gnutls \ gnet-2.0.0:${PORTSDIR}/net/gnet2 USE_X_PREFIX= yes Index: hydra/Makefile =================================================================== RCS file: /home/ncvs/ports/www/hydra/Makefile,v retrieving revision 1.9 diff -u -r1.9 Makefile --- hydra/Makefile 12 Apr 2005 03:26:43 -0000 1.9 +++ hydra/Makefile 28 Jul 2005 05:20:51 -0000 @@ -16,7 +16,7 @@ MAINTAINER= ports@FreeBSD.org COMMENT= A high performance multi-threaded web server -LIB_DEPENDS= gnutls.12:${PORTSDIR}/security/gnutls +LIB_DEPENDS= gnutls.15:${PORTSDIR}/security/gnutls NO_LATEST_LINK= yes USE_REINPLACE= yes Index: libetpan/Makefile =================================================================== RCS file: /home/ncvs/ports/mail/libetpan/Makefile,v retrieving revision 1.24 diff -u -r1.24 Makefile --- libetpan/Makefile 21 Jul 2005 19:14:05 -0000 1.24 +++ libetpan/Makefile 28 Jul 2005 05:20:51 -0000 @@ -25,7 +25,7 @@ LDFLAGS= -L${LOCALBASE}/lib ${PTHREAD_LIBS} .if defined(WITH_GNUTLS) -LIB_DEPENDS+= gnutls.12:${PORTSDIR}/security/gnutls +LIB_DEPENDS+= gnutls.15:${PORTSDIR}/security/gnutls CONFIGURE_ARGS+= --with-gnutls .else USE_OPENSSL= yes Index: libggz/Makefile =================================================================== RCS file: /home/ncvs/ports/games/libggz/Makefile,v retrieving revision 1.7 diff -u -r1.7 Makefile --- libggz/Makefile 26 May 2005 20:48:19 -0000 1.7 +++ libggz/Makefile 28 Jul 2005 05:20:51 -0000 @@ -27,7 +27,7 @@ LDFLAGS= -L${LOCALBASE}/lib ${PTHREAD_LIBS} .if defined(WITH_GNUTLS) -LIB_DEPENDS+= gnutls.12:${PORTSDIR}/security/gnutls +LIB_DEPENDS+= gnutls.15:${PORTSDIR}/security/gnutls CONFIGURE_ARGS+= --with-tls=GnuTLS .else USE_OPENSSL= yes Index: libgnetwork/Makefile =================================================================== RCS file: /home/ncvs/ports/net/libgnetwork/Makefile,v retrieving revision 1.14 diff -u -r1.14 Makefile --- libgnetwork/Makefile 12 Mar 2005 10:53:06 -0000 1.14 +++ libgnetwork/Makefile 28 Jul 2005 05:20:51 -0000 @@ -26,7 +26,7 @@ LDFLAGS="-L${LOCALBASE}/lib" #.if !defined(WITHOUT_SSL) -#LIB_DEPENDS+= gnutls.12:${PORTSDIR}/security/gnutls +#LIB_DEPENDS+= gnutls.15:${PORTSDIR}/security/gnutls #CONFIGURE_ARGS+=--enable-ssl=gnutls #.else CONFIGURE_ARGS+=--enable-ssl=no Index: libnewmail/Makefile =================================================================== RCS file: /home/ncvs/ports/mail/libnewmail/Makefile,v retrieving revision 1.17 diff -u -r1.17 Makefile --- libnewmail/Makefile 2 Jun 2005 20:28:36 -0000 1.17 +++ libnewmail/Makefile 28 Jul 2005 05:20:51 -0000 @@ -14,7 +14,7 @@ MAINTAINER= ports@FreeBSD.org COMMENT= Generic mail checking library -LIB_DEPENDS= gnutls.12:${PORTSDIR}/security/gnutls \ +LIB_DEPENDS= gnutls.15:${PORTSDIR}/security/gnutls \ oop.4:${PORTSDIR}/devel/liboop USE_LIBLTDL= yes Index: libsoup/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/libsoup/Makefile,v retrieving revision 1.28 diff -u -r1.28 Makefile --- libsoup/Makefile 14 Mar 2005 17:48:44 -0000 1.28 +++ libsoup/Makefile 28 Jul 2005 05:20:51 -0000 @@ -30,7 +30,7 @@ PLIST_SUB= VERSION="2.2" .if !defined(WITHOUT_SSL) -LIB_DEPENDS+= gnutls.12:${PORTSDIR}/security/gnutls +LIB_DEPENDS+= gnutls.15:${PORTSDIR}/security/gnutls .else CONFIGURE_ARGS+=--disable-ssl .endif Index: loudmouth/Makefile =================================================================== RCS file: /home/ncvs/ports/net/loudmouth/Makefile,v retrieving revision 1.23 diff -u -r1.23 Makefile --- loudmouth/Makefile 12 Mar 2005 10:53:06 -0000 1.23 +++ loudmouth/Makefile 28 Jul 2005 05:20:51 -0000 @@ -31,7 +31,7 @@ .endif .if defined(WITH_GNUTLS) -LIB_DEPENDS+= gnutls.12:${PORTSDIR}/security/gnutls +LIB_DEPENDS+= gnutls.15:${PORTSDIR}/security/gnutls .else CONFIGURE_ARGS+= --without-ssl .endif Index: moftpd/Makefile =================================================================== RCS file: /home/ncvs/ports/ftp/moftpd/Makefile,v retrieving revision 1.9 diff -u -r1.9 Makefile --- moftpd/Makefile 9 Apr 2005 15:42:27 -0000 1.9 +++ moftpd/Makefile 28 Jul 2005 05:20:55 -0000 @@ -30,7 +30,7 @@ CONFIGURE_ARGS+= --without-tls .elif defined(WITH_GNUTLS) CONFIGURE_ARGS+= --without-openssl -LIB_DEPENDS+= gnutls.12:${PORTSDIR}/security/gnutls +LIB_DEPENDS+= gnutls.15:${PORTSDIR}/security/gnutls LIBS= -L${LOCALBASE}/lib -lgnutls CFLAGS+= -I${LOCALBASE}/include .else Index: morebalance/Makefile =================================================================== RCS file: /home/ncvs/ports/net/morebalance/Makefile,v retrieving revision 1.8 diff -u -r1.8 Makefile --- morebalance/Makefile 28 Jan 2005 09:59:37 -0000 1.8 +++ morebalance/Makefile 28 Jul 2005 05:20:55 -0000 @@ -15,7 +15,7 @@ COMMENT= A modular open source user-space load balancing system LIB_DEPENDS+= pcre.0:${PORTSDIR}/devel/pcre \ - gnutls.12:${PORTSDIR}/security/gnutls \ + gnutls.15:${PORTSDIR}/security/gnutls \ ggz.3:${PORTSDIR}/games/libggz CFLAGS+= ${PTHREAD_CFLAGS} -I${LOCALBASE}/include Index: msmtp/Makefile =================================================================== RCS file: /home/ncvs/ports/mail/msmtp/Makefile,v retrieving revision 1.18 diff -u -r1.18 Makefile --- msmtp/Makefile 20 Jul 2005 10:23:43 -0000 1.18 +++ msmtp/Makefile 28 Jul 2005 05:20:55 -0000 @@ -30,7 +30,7 @@ .endif .if defined(WITH_GNUTLS) -LIB_DEPENDS+= gnutls.12:${PORTSDIR}/security/gnutls +LIB_DEPENDS+= gnutls.15:${PORTSDIR}/security/gnutls CONFIGURE_ARGS+= --with-ssl=gnutls .elif defined (WITH_OPENSSL) USE_OPENSSL= yes Index: retawq/Makefile =================================================================== RCS file: /home/ncvs/ports/www/retawq/Makefile,v retrieving revision 1.23 diff -u -r1.23 Makefile --- retawq/Makefile 6 Jun 2004 01:44:39 -0000 1.23 +++ retawq/Makefile 28 Jul 2005 05:20:55 -0000 @@ -29,7 +29,7 @@ LDFLAGS= -L${LOCALBASE}/lib ${PTHREAD_LIBS} .if defined(WITH_GNUTLS) -LIB_DEPENDS+= gnutls.12:${PORTSDIR}/security/gnutls +LIB_DEPENDS+= gnutls.15:${PORTSDIR}/security/gnutls CONFIGURE_ARGS+= --set-tls=1 .elif defined(WITH_OPENSSL) USE_OPENSSL= yes Index: vlc/Makefile =================================================================== RCS file: /home/ncvs/ports/multimedia/vlc/Makefile,v retrieving revision 1.109 diff -u -r1.109 Makefile --- vlc/Makefile 14 Jul 2005 06:04:04 -0000 1.109 +++ vlc/Makefile 28 Jul 2005 05:20:55 -0000 @@ -653,7 +653,7 @@ .endif .if !defined(WITHOUT_HTTPD) && (defined(WITH_SSL) || exists(${LOCALBASE}/lib/libgnutls.a)) -LIB_DEPENDS+= gnutls.12:${PORTSDIR}/security/gnutls +LIB_DEPENDS+= gnutls.15:${PORTSDIR}/security/gnutls CONFIGURE_ARGS+=--enable-gnutls .else CONFIGURE_ARGS+=--disable-gnutls Index: vlc-devel/Makefile =================================================================== RCS file: /home/ncvs/ports/multimedia/vlc-devel/Makefile,v retrieving revision 1.116 diff -u -r1.116 Makefile --- vlc-devel/Makefile 26 Jul 2005 00:27:27 -0000 1.116 +++ vlc-devel/Makefile 28 Jul 2005 05:20:55 -0000 @@ -675,7 +675,7 @@ .endif .if !defined(WITHOUT_HTTPD) && (defined(WITH_SSL) || exists(${LOCALBASE}/lib/libgnutls.a)) -LIB_DEPENDS+= gnutls.12:${PORTSDIR}/security/gnutls +LIB_DEPENDS+= gnutls.15:${PORTSDIR}/security/gnutls CONFIGURE_ARGS+=--enable-gnutls .else CONFIGURE_ARGS+=--disable-gnutls Index: wmbiff/Makefile =================================================================== RCS file: /home/ncvs/ports/mail/wmbiff/Makefile,v retrieving revision 1.26 diff -u -r1.26 Makefile --- wmbiff/Makefile 12 Jan 2005 07:25:22 -0000 1.26 +++ wmbiff/Makefile 28 Jul 2005 05:20:55 -0000 @@ -23,7 +23,7 @@ .ifdef WITH_GNUTLS LIB_DEPENDS+= gcrypt.13:${PORTSDIR}/security/libgcrypt \ - gnutls.12:${PORTSDIR}/security/gnutls + gnutls.15:${PORTSDIR}/security/gnutls .else CONFIGURE_ARGS+= --disable-crypto .endif Index: wzdftpd/Makefile =================================================================== RCS file: /home/ncvs/ports/ftp/wzdftpd/Makefile,v retrieving revision 1.29 diff -u -r1.29 Makefile --- wzdftpd/Makefile 21 Jul 2005 19:01:09 -0000 1.29 +++ wzdftpd/Makefile 28 Jul 2005 05:20:55 -0000 @@ -61,7 +61,7 @@ .endif .if defined(WITH_GNUTLS) -LIB_DEPENDS+= gnutls.12:${PORTSDIR}/security/gnutls +LIB_DEPENDS+= gnutls.15:${PORTSDIR}/security/gnutls .else CONFIGURE_ARGS+= --disable-gnutls .endif Index: xmlsec1/Makefile =================================================================== RCS file: /home/ncvs/ports/security/xmlsec1/Makefile,v retrieving revision 1.8 diff -u -r1.8 Makefile --- xmlsec1/Makefile 6 Jun 2004 01:44:39 -0000 1.8 +++ xmlsec1/Makefile 28 Jul 2005 05:20:55 -0000 @@ -31,7 +31,7 @@ .if defined(WITH_GNUTLS) CONFIGURE_ARGS+= --with-gnutls="${LOCALBASE}" -LIB_DEPENDS+= gnutls.12:${PORTSDIR}/security/gnutls +LIB_DEPENDS+= gnutls.15:${PORTSDIR}/security/gnutls .else CONFIGURE_ARGS+= --without-gnutls .endif --- foo ends here --- >Release-Note: >Audit-Trail: >Unformatted:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?42e874c2.2e5c6ec6.4e80.ffff8a0f>