6639eb58eb
Drawterm is a program that users of non-Plan 9 systems can use to establish graphical cpu connections with Plan 9 cpu servers. Just as a real Plan 9 terminal does, drawterm serves its local name space as well as some devices (the keyboard, mouse, and screen) to a remote cpu server, which mounts this name space on /mnt/term and starts a shell. Typically, either explicitly or via the profile, one uses the shell to start rio. from Stanley Lieber (MAINTAINER) ok sthen@
33 lines
677 B
Makefile
33 lines
677 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2011/08/18 08:04:03 jasper Exp $
|
|
|
|
COMMENT= Plan9 terminal emulator
|
|
|
|
DISTNAME= drawterm-20110221
|
|
CATEGORIES= plan9
|
|
|
|
HOMEPAGE= http://swtch.com/drawterm/
|
|
|
|
MASTER_SITES= ${HOMEPAGE} \
|
|
http://openbsd.stanleylieber.com/drawterm/
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= Stanley Lieber <stanley.lieber@gmail.com>
|
|
|
|
# Lucent Public License Version 1.02
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
WANTLIB = X11 c pthread
|
|
|
|
NO_REGRESS= Yes
|
|
MAKE_FLAGS= CONF=unix AUDIO=none
|
|
|
|
WRKDIST= ${WRKDIR}/drawterm/
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKDIR}/drawterm/drawterm ${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|