diff options
author | joerg <joerg> | 2005-12-12 14:43:23 +0000 |
---|---|---|
committer | joerg <joerg> | 2005-12-12 14:43:23 +0000 |
commit | 540e0281a4e91b921b54e3d9f8acb7bac1458637 (patch) | |
tree | 97ae5019218968b99f2894114562532ab97bb4da /net/overnet | |
parent | 58cc45f1a9669fddaa13933caba743bb1880c96c (diff) | |
download | pkgsrc-540e0281a4e91b921b54e3d9f8acb7bac1458637.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 'net/overnet')
-rw-r--r-- | net/overnet/Makefile | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/net/overnet/Makefile b/net/overnet/Makefile index 3e678fd5e2a..aca711ee95c 100644 --- a/net/overnet/Makefile +++ b/net/overnet/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.9 2005/09/28 20:52:24 rillig Exp $ +# $NetBSD: Makefile,v 1.10 2005/12/12 14:43:26 joerg Exp $ # DISTNAME= overnetclc-1.0.1 @@ -22,14 +22,14 @@ CHECK_SHLIBS= no EVAL_PREFIX= RPM2PKGDIR=rpm2pkg -ONLY_FOR_PLATFORM= Linux-*-i[3-6]86 NetBSD-*-i386 - -.include "../../mk/bsd.prefs.mk" +.include "../../emulators/suse_linux/Makefile.application" -.if ${OPSYS} != "Linux" +.if !defined(USE_NATIVE_LINUX) DEPENDS+= suse_compat>=7.3:../../emulators/${SUSE_DIR_PREFIX}_compat .endif +ONLY_FOR_PLATFORM= *-*-i386 + INSTALLATION_DIRS= bin do-extract: @@ -47,5 +47,4 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/usr/share/overnetclc/contact.dat \ ${PREFIX}/share/overnetclc -.include "../../emulators/suse_linux/Makefile.application" .include "../../mk/bsd.pkg.mk" |