diff options
author | vs <vs@FreeBSD.org> | 2004-06-04 22:45:11 +0800 |
---|---|---|
committer | vs <vs@FreeBSD.org> | 2004-06-04 22:45:11 +0800 |
commit | abc2a955b006f10aea12fd19c4584182d999d56f (patch) | |
tree | 79b1a950c677d91092ca049aaccfef00271e9ba0 /audio/mpmf20 | |
parent | b708ebd145b310434e81a042bcb9e9dee37156d9 (diff) | |
download | freebsd-ports-gnome-abc2a955b006f10aea12fd19c4584182d999d56f.tar.gz freebsd-ports-gnome-abc2a955b006f10aea12fd19c4584182d999d56f.tar.zst freebsd-ports-gnome-abc2a955b006f10aea12fd19c4584182d999d56f.zip |
- Does not build on ia64 & sparc64 (inb/outb & friends)
- ffs()-clash only affects i386
Diffstat (limited to 'audio/mpmf20')
-rw-r--r-- | audio/mpmf20/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/audio/mpmf20/Makefile b/audio/mpmf20/Makefile index 5fc9909cea2a..6d21f75fc9cb 100644 --- a/audio/mpmf20/Makefile +++ b/audio/mpmf20/Makefile @@ -15,12 +15,14 @@ EXTRACT_SUFX= .tgz MAINTAINER= ports@FreeBSD.org COMMENT= File transfer tool for the MPMan MP-F20 portable MP3-player +NOT_FOR_ARCHS= ia64 sparc64 + MAKEFILE= makefile PLIST_FILES= bin/mpmf20 .include <bsd.port.pre.mk> -.if ${OSVERSION} > 500000 && ${OSVERSION} < 502108 +.if ${ARCH} == i386 && ${OSVERSION} > 500000 && ${OSVERSION} < 502108 BROKEN= "ffs() clash, see i386/41930" .endif |