diff options
author | roger <roger@FreeBSD.org> | 2001-02-21 15:48:56 +0800 |
---|---|---|
committer | roger <roger@FreeBSD.org> | 2001-02-21 15:48:56 +0800 |
commit | b3e1e2bb7d6147766fd3a672fa5db745bf1e6b26 (patch) | |
tree | 43fc5ad6a21b59fdc80e60e833c3ddcfdf34db1e /graphics/vid | |
parent | b53b225efcefc81cc7cd461ecb65a62af01b3ea6 (diff) | |
download | freebsd-ports-gnome-b3e1e2bb7d6147766fd3a672fa5db745bf1e6b26.tar.gz freebsd-ports-gnome-b3e1e2bb7d6147766fd3a672fa5db745bf1e6b26.tar.zst freebsd-ports-gnome-b3e1e2bb7d6147766fd3a672fa5db745bf1e6b26.zip |
Mark as BROKEN on FreeBSD versions prior to 4.0 as these do not have
the required USB support
Diffstat (limited to 'graphics/vid')
-rw-r--r-- | graphics/vid/Makefile | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/graphics/vid/Makefile b/graphics/vid/Makefile index 6cc491d1891e..db74611f3eb2 100644 --- a/graphics/vid/Makefile +++ b/graphics/vid/Makefile @@ -1,6 +1,6 @@ # New ports collection makefile for: vid # Date created: Tue Dec 5 13:32:13 GMT 2000 -# Whom: Roger Hardiman <roger@freebsd.org? +# Whom: Roger Hardiman <roger@freebsd.org> # # $FreeBSD$ # @@ -13,6 +13,13 @@ MASTER_SITES= http://members.home.com/housel/ MAINTAINER= roger@freebsd.org +.include <bsd.port.pre.mk> + +.if ${OSVERSION} < 400000 +BROKEN= requires FreeBSD 4.0 or later +.endif + + LIB_DEPENDS= pbm:${PORTSDIR}/graphics/netpbm # The port does not understand 'make all' or 'make install' @@ -23,4 +30,5 @@ ALL_TARGET= do-install: ${INSTALL_PROGRAM} ${WRKSRC}/vid ${PREFIX}/bin -.include <bsd.port.mk> +.include <bsd.port.post.mk> + |