diff options
author | tv <tv@pkgsrc.org> | 1999-05-24 20:39:35 +0000 |
---|---|---|
committer | tv <tv@pkgsrc.org> | 1999-05-24 20:39:35 +0000 |
commit | 5c60ed579430954635a901b457a1fe4128eaca47 (patch) | |
tree | 65bbd73001946c26475423bf378f0a1854ed3cb6 /emulators/compat13 | |
parent | 42a1a676be446ce3279f0baeeda7b3dcc1002c13 (diff) | |
download | pkgsrc-5c60ed579430954635a901b457a1fe4128eaca47.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 'emulators/compat13')
-rw-r--r-- | emulators/compat13/Makefile | 30 |
1 files changed, 12 insertions, 18 deletions
diff --git a/emulators/compat13/Makefile b/emulators/compat13/Makefile index 3b85db02389..32c0f7a8572 100644 --- a/emulators/compat13/Makefile +++ b/emulators/compat13/Makefile @@ -1,30 +1,24 @@ -# $NetBSD: Makefile,v 1.2 1999/04/27 11:53:39 tv Exp $ +# $NetBSD: Makefile,v 1.3 1999/05/24 20:39:39 tv Exp $ # -DISTNAME= compat13-${MACHINE_ARCH} -PKGNAME= compat13-1.3.3 -CATEGORIES= emulators -MASTER_SITES= ${MASTER_SITE_LOCAL} +DISTNAME= compat13-${MACHINE_ARCH} +PKGNAME= compat13-1.3.3 +CATEGORIES= emulators +MASTER_SITES= ${MASTER_SITE_LOCAL} -MAINTAINER= tv@netbsd.org -HOMEPAGE= http://www.netbsd.org/Releases/formal-1.3/index.html +MAINTAINER= tv@netbsd.org +HOMEPAGE= http://www.netbsd.org/Releases/formal-1.3/index.html -ONLY_FOR_ARCHS= alpha arm32 i386 m68k mipsel ns32k sparc -ONLY_FOR_OPSYS= NetBSD +ONLY_FOR_PLATFORM= NetBSD-*-{alpha,arm32,i386,m68k,mipsel,ns32k,sparc} +NOT_FOR_PLATFORM= NetBSD-1.3*-* -# this is blank on "ineligible" version -OPSYS_VER!= uname -r -.if (${OPSYS_VER:C/^1\.3.*//} == "") -IGNORE= "NetBSD version not new enough: ${OPSYS_VER}" -.endif - -NO_BUILD= yes +NO_BUILD= .include "../../mk/bsd.prefs.mk" # This installs in /usr to avoid dynamic linker annoyances -LOCALBASE= /usr -NO_MTREE= yes +LOCALBASE= /usr +NO_MTREE= do-install: ${INSTALL_DATA} ${WRKDIR}/lib*.so* ${PREFIX}/lib/ |