mirror of
https://git.FreeBSD.org/ports.git
synced 2025-02-01 10:59:55 +00:00
f899c758a6
everything at once. Sometime, rename post-install into a options helper target. I did not fix ports that were such a mess that I could not figure out what they really wanted to do. I also did not change ports that had some version of an auto-plist code in post-install, for the same reason. With hat: portmgr Sponsored by: Absolight
35 lines
681 B
Makefile
35 lines
681 B
Makefile
# Created by: Winston Weinert <winstonw@lavabit.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= drawterm
|
|
PORTVERSION= 20140106
|
|
PORTREVISION= 1
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://swtch.com/drawterm/
|
|
|
|
MAINTAINER= winston@ml1.net
|
|
COMMENT= Plan9 cpu client
|
|
|
|
# Additionally the Lucent Public License
|
|
LICENSE= MIT
|
|
|
|
USES= tar:tgz
|
|
USE_XORG= x11 xt
|
|
|
|
PLIST_FILES= bin/drawterm
|
|
PORTDOCS= LICENSE README
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
|
|
|
MAKE_ARGS= CONF=pthread
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/drawterm ${STAGEDIR}${PREFIX}/bin
|
|
|
|
post-install-DOCS-on:
|
|
${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_MAN} ${WRKSRC}/README ${WRKSRC}/LICENSE ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|