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 | ae0f7bb6570a72f4f758209a00fd719e85fd5227 (patch) | |
tree | 97ae5019218968b99f2894114562532ab97bb4da /www | |
parent | c1f29c2cdbfd37ad83c7801866c9b1288f1e446c (diff) | |
download | pkgsrc-ae0f7bb6570a72f4f758209a00fd719e85fd5227.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 'www')
-rw-r--r-- | www/asWedit/Makefile | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/www/asWedit/Makefile b/www/asWedit/Makefile index c6c356ae46b..5c41b15a052 100644 --- a/www/asWedit/Makefile +++ b/www/asWedit/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.16 2005/06/17 03:50:40 jlam Exp $ +# $NetBSD: Makefile,v 1.17 2005/12/12 14:43:26 joerg Exp $ DISTNAME= ${PKGNAME}-i386.linux PKGNAME= asWedit-4.0.1 @@ -10,9 +10,13 @@ MAINTAINER= tech-pkg@NetBSD.org #HOMEPAGE= http://www.advasoft.com/asWedit.html COMMENT= Motif HTML and text editor +.include "../../emulators/suse_linux/Makefile.application" + +.if !defined(USE_NATIVE_LINUX) DEPENDS+= suse_libc5>=7.3nb1:../../emulators/suse_libc5 +.endif -ONLY_FOR_PLATFORM= NetBSD-*-i386 +ONLY_FOR_PLATFORM= *-*-i386 RESTRICTED= "No re-distribution" NO_SRC_ON_FTP= ${RESTRICTED} @@ -42,5 +46,4 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/${docs} ${PREFIX}/share/doc/asWedit .endfor -.include "../../emulators/suse_linux/Makefile.application" .include "../../mk/bsd.pkg.mk" |