diff options
author | joerg <joerg@pkgsrc.org> | 2005-12-12 14:43:23 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2005-12-12 14:43:23 +0000 |
commit | 1f6a39a84e10fec37df3728c67f6821cc88e7231 (patch) | |
tree | 97ae5019218968b99f2894114562532ab97bb4da /emulators/m1 | |
parent | 7923936df560993a53a43905e2f693c1d5d6fdba (diff) | |
download | pkgsrc-1f6a39a84e10fec37df3728c67f6821cc88e7231.tar.gz |
First step at reworking Linux binary packages.
Change most pkgs to depend on either
emulators/suse_linux/Makefile.application (normal pkgs) or
Makefile.common (suse91 and suse themselves) to filter out Operating
Systems without Linux ABI support. Use CPU masks to limit the pkg to
supported platforms.
Diffstat (limited to 'emulators/m1')
-rw-r--r-- | emulators/m1/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/emulators/m1/Makefile b/emulators/m1/Makefile index e7fe2652523..9a002594f10 100644 --- a/emulators/m1/Makefile +++ b/emulators/m1/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2005/09/28 20:52:20 rillig Exp $ +# $NetBSD: Makefile,v 1.4 2005/12/12 14:43:23 joerg Exp $ # DISTNAME= m1074b2-lnx @@ -11,7 +11,11 @@ MAINTAINER= wiz@NetBSD.org HOMEPAGE= http://www.emuhype.com/index.phtml?s=misc&ss=index COMMENT= Arcade video and pinball game sound emulator (Linux binary) +.include "../../emulators/suse_linux/Makefile.application" + +.if !defined(USE_NATIVE_LINUX) DEPENDS+= suse_base>=6.4:../../emulators/${SUSE_DIR_PREFIX}_compat +.endif ONLY_FOR_PLATFORM= *-*-i386 @@ -28,5 +32,4 @@ do-install: ${INSTALL_DATA_DIR} ${PREFIX}/share/examples/m1 ${INSTALL_DATA} ${WRKSRC}/m1.ini ${PREFIX}/share/examples/m1 -.include "../../emulators/suse_linux/Makefile.application" .include "../../mk/bsd.pkg.mk" |