freebsd-ports/games/nettoe/Makefile
Emanuel Haupt 5005b67362 According to the Porter's Handbook (5.12.2.3.) default options must be added to
OPTIONS_DEFINE. This policy has been implemented only recently that's why we
have many ports violating this policy.

This patch adds the default options specified in the Porter's Handbook to
OPTIONS_DEFINE where they are being used. Ports maintained by
gnome@FreeBSD.org, kde@FreeBSD.org and x11@FreeBSD.org have been excluded.

Approved by:    portmgr (bapt)
2014-02-10 13:54:26 +00:00

33 lines
639 B
Makefile

# Created by: Christopher Preston <rbg@gayteenresource.org>
# $FreeBSD$
PORTNAME= nettoe
PORTVERSION= 1.5
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
.include <bsd.port.options.mk>
post-install:
.if ${PORT_OPTIONS:MDOCS}
${MKDIR} ${STAGEDIR}${DOCSDIR}
.for I in ${PORTDOCS}
${INSTALL_DATA} ${WRKSRC}/$I ${STAGEDIR}${DOCSDIR}/
.endfor
.endif
.include <bsd.port.mk>