mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-26 00:55:14 +00:00
c3964e45bc
- Add DOCS option - Use PLIST_FILES and PORTDOCS instead of pkg-plist file
29 lines
553 B
Makefile
29 lines
553 B
Makefile
# Created by: Andrey Zakhvatov
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= xisola
|
|
PORTVERSION= 1.0
|
|
PORTREVISION= 2
|
|
CATEGORIES= games
|
|
MASTER_SITES= ${MASTER_SITE_XCONTRIB}
|
|
MASTER_SITE_SUBDIR= games
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Simple board game for X Window System
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
|
USES= imake
|
|
USE_XORG= x11 xext xaw xmu xt sm ice
|
|
NO_INSTALL_MANPAGES= yes
|
|
|
|
PLIST_FILES= bin/xisola
|
|
PORTDOCS= README
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|