Heimdal 1.5.2 problem

Robert Simmons rsimmons0 at gmail.com
Tue May 22 19:08:32 UTC 2012


On Tue, May 22, 2012 at 8:57 AM, Wesley Shields <wxs at freebsd.org> wrote:
> As the person who committed this update I will take responsibility for
> seeing this through. Would you mind opening a PR with this patch and CC
> both myself and the maintainer so it can be properly tracked. I will
> work with both of you to make sure it is addressed.

I got some good feedback about the patch.  I was missing a "\".  Also,
it was noted that I shouldn't make changes to the default settings in
this patch since it is meant to correct a problem.  I removed the
change to default.

Perhaps the different default is not the best solution.  Maybe there
should be a message that at least one backend is needed for the port
to function, but none have been selected by default?

I have attached the updated patch, and I've opened a PR here:
http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/168214
-------------- next part --------------
--- ports/security/heimdal/Makefile.old	2012-05-20 16:19:39.000000000 -0400
+++ ports/security/heimdal/Makefile	2012-05-21 06:58:34.000000000 -0400
@@ -7,13 +7,12 @@
 
 PORTNAME=	heimdal
 PORTVERSION=	1.5.2
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	security ipv6
 MASTER_SITES=	http://www.h5l.org/dist/src/ \
 		http://ftp.pdc.kth.se/pub/heimdal/src/ \
 		ftp://ftp.pdc.kth.se/pub/heimdal/src/ \
-		ftp://ftp.sunet.se/pub/unix/admin/mirror-pdc/heimdal/src/ \
-		ftp://ftp.ayamura.org/pub/heimdal/
+		ftp://ftp.sunet.se/pub/unix/admin/mirror-pdc/heimdal/src/
 
 MAINTAINER=	Joerg.Pulz at frm2.tum.de
 COMMENT=	A popular BSD-licensed implementation of Kerberos 5
@@ -77,10 +76,10 @@
 CFLAGS+=	-I${BDB_INCLUDE_DIR}
 CPPFLAGS+=	-I${BDB_INCLUDE_DIR}
 LDFLAGS+=	-L${BDB_LIB_DIR}
-CONFIGURE_ARGS+=	--with-berkeley-db=${LOCALBASE}
-#			--with-berkeley-db-include=${BDB_INCLUDE_DIR}
+CONFIGURE_ARGS+=	--with-berkeley-db=${LOCALBASE} \
+			--with-berkeley-db-include=${BDB_INCLUDE_DIR}
 .else
-CONFIGURE_ARGS+=	--without-berkeley-db
+CONFIGURE_ARGS+=	--with-berkeley-db=no
 .endif
 
 .if defined(WITH_SQLITE)


More information about the freebsd-ports mailing list