diff options
author | fredb <fredb@pkgsrc.org> | 2000-09-29 15:40:27 +0000 |
---|---|---|
committer | fredb <fredb@pkgsrc.org> | 2000-09-29 15:40:27 +0000 |
commit | 4eb78ac859eccf4587a74896fbf9f42e2283c2f1 (patch) | |
tree | ebf9305e184527399397fbd4d41dd946ce600c18 /net | |
parent | 18b224db82c2bdbbe72ee6082188d49c82188081 (diff) | |
download | pkgsrc-4eb78ac859eccf4587a74896fbf9f42e2283c2f1.tar.gz |
Unify ONLY_FOR_PLATFORM to clarify conditions, somewhat, under which
coda/lwp may be built and run. "lwp" needs custom pmap handling in assy
language. Only "lwp" is needed to build and run a coda server; client's
also need to have the MI CODA filesystem enabled. In fact, it seems
that sparc64 has the CODA file system even the assembler in "lwp" is
only for sparc, and mac68k is the only m68k port with the CODA filesystem,
but such would be cumbersome to express with the present framework.
Diffstat (limited to 'net')
-rw-r--r-- | net/coda5_client/Makefile | 6 | ||||
-rw-r--r-- | net/coda5_server/Makefile | 5 | ||||
-rw-r--r-- | net/coda_client/Makefile | 7 | ||||
-rw-r--r-- | net/coda_server/Makefile | 6 |
4 files changed, 14 insertions, 10 deletions
diff --git a/net/coda5_client/Makefile b/net/coda5_client/Makefile index e2a66ce7aca..2ab5f25d3cc 100644 --- a/net/coda5_client/Makefile +++ b/net/coda5_client/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.24 2000/07/31 09:09:57 rh Exp $ +# $NetBSD: Makefile,v 1.25 2000/09/29 15:40:29 fredb Exp $ # DISTNAME= coda-5.3.5 @@ -14,7 +14,9 @@ DEPENDS+= lwp>=1.1:../../devel/lwp DEPENDS+= ncurses>=4.2:../../devel/ncurses DEPENDS+= readline>=4.0:../../devel/readline -#LICENSE= GPL +# Requires "lwp" plus "filesystem CODA" to operate. Should build on +# any NetBSD-*-m68k, though. +ONLY_FOR_PLATFORM= NetBSD-*-i386 NetBSD-*-m68k NetBSD-*-sparc* ALL_TARGET= coda INSTALL_TARGET= client-install diff --git a/net/coda5_server/Makefile b/net/coda5_server/Makefile index 1bda2d31551..99a9d28cde9 100644 --- a/net/coda5_server/Makefile +++ b/net/coda5_server/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.24 2000/07/31 08:42:01 rh Exp $ +# $NetBSD: Makefile,v 1.25 2000/09/29 15:40:29 fredb Exp $ # DISTNAME= coda-5.3.5 @@ -14,7 +14,8 @@ DEPENDS+= lwp>=1.1:../../devel/lwp DEPENDS+= ncurses>=4.2:../../devel/ncurses DEPENDS+= readline>=4.0:../../devel/readline -#LICENSE= GPL +# Only enable platforms that can build "lwp". +ONLY_FOR_PLATFORM= NetBSD-*-i386 NetBSD-*-m68k NetBSD-*-sparc ALL_TARGET= coda INSTALL_TARGET= server-install diff --git a/net/coda_client/Makefile b/net/coda_client/Makefile index 7f24ac70c4b..f6c4572d186 100644 --- a/net/coda_client/Makefile +++ b/net/coda_client/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.14 2000/09/11 08:27:59 tron Exp $ +# $NetBSD: Makefile,v 1.15 2000/09/29 15:40:29 fredb Exp $ # DISTNAME= coda-4.6.6 @@ -14,8 +14,9 @@ HOMEPAGE= http://www.coda.cs.cmu.edu/ DEPENDS+= gdbm>=1.7.3:../../databases/gdbm DEPENDS+= readline>=4.0:../../devel/readline -ONLY_FOR_PLATFORM= NetBSD-*-* -NOT_FOR_PLATFORM= NetBSD-*-alpha # needs custom asm. +# Requires "lwp" plus "filesystem CODA" to operate. Should build on +# any NetBSD-*-m68k, though. +ONLY_FOR_PLATFORM= NetBSD-*-i386 NetBSD-*-m68k NetBSD-*-sparc* ALL_TARGET= coda INSTALL_TARGET= client-install diff --git a/net/coda_server/Makefile b/net/coda_server/Makefile index 8ae502d7d8b..39cdc2f3867 100644 --- a/net/coda_server/Makefile +++ b/net/coda_server/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.12 2000/07/20 15:41:07 tron Exp $ +# $NetBSD: Makefile,v 1.13 2000/09/29 15:40:29 fredb Exp $ # DISTNAME= coda-4.6.6 @@ -13,8 +13,8 @@ HOMEPAGE= http://www.coda.cs.cmu.edu/ DEPENDS+= gdbm>=1.7.3:../../databases/gdbm DEPENDS+= readline>=4.0:../../devel/readline -ONLY_FOR_PLATFORM= NetBSD-*-* -NOT_FOR_PLATFORM= *-*-alpha # needs custom asm. +# Only enable platforms that can build "lwp". +ONLY_FOR_PLATFORM= NetBSD-*-i386 NetBSD-*-m68k NetBSD-*-sparc ALL_TARGET= coda INSTALL_TARGET= server-install |