diff options
author | Roger Hardiman <roger@FreeBSD.org> | 2001-02-21 15:48:56 +0800 |
---|---|---|
committer | Roger Hardiman <roger@FreeBSD.org> | 2001-02-21 15:48:56 +0800 |
commit | 272a088a704f026ac14c228d0ac2ae3d79255d28 (patch) | |
tree | 04c8ca3eaffebd2907ab782e1954c4ff9a8a35e7 /graphics | |
parent | 4f4110b15e2d3356905e040b22041ba7e63a719d (diff) | |
download | freebsd-ports-gnome-272a088a704f026ac14c228d0ac2ae3d79255d28.tar.gz freebsd-ports-gnome-272a088a704f026ac14c228d0ac2ae3d79255d28.tar.zst freebsd-ports-gnome-272a088a704f026ac14c228d0ac2ae3d79255d28.zip |
Mark as BROKEN on FreeBSD versions prior to 4.0 as these do not have
the required USB support
Diffstat (limited to 'graphics')
-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> + |