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/suse91_aspell | |
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/suse91_aspell')
-rw-r--r-- | emulators/suse91_aspell/Makefile | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/emulators/suse91_aspell/Makefile b/emulators/suse91_aspell/Makefile index 1674fd09afe..f163c3d5d0c 100644 --- a/emulators/suse91_aspell/Makefile +++ b/emulators/suse91_aspell/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.4 2005/11/06 14:52:43 salo Exp $ +# $NetBSD: Makefile,v 1.5 2005/12/12 14:43:23 joerg Exp $ DISTNAME= suse_aspell-${SUSE_VERSION} PKGREVISION= 1 @@ -10,15 +10,18 @@ MAINTAINER= jdolecek@NetBSD.org HOMEPAGE= http://www.suse.com/ COMMENT= Linux compatibility package for Aspell library +RPMFILES= aspell-0.50.5-38.4.${SUSE_ARCH}.rpm + +.include "../../emulators/suse_linux/Makefile.application" + +.if !defined(USE_NATIVE_LINUX) DEPENDS+= suse_base>=${SUSE_VERSION}:../../emulators/suse91_base +.endif -ONLY_FOR_PLATFORM= NetBSD-*-i386 FreeBSD-*-i386 +ONLY_FOR_PLATFORM= *-*-i386 EXTRACT_ONLY= # empty NO_BUILD= YES PLIST_SRC= ${WRKDIR}/PLIST_DYNAMIC -RPMFILES= aspell-0.50.5-38.4.${SUSE_ARCH}.rpm - -.include "../../emulators/suse91_linux/Makefile.common" .include "../../mk/bsd.pkg.mk" |