diff options
author | bsam <bsam@FreeBSD.org> | 2013-09-12 00:09:04 +0800 |
---|---|---|
committer | bsam <bsam@FreeBSD.org> | 2013-09-12 00:09:04 +0800 |
commit | 7acdfd231b879eab1e859a7cbbd62e2a1231bc05 (patch) | |
tree | c98080f1b779dea5a6cdc2624bbcb17988bb452b | |
parent | 574f649594664e161d12616bfca48535993657e8 (diff) | |
download | freebsd-ports-gnome-7acdfd231b879eab1e859a7cbbd62e2a1231bc05.tar.gz freebsd-ports-gnome-7acdfd231b879eab1e859a7cbbd62e2a1231bc05.tar.zst freebsd-ports-gnome-7acdfd231b879eab1e859a7cbbd62e2a1231bc05.zip |
. 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)
-rw-r--r-- | misc/window/Makefile | 17 |
1 files changed, 5 insertions, 12 deletions
diff --git a/misc/window/Makefile b/misc/window/Makefile index 3a1e5f574f7f..ff8e3f4b78df 100644 --- a/misc/window/Makefile +++ b/misc/window/Makefile @@ -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> |