mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-25 00:51:21 +00:00
3984cccd41
2: use options helper to handle PORTDOCS. Approved by: portmgr@ (blanket approval)
29 lines
745 B
Makefile
29 lines
745 B
Makefile
# Created by: Douglas Carmichael <dcarmich@mcs.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= amiwm
|
|
PORTVERSION= 0.21.pl2
|
|
CATEGORIES= x11-wm
|
|
MASTER_SITES= ftp://ftp.lysator.liu.se/pub/X11/wm/amiwm/
|
|
DISTNAME= ${PORTNAME}0.21pl2
|
|
|
|
MAINTAINER= dcarmich@dcarmichael.net
|
|
COMMENT= Window manager that makes your desktop look like an Amiga(TM)
|
|
|
|
MAKE_JOBS_UNSAFE= yes
|
|
GNU_CONFIGURE= yes
|
|
USE_XORG= x11 ice sm xext xmu
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
post-install:
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
@${ECHO_MSG} "===> Copying documents to ${DOCSDIR}"
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
@${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR}/README
|
|
@${INSTALL_DATA} ${WRKSRC}/README.modules ${STAGEDIR}${DOCSDIR}/README.modules
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|