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/xyame | |
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/xyame')
-rw-r--r-- | emulators/xyame/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/emulators/xyame/Makefile b/emulators/xyame/Makefile index 64d068d3ca5..79335a165c6 100644 --- a/emulators/xyame/Makefile +++ b/emulators/xyame/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2005/06/16 06:57:52 jlam Exp $ +# $NetBSD: Makefile,v 1.4 2005/12/12 14:43:25 joerg Exp $ # DISTNAME= xyame038 @@ -10,7 +10,11 @@ MAINTAINER= wiz@NetBSD.org #HOMEPAGE= http://www.geocities.co.jp/Stylish/2068/yame.html COMMENT= Multi-system emulator (Gameboy, NES, and PC-Engine) +.include "../../emulators/suse_linux/Makefile.application" + +.if !defined(USE_NATIVE_LINUX) DEPENDS+= suse_x11>=6.1:../../emulators/${SUSE_DIR_PREFIX}_x11 +.endif WRKSRC= ${WRKDIR} NO_CONFIGURE= yes @@ -25,5 +29,4 @@ do-install: ${INSTALL_PROGRAM} ${WRKSRC}/xyame ${PREFIX}/bin ${INSTALL_MAN} ${WRKSRC}/yame.6 ${PREFIX}/man/man6/xyame.6 -.include "../../emulators/suse_linux/Makefile.application" .include "../../mk/bsd.pkg.mk" |