mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-22 00:35:15 +00:00
35 lines
658 B
Makefile
35 lines
658 B
Makefile
# Created by: Winston Weinert <winstonw@lavabit.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= drawterm
|
|
PORTVERSION= 20110822
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://swtch.com/drawterm/
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= winstonw@lavabit.com
|
|
COMMENT= Plan9 cpu client
|
|
|
|
# Additionally the Lucent Public License
|
|
LICENSE= MIT
|
|
|
|
USE_XORG= x11 xt
|
|
|
|
PLIST_FILES= bin/drawterm
|
|
PORTDOCS= LICENSE README
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
|
|
|
MAKE_ARGS= CONF=pthread
|
|
|
|
NO_STAGE= yes
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/drawterm ${PREFIX}/bin
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
${INSTALL_MAN} ${WRKSRC}/README ${WRKSRC}/LICENSE ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|