diff options
author | nectar <nectar@FreeBSD.org> | 2000-03-31 13:20:41 +0800 |
---|---|---|
committer | nectar <nectar@FreeBSD.org> | 2000-03-31 13:20:41 +0800 |
commit | 34a40a840c284fddfc889ccce46bab1972e0cbb1 (patch) | |
tree | 0e5c295d13091a271981aed14180462bed236b41 /security/heimdal/Makefile | |
parent | 7181c9b69b6d0ca8cc7bf6c4f217faf22021d696 (diff) | |
download | freebsd-ports-gnome-34a40a840c284fddfc889ccce46bab1972e0cbb1.tar.gz freebsd-ports-gnome-34a40a840c284fddfc889ccce46bab1972e0cbb1.tar.zst freebsd-ports-gnome-34a40a840c284fddfc889ccce46bab1972e0cbb1.zip |
Fix packaging: Need to check for com_err when building with Kerberos IV
libraries.
Reported by: bento.freebsd.org
Diffstat (limited to 'security/heimdal/Makefile')
-rw-r--r-- | security/heimdal/Makefile | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/security/heimdal/Makefile b/security/heimdal/Makefile index 6e4e830658be..f98dec81dce1 100644 --- a/security/heimdal/Makefile +++ b/security/heimdal/Makefile @@ -18,7 +18,7 @@ MAINTAINER= nectar@FreeBSD.ORG RESTRICTED= "Crypto; export-controlled" MAN1= ftp.1 kdestroy.1 kgetcred.1 kinit.1 klist.1 kpasswd.1 \ - telnet.1 + telnet.1 kx.1 rxtelnet.1 rxterm.1 tenletxr.1 MAN3= editline.3 krb5_425_conv_principal.3 kafs.3 \ krb5_build_principal.3 krb5_free_principal.3 \ krb5_openlog.3 krb5_parse_name.3 \ @@ -26,15 +26,11 @@ MAN3= editline.3 krb5_425_conv_principal.3 kafs.3 \ krb5_warn.3 MAN5= ftpusers.5 krb5.conf.5 MAN8= ftpd.8 hprop.8 hpropd.8 kdc.8 kpasswdd.8 kstash.8 \ - ktutil.8 push.8 telnetd.8 + ktutil.8 push.8 telnetd.8 kxd.8 USE_LIBTOOL= YES CONFIGURE_ARGS= --prefix=${PREFIX} --enable-shared -.if !defined(KRB5_KRB4_COMPAT) || ${KRB5_KRB4_COMPAT} == "NO" -CONFIGURE_ARGS+= --without-krb4 -.endif - .if defined(HEIMDAL_HOME) PREFIX= ${HEIMDAL_HOME} .endif @@ -57,7 +53,7 @@ WITH_KRB4= yes .if defined(WITH_KRB4) CONFIGURE_ARGS+= --with-krb4 -.else +.elif !defined(KRB5_KRB4_COMPAT) || ${KRB5_KRB4_COMPAT} == "NO" CONFIGURE_ARGS+= --without-krb4 .endif @@ -72,6 +68,12 @@ pre-install: @${CAT} ${PKGDIR}/PLIST.X11 >> ${PLIST} .endif +# awful hack to avoid running automake after patching configure +pre-configure: + @find ${WRKSRC} -name Makefile.in -exec ${TOUCH} {} \; + @${TOUCH} ${WRKSRC}/include/stamp-h.in + @${TOUCH} ${WRKSRC}/include/config.h.in + post-install: install-info ${PREFIX}/info/heimdal.info ${PREFIX}/info/dir ${SETENV} OBJFORMAT="${PORTOBJFORMAT}" ${LDCONFIG} -m ${PREFIX}/lib |