diff options
author | tv <tv> | 1999-05-24 20:39:35 +0000 |
---|---|---|
committer | tv <tv> | 1999-05-24 20:39:35 +0000 |
commit | 230d70fc942c189f4b8f1f2dfbee9bc9a5e8bb37 (patch) | |
tree | 65bbd73001946c26475423bf378f0a1854ed3cb6 /net/coda_server | |
parent | 554432156f0747cbde8c8da5f610d76f8a1a081a (diff) | |
download | pkgsrc-230d70fc942c189f4b8f1f2dfbee9bc9a5e8bb37.tar.gz |
Change {ONLY,NOT}_FOR_{ARCH,OPSYS} format to {ONLY,NOT}_FOR_PLATFORM
pattern match format. Minor pkglint along the way.
Diffstat (limited to 'net/coda_server')
-rw-r--r-- | net/coda_server/Makefile | 33 |
1 files changed, 17 insertions, 16 deletions
diff --git a/net/coda_server/Makefile b/net/coda_server/Makefile index 209a702f931..8d9b39e2025 100644 --- a/net/coda_server/Makefile +++ b/net/coda_server/Makefile @@ -1,25 +1,26 @@ -# $NetBSD: Makefile,v 1.8 1999/04/26 19:08:44 garbled Exp $ +# $NetBSD: Makefile,v 1.9 1999/05/24 20:39:46 tv Exp $ # -DISTNAME= coda-4.6.6 -PKGNAME= coda-server-4.6.6.1 -CATEGORIES= net -MASTER_SITES= ftp://ftp.coda.cs.cmu.edu/pub/coda/src/ -EXTRACT_SUFX= .tgz +DISTNAME= coda-4.6.6 +PKGNAME= coda-server-4.6.6.1 +CATEGORIES= net +MASTER_SITES= ftp://ftp.coda.cs.cmu.edu/pub/coda/src/ +EXTRACT_SUFX= .tgz -MAINTAINER= rvb@cs.cmu.edu -HOMEPAGE= http://www.coda.cs.cmu.edu/ +MAINTAINER= rvb@cs.cmu.edu +HOMEPAGE= http://www.coda.cs.cmu.edu/ -DEPENDS+= gdbm-1.7.3:../../databases/gdbm -DEPENDS+= readline-2.2:../../devel/readline +DEPENDS= gdbm-1.7.3:../../databases/gdbm \ + readline-2.2:../../devel/readline -NOT_FOR_ARCHS= alpha # needs custom asm. +ONLY_FOR_PLATFORM= NetBSD-*-* +NOT_FOR_PLATFORM= *-*-alpha # needs custom asm. -ALL_TARGET= coda -INSTALL_TARGET= server-install +ALL_TARGET= coda +INSTALL_TARGET= server-install -USE_PERL5= yes -GNU_CONFIGURE= yes -USE_GMAKE= yes +USE_PERL5= yes +GNU_CONFIGURE= yes +USE_GMAKE= yes .include "../../mk/bsd.pkg.mk" |