Index: head/security/krb5-devel/Makefile =================================================================== --- head/security/krb5-devel/Makefile (revision 472761) +++ head/security/krb5-devel/Makefile (revision 472762) @@ -1,115 +1,115 @@ # Created by: nectar@FreeBSD.org # $FreeBSD$ PORTNAME= krb5 PORTVERSION= 1.17.${MIT_COMMIT_DATE} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= security .if !defined(MASTERDIR) PKGNAMESUFFIX= -devel .endif HASH= 9ef59b4 MIT_COMMIT_DATE= 2018.05.14 PATCH_SITES= http://web.mit.edu/kerberos/advisories/ PATCH_DIST_STRIP= -p2 MAINTAINER= cy@FreeBSD.org COMMENT= MIT implementation of RFC 4120 network authentication service LICENSE= MIT USE_GITHUB= yes GH_TAGNAME= ${HASH} CONFLICTS= heimdal-[0-9]* srp-[0-9]* krb5-11[345]-[0-9]* \ krb5-1.[0-9]* KERBEROSV_URL= http://web.mit.edu/kerberos/ USE_PERL5= build USE_LDCONFIG= yes USE_CSTD= gnu99 GNU_CONFIGURE= yes USES= autoreconf cpe gmake localbase perl5 libtool:build \ gssapi:bootstrap,mit pkgconfig:run ssl CONFIGURE_ARGS?= --enable-shared --without-system-verto \ --disable-rpath --localstatedir="${PREFIX}/var" CONFIGURE_ENV= INSTALL="${INSTALL}" INSTALL_LIB="${INSTALL_LIB}" YACC="${YACC}" MAKE_ARGS= INSTALL="${INSTALL}" INSTALL_LIB="${INSTALL_LIB}" CPE_VENDOR= mit CPE_VERSION= 5-${PORTVERSION} CPE_PRODUCT= kerberos OPTIONS_DEFINE= EXAMPLES NLS DNS_FOR_REALM LDAP OPTIONS_DEFAULT= KRB5_PDF KRB5_HTML READLINE OPTIONS_RADIO= CMD_LINE_EDITING OPTIONS_RADIO_CMD_LINE_EDITING= READLINE READLINE_PORT LIBEDIT CMD_LINE_EDITING_DESC= Command line editing for kadmin and ktutil DNS_FOR_REALM_DESC= Enable DNS lookups for Kerberos realm names DNS_FOR_REALM_CONFIGURE_ENABLE= dns-for-realm LDAP= Enable LDAP support LDAP_USE= OPENLDAP=yes LDAP_CONFIGURE_WITH= ldap NLS_USES= gettext READLINE_USES= readline READLINE_PORT_DESC= Command line editing via devel/readline READLINE_PORT_USES= readline:port LIBEDIT_USES= libedit LIBEDIT_CONFIGURE_WITH= libedit .if defined(KRB5_HOME) PREFIX= ${KRB5_HOME} .endif CPPFLAGS+= -I${OPENSSLINC} LDFLAGS+= -L${OPENSSLLIB} USE_RC_SUBR= kpropd OPTIONS_SUB= yes WRKSRC_SUBDIR= src PORTEXAMPLES= kdc.conf krb5.conf services.append .include # Fix up -Wl,-rpath in LDFLAGS .if !empty(KRB5_HOME) _RPATH= ${KRB5_HOME}/lib: .else _RPATH= ${LOCALBASE}/lib: .endif .if !empty(LDFLAGS:M-Wl,-rpath,*) .for F in ${LDFLAGS:M-Wl,-rpath,*} LDFLAGS:= -Wl,-rpath,${_RPATH}${F:S/-Wl,-rpath,//} \ ${LDFLAGS:N-Wl,-rpath,*} .endfor .endif .if defined(KRB5_HOME) && ${KRB5_HOME} != ${LOCALBASE} BROKEN= LIB_DEPENDS when using KRB5_HOME is broken .endif # OPTIONS helper causes conflicting with/without .if ${PORT_OPTIONS:MREADLINE} || ${PORT_OPTIONS:MREADLINE_PORT} CONFIGURE_ARGS+= --with-readline .else CONFIGURE_ARGS+= --without-readline .endif .if defined(PROGRAM_TRANSFORM_NAME) && ${PROGRAM_TRANSFORM_NAME} != "" CONFIGURE_ARGS+= --program-transform-name="${PROGRAM_TRANSFORM_NAME}" .endif .include post-install: @${MKDIR} ${STAGEDIR}${PREFIX}/share/doc/krb5 ${ECHO_CMD} @dir share/doc/krb5 >> ${TMPPLIST} post-install-LDAP-on: ${MKDIR} ${STAGEDIR}${DATADIR} ${INSTALL_DATA} ${WRKSRC}/plugins/kdb/ldap/libkdb_ldap/kerberos.schema \ ${STAGEDIR}${DATADIR} ${INSTALL_DATA} ${WRKSRC}/plugins/kdb/ldap/libkdb_ldap/kerberos.ldif \ ${STAGEDIR}${DATADIR} .include Index: head/security/krb5-devel/files/patch-include_krb5_krb5.hin =================================================================== --- head/security/krb5-devel/files/patch-include_krb5_krb5.hin (nonexistent) +++ head/security/krb5-devel/files/patch-include_krb5_krb5.hin (revision 472762) @@ -0,0 +1,74 @@ +--- include/krb5/krb5.hin.orig 2018-05-12 22:15:24.000000000 -0700 ++++ include/krb5/krb5.hin 2018-06-18 23:46:02.119491000 -0700 +@@ -3566,7 +3566,7 @@ + */ + krb5_error_code KRB5_CALLCONV + krb5_unparse_name(krb5_context context, krb5_const_principal principal, +- register char **name); ++ char **name); + + /** + * Convert krb5_principal structure to string and length. +@@ -4389,7 +4389,7 @@ + */ + krb5_error_code KRB5_CALLCONV_WRONG + krb5_principal2salt(krb5_context context, +- register krb5_const_principal pr, krb5_data *ret); ++ krb5_const_principal pr, krb5_data *ret); + /* librc.spec--see rcache.h */ + + /* libcc.spec */ +@@ -4730,7 +4730,7 @@ + * This function frees the contents of @a val and the structure itself. + */ + void KRB5_CALLCONV +-krb5_free_error(krb5_context context, register krb5_error *val); ++krb5_free_error(krb5_context context, krb5_error *val); + + /** + * Free a krb5_creds structure. +@@ -4763,7 +4763,7 @@ + * This function frees the contents of @a val and the structure itself. + */ + void KRB5_CALLCONV +-krb5_free_checksum(krb5_context context, register krb5_checksum *val); ++krb5_free_checksum(krb5_context context, krb5_checksum *val); + + /** + * Free the contents of a krb5_checksum structure. +@@ -4774,7 +4774,7 @@ + * This function frees the contents of @a val, but not the structure itself. + */ + void KRB5_CALLCONV +-krb5_free_checksum_contents(krb5_context context, register krb5_checksum *val); ++krb5_free_checksum_contents(krb5_context context, krb5_checksum *val); + + /** + * Free a krb5_keyblock structure. +@@ -4785,7 +4785,7 @@ + * This function frees the contents of @a val and the structure itself. + */ + void KRB5_CALLCONV +-krb5_free_keyblock(krb5_context context, register krb5_keyblock *val); ++krb5_free_keyblock(krb5_context context, krb5_keyblock *val); + + /** + * Free the contents of a krb5_keyblock structure. +@@ -4796,7 +4796,7 @@ + * This function frees the contents of @a key, but not the structure itself. + */ + void KRB5_CALLCONV +-krb5_free_keyblock_contents(krb5_context context, register krb5_keyblock *key); ++krb5_free_keyblock_contents(krb5_context context, krb5_keyblock *key); + + /** + * Free a krb5_ap_rep_enc_part structure. +@@ -4912,7 +4912,7 @@ + * Kerberos error codes + */ + krb5_error_code KRB5_CALLCONV +-krb5_timeofday(krb5_context context, register krb5_timestamp *timeret); ++krb5_timeofday(krb5_context context, krb5_timestamp *timeret); + + /** + * Check if a timestamp is within the allowed clock skew of the current time. Property changes on: head/security/krb5-devel/files/patch-include_krb5_krb5.hin ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property