blob: 6a70068c775cef712240aa4be4395dfe5ed8e45e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# Created by: Christopher Preston <rbg@gayteenresource.org>
# $FreeBSD$
PORTNAME= nettoe
PORTVERSION= 1.5.1
CATEGORIES= games
MASTER_SITES= http://www.c-s.li/ports/ \
SF
MAINTAINER= cs@FreeBSD.org
COMMENT= Tic tac toe game playable over the network
LICENSE= GPLv2
PLIST_FILES= bin/nettoe man/man6/nettoe.6.gz
USES= gmake
GNU_CONFIGURE= yes
PORTDOCS= AUTHORS BUGS ChangeLog NEWS README TO-DO
OPTIONS_DEFINE= DOCS
post-install-DOCS-on:
@${MKDIR} ${STAGEDIR}${DOCSDIR}
.for I in ${PORTDOCS}
${INSTALL_DATA} ${WRKSRC}/$I ${STAGEDIR}${DOCSDIR}/
.endfor
.include <bsd.port.mk>
|