Date: Wed, 11 Sep 2013 16:09:05 +0000 (UTC) From: Boris Samorodov <bsam@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r326990 - head/misc/window Message-ID: <201309111609.r8BG95nj057448@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: bsam Date: Wed Sep 11 16:09:04 2013 New Revision: 326990 URL: http://svnweb.freebsd.org/changeset/ports/326990 Log: . fix build with clang (CFLAGS+=-Wno-return-type); . trim Makefile headers; . reword COMMENT; . add LICENSE (BSD); . remove check for unsupported FreeBSD versions (<800093). PR: ports/181617 Submitted by: bsam (me) Approved by: trhodes (maintainer timeout, 2 weeks) Modified: head/misc/window/Makefile Modified: head/misc/window/Makefile ============================================================================== --- head/misc/window/Makefile Wed Sep 11 15:53:29 2013 (r326989) +++ head/misc/window/Makefile Wed Sep 11 16:09:04 2013 (r326990) @@ -1,9 +1,5 @@ -# New ports collection makefile for: window -# Date created: 31 May 2009 -# Whom: Tom Rhodes <trhodes@FreeBSD.org> -# +# Created by: Tom Rhodes <trhodes@FreeBSD.org> # $FreeBSD$ -# PORTNAME= window PORTVERSION= 1.0 @@ -11,15 +7,12 @@ CATEGORIES= misc MASTER_SITES= http://people.FreeBSD.org/~trhodes/ MAINTAINER= trhodes@FreeBSD.org -COMMENT= The FreeBSD usr.bin/window application +COMMENT= Window environment on ASCII terminals -.include <bsd.port.pre.mk> - -.if ${OSVERSION} < 800093 -IGNORE= window-1.0 is still part of the base system -.endif +LICENSE= BSD WRKSRC= ${WRKDIR}/window +CFLAGS+= -Wno-return-type MAN1= window.1 PLIST_FILES= bin/window @@ -28,4 +21,4 @@ do-install: ${INSTALL_PROGRAM} ${WRKSRC}/window ${PREFIX}/bin ${INSTALL_DATA} ${WRKSRC}/${MAN1} ${PREFIX}/man/man1 -.include <bsd.port.post.mk> +.include <bsd.port.mk>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201309111609.r8BG95nj057448>