diff options
author | vs <vs@FreeBSD.org> | 2004-05-15 22:58:04 +0800 |
---|---|---|
committer | vs <vs@FreeBSD.org> | 2004-05-15 22:58:04 +0800 |
commit | 7c616fc00c603b4094a44ed152777c330ea2b86b (patch) | |
tree | d3c7a0b812eef5e7eda45302b439440be0262ee6 | |
parent | 8f4c9ecdfee5066211653e1b02f41aebea508db4 (diff) | |
download | freebsd-ports-graphics-7c616fc00c603b4094a44ed152777c330ea2b86b.tar.gz freebsd-ports-graphics-7c616fc00c603b4094a44ed152777c330ea2b86b.tar.zst freebsd-ports-graphics-7c616fc00c603b4094a44ed152777c330ea2b86b.zip |
Note OSVERSION-interval during which this port was broken because of ffs().
Requested by: linimon
-rw-r--r-- | audio/mpmf20/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/audio/mpmf20/Makefile b/audio/mpmf20/Makefile index 07cf78d8df1..5fc9909cea2 100644 --- a/audio/mpmf20/Makefile +++ b/audio/mpmf20/Makefile @@ -18,7 +18,13 @@ COMMENT= File transfer tool for the MPMan MP-F20 portable MP3-player MAKEFILE= makefile PLIST_FILES= bin/mpmf20 +.include <bsd.port.pre.mk> + +.if ${OSVERSION} > 500000 && ${OSVERSION} < 502108 +BROKEN= "ffs() clash, see i386/41930" +.endif + do-install: @${INSTALL_PROGRAM} ${WRKSRC}/mpmf20 ${PREFIX}/bin -.include <bsd.port.mk> +.include <bsd.port.post.mk> |