diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2013-07-26 06:02:30 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2013-07-26 06:02:30 +0000 |
commit | 556fce1540f3bb0c61c19dde1beec7a031271d31 (patch) | |
tree | c44dcc590b0cb7c5ca89c49520a5844bed2b35ef | |
parent | d2cd1b1ab854c1848e413d4de2c078711f5e45d3 (diff) | |
download | ports-556fce1540f3bb0c61c19dde1beec7a031271d31.tar.gz ports-556fce1540f3bb0c61c19dde1beec7a031271d31.zip |
Mark as broken: it needs utmp.h
Notes
Notes:
svn path=/head/; revision=323684
-rw-r--r-- | net/rmsg/Makefile | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/net/rmsg/Makefile b/net/rmsg/Makefile index 20dbae4f61eb..fa992a5820c2 100644 --- a/net/rmsg/Makefile +++ b/net/rmsg/Makefile @@ -1,9 +1,5 @@ -# New ports collection makefile for: rmsg -# Date created: 9 October 1995 -# Whom: torstenb@FreeBSD.org -# +# Created by: torstenb@FreeBSD.org # $FreeBSD$ -# PORTNAME= rmsg PORTVERSION= 1.64 @@ -12,13 +8,18 @@ CATEGORIES= net MASTER_SITES= ftp://ftp.funet.fi/pub/unix/tcpip/ MAINTAINER= ports@FreeBSD.org -COMMENT= A network messaging system +COMMENT= Network messaging system WRKSRC= ${WRKDIR}/rmsg MAN1= rmsg.1 MAN8= rmsgd.8 -MAKE_JOBS_SAFE= yes PLIST_FILES= bin/rmsg sbin/rmsgd USE_RC_SUBR= rmsgd -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${OSVERSION} > 900007 +BROKEN= Does not build after the removal of utmp(5) +.endif + +.include <bsd.port.post.mk> |