diff options
author | osa <osa@FreeBSD.org> | 2003-10-21 15:09:23 +0000 |
---|---|---|
committer | osa <osa@FreeBSD.org> | 2003-10-21 15:09:23 +0000 |
commit | 5f0f2c1ee580c4218d2de12a79514e7e6b471873 (patch) | |
tree | 9cf86a30919fac47639ffc340cb436cd2f15fdcc /multimedia/fxtv/Makefile | |
parent | 6b03e8627ddfd88f6db538aa9d001c1f04a3ef3c (diff) | |
download | FreeBSD-ports-5f0f2c1ee580c4218d2de12a79514e7e6b471873.zip FreeBSD-ports-5f0f2c1ee580c4218d2de12a79514e7e6b471873.tar.gz |
Since the bktr(4) driver does not exist on every
FreeBSD platform, this port needs to be restricted
to those which are supported.
Submitted by: Simon Barner <barner@in.tum.de>
PR: 58334
Diffstat (limited to 'multimedia/fxtv/Makefile')
-rw-r--r-- | multimedia/fxtv/Makefile | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/multimedia/fxtv/Makefile b/multimedia/fxtv/Makefile index 6a02ad5..7a142f4 100644 --- a/multimedia/fxtv/Makefile +++ b/multimedia/fxtv/Makefile @@ -33,7 +33,16 @@ USE_GMAKE= yes MAKE_FLAGS= -e MAN1= fxtv.1 +.include <bsd.port.pre.mk> + +pre-everything:: +.if ${OSVERSION} < 500000 +ONLY_FOR_ARCHS= i386 +.else +ONLY_FOR_ARCHS= alpha i386 ia64 +.endif + pre-install: ${CP} ${WRKSRC}/fxtv.1 ${WRKSRC}/fxtv.man -.include <bsd.port.mk> +.include <bsd.port.post.mk> |