diff options
author | David W. Chapman Jr. <dwcjr@FreeBSD.org> | 2001-06-18 08:14:16 +0000 |
---|---|---|
committer | David W. Chapman Jr. <dwcjr@FreeBSD.org> | 2001-06-18 08:14:16 +0000 |
commit | fb633e312691dade5664886c3a94db6b8297a4eb (patch) | |
tree | ec452667b0cf228ea6c3d2ff9a45dab92debd67c /databases/firebird/Makefile | |
parent | 0933f4f819aabd5fd1db367b0ae657255caab9d6 (diff) | |
download | ports-fb633e312691dade5664886c3a94db6b8297a4eb.tar.gz ports-fb633e312691dade5664886c3a94db6b8297a4eb.zip |
Link to correct crypt lib on -current.
PR: 26154
Submitted by: Scot W. Hetzel <hetzels@westbend.net>
Notes
Notes:
svn path=/head/; revision=44160
Diffstat (limited to 'databases/firebird/Makefile')
-rw-r--r-- | databases/firebird/Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/databases/firebird/Makefile b/databases/firebird/Makefile index 02cbff7bc2e9..28a23455f090 100644 --- a/databases/firebird/Makefile +++ b/databases/firebird/Makefile @@ -23,6 +23,8 @@ LDCONFIG_DIRS= %%PREFIX%%/firebird/lib ONLY_FOR_ARCHS= i386 +.include <bsd.port.pre.mk> + do-extract: @${MKDIR} ${WRKDIR} @( \ @@ -31,6 +33,11 @@ do-extract: ${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 @@ do-install: ${CP} ${FILESDIR}/RELNOTES ${PREFIX}/firebird/ \ ) -.include <bsd.port.mk> +.include <bsd.port.post.mk> |