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 /net/skype | |
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 'net/skype')
-rw-r--r-- | net/skype/Makefile | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/net/skype/Makefile b/net/skype/Makefile index be78c2e56c6..ac497294a24 100644 --- a/net/skype/Makefile +++ b/net/skype/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.11 2005/12/05 20:50:49 rillig Exp $ +# $NetBSD: Makefile,v 1.12 2005/12/12 14:43:26 joerg Exp $ # DISTNAME= skype_staticQT-1.2.0.18 @@ -11,15 +11,14 @@ MAINTAINER= tech-pkg@NetBSD.org HOMEPAGE= http://www.skype.com/ COMMENT= P2P VoIP software -.include "../../mk/bsd.prefs.mk" +.include "../../emulators/suse_linux/Makefile.application" -.if ${OPSYS} != "Linux" +.if !defined(USE_NATIVE_LINUX) DEPENDS+= suse_base>=9.1:../../emulators/suse91_base DEPENDS+= suse_glx>=9.1:../../emulators/suse91_glx DEPENDS+= suse_fontconfig>=9.1:../../emulators/suse91_fontconfig DEPENDS+= suse_freetype2>=9.1:../../emulators/suse91_freetype2 DEPENDS+= suse_x11>=9.1:../../emulators/suse91_x11 -.include "../../emulators/suse_linux/Makefile.application" .else .include "../../mk/x11.buildlink3.mk" .endif |