From owner-svn-ports-head@FreeBSD.ORG Wed Sep 11 16:09:05 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 8BFEE749; Wed, 11 Sep 2013 16:09:05 +0000 (UTC) (envelope-from bsam@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 78C5C25FC; Wed, 11 Sep 2013 16:09:05 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r8BG95tm057449; Wed, 11 Sep 2013 16:09:05 GMT (envelope-from bsam@svn.freebsd.org) Received: (from bsam@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r8BG95nj057448; Wed, 11 Sep 2013 16:09:05 GMT (envelope-from bsam@svn.freebsd.org) Message-Id: <201309111609.r8BG95nj057448@svn.freebsd.org> From: Boris Samorodov Date: Wed, 11 Sep 2013 16:09:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r326990 - head/misc/window X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Sep 2013 16:09:05 -0000 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 -# +# Created by: Tom Rhodes # $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 - -.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 +.include