diff options
author | joerg <joerg> | 2005-12-12 14:43:23 +0000 |
---|---|---|
committer | joerg <joerg> | 2005-12-12 14:43:23 +0000 |
commit | b6040619aa907584751304a36c1d26313cff26e6 (patch) | |
tree | 97ae5019218968b99f2894114562532ab97bb4da /archivers/unace22 | |
parent | 71133dae32f632249eb0e87a1e49bee676db468f (diff) | |
download | pkgsrc-b6040619aa907584751304a36c1d26313cff26e6.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 'archivers/unace22')
-rw-r--r-- | archivers/unace22/Makefile | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/archivers/unace22/Makefile b/archivers/unace22/Makefile index 965c449bdd5..27ab017c972 100644 --- a/archivers/unace22/Makefile +++ b/archivers/unace22/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.11 2005/06/16 06:57:37 jlam Exp $ +# $NetBSD: Makefile,v 1.12 2005/12/12 14:43:23 joerg Exp $ # DISTNAME= linunace22 @@ -17,14 +17,13 @@ MAINTAINER= dillo@NetBSD.org HOMEPAGE= http://www.winace.com/ COMMENT= Extract, list and test files in ACE archives (2.2 linux binary) -ONLY_FOR_PLATFORM= NetBSD-1.5Z[A-Z]-i386 NetBSD-1.6*-i386 \ - NetBSD-[2-9]*-i386 Linux-*-i[3-6]86 +ONLY_FOR_PLATFORM= *-*-i386 WRKSRC= ${WRKDIR} -.include "../../mk/bsd.prefs.mk" +.include "../../emulators/suse_linux/Makefile.application" -.if ${OPSYS} == "NetBSD" +.if !defined(USE_NATIVE_LINUX) DEPENDS+= suse_base>=6.1:../../emulators/${SUSE_DIR_PREFIX}_base DEPENDS+= suse_compat>=6.1:../../emulators/${SUSE_DIR_PREFIX}_compat .endif |