diff options
author | Tom Rhodes <trhodes@FreeBSD.org> | 2009-06-02 11:19:09 +0000 |
---|---|---|
committer | Tom Rhodes <trhodes@FreeBSD.org> | 2009-06-02 11:19:09 +0000 |
commit | 31401e81e606c67e64188ccac918213dcd478cab (patch) | |
tree | cd70dacac30e19fdb8c5f46753089c76037b2c5f /misc/window/Makefile | |
parent | 0e25878bf3b2a0087d4f596b10051bbb3a5e49fe (diff) |
Notes
Diffstat (limited to 'misc/window/Makefile')
-rw-r--r-- | misc/window/Makefile | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/misc/window/Makefile b/misc/window/Makefile new file mode 100644 index 000000000000..3a1e5f574f7f --- /dev/null +++ b/misc/window/Makefile @@ -0,0 +1,31 @@ +# New ports collection makefile for: window +# Date created: 31 May 2009 +# Whom: Tom Rhodes <trhodes@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= window +PORTVERSION= 1.0 +CATEGORIES= misc +MASTER_SITES= http://people.FreeBSD.org/~trhodes/ + +MAINTAINER= trhodes@FreeBSD.org +COMMENT= The FreeBSD usr.bin/window application + +.include <bsd.port.pre.mk> + +.if ${OSVERSION} < 800093 +IGNORE= window-1.0 is still part of the base system +.endif + +WRKSRC= ${WRKDIR}/window + +MAN1= window.1 +PLIST_FILES= bin/window + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/window ${PREFIX}/bin + ${INSTALL_DATA} ${WRKSRC}/${MAN1} ${PREFIX}/man/man1 + +.include <bsd.port.post.mk> |