Date: Mon, 9 Apr 2001 10:20:02 -0700 (PDT) From: "Scot W. Hetzel" <hetzels@westbend.net> To: freebsd-ports@FreeBSD.org Subject: Re: ports/26154: databases/firebird doesn't compile Message-ID: <200104091720.f39HK2i06856@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
The following reply was made to PR ports/26154; it has been noted by GNATS. From: "Scot W. Hetzel" <hetzels@westbend.net> To: freebsd-gnats-submit@FreeBSD.org, Alex Zepeda <jazepeda@pacbell.net>, "Geoffrey C. Speicher" <geoff@sea-incorporated.com> Cc: Subject: Re: ports/26154: databases/firebird doesn't compile Date: Mon, 9 Apr 2001 12:21:36 -0500 (CDT) The attached patch changes descrypt to crypt for 5-CURRENT. Since descrypt is now merged into libcrypt for 5-CURRENT. Scot diff -ruN firebird.orig/Makefile firebird/Makefile --- firebird.orig/Makefile Sat Mar 10 14:32:33 2001 +++ firebird/Makefile Mon Apr 9 12:04:32 2001 @@ -23,6 +23,8 @@ ONLY_FOR_ARCHS= i386 +.include <bsd.port.pre.mk> + do-extract: @${MKDIR} ${WRKDIR} @( \ @@ -31,6 +33,11 @@ ${CP} msgs/msg.gbak misc/msg.gbak \ ) +.if ${OSVERSION} < 500016 +post-patch: + ${PERL} -pi -e 's,\-ldescrypt,\-lcrypt,g' ${WRKSRC}/builds/original/prefix.freebsd +.endif + do-configure: @( \ cd ${WRKDIR}/interbase; \ @@ -60,4 +67,4 @@ ${CP} ${FILESDIR}/RELNOTES ${PREFIX}/firebird/ \ ) -.include <bsd.port.mk> +.include <bsd.port.post.mk> To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200104091720.f39HK2i06856>