diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2004-05-30 07:05:35 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2004-05-30 07:05:35 +0000 |
commit | 283777ab5ab46c79bfb7e9deb42c34333590cede (patch) | |
tree | 6ab577696e864839f9d83b0bc76645f171f1f0ba /databases | |
parent | BROKEN on amd64: Does not build (needs to build shared libraries with -fPIC) (diff) |
BROKEN on amd64: Needs to link against shared librarie
Notes
Notes:
svn path=/head/; revision=110362
Diffstat (limited to 'databases')
-rw-r--r-- | databases/ruby-cdb/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/databases/ruby-cdb/Makefile b/databases/ruby-cdb/Makefile index 431ac6c50286..8083148283be 100644 --- a/databases/ruby-cdb/Makefile +++ b/databases/ruby-cdb/Makefile @@ -27,6 +27,12 @@ CDB_PORTDIR= ${PORTSDIR}/databases/cdb WRKSRC= ${WRKDIR}/ruby-${PORTNAME} INSTALL_TARGET= site-install +.include <bsd.port.pre.mk> + +.if ${ARCH} == "amd64" +BROKEN= "Does not build on amd64 (needs to link against shared libraries)" +.endif + post-extract: ${RM} -f ${WRKSRC}/cdb ${LN} -s `cd ${CDB_PORTDIR}; ${MAKE} -V WRKSRC` ${WRKSRC}/cdb @@ -39,4 +45,4 @@ post-install: ${INSTALL_DATA} ${WRKSRC}/README ${RUBY_MODDOCDIR}/ .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |