diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2007-02-15 15:02:36 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2007-02-15 15:02:36 +0000 |
commit | 6b89d6d95082ba0f8c94aa337a5f4d03344bab74 (patch) | |
tree | ae42b3916a6ef9cd841ec0f273d17dd5ee519c7f | |
parent | 8e0f798453cf1bed5c2fb919f9e2e304e53a294c (diff) | |
download | ports-6b89d6d95082ba0f8c94aa337a5f4d03344bab74.tar.gz ports-6b89d6d95082ba0f8c94aa337a5f4d03344bab74.zip |
Console based boinc-client monitor and controller.
Features
- Colorful console application using ncurses
- Single screen listing of results, transfers and recent messages
- Updated real time
- Control the client with single keypress
- Using same communication protocol as boinc_gui
- Works with all boinc projects
WWW: http://www.oook.cz/bsd/boinc_curses/
Notes
Notes:
svn path=/head/; revision=185239
-rw-r--r-- | net/Makefile | 1 | ||||
-rw-r--r-- | net/boinc_curses/Makefile | 26 | ||||
-rw-r--r-- | net/boinc_curses/distinfo | 3 | ||||
-rw-r--r-- | net/boinc_curses/pkg-descr | 11 |
4 files changed, 41 insertions, 0 deletions
diff --git a/net/Makefile b/net/Makefile index 6d48b2f89c1b..d1c2fe8d6811 100644 --- a/net/Makefile +++ b/net/Makefile @@ -51,6 +51,7 @@ SUBDIR += bmon SUBDIR += boclient SUBDIR += boinc-client + SUBDIR += boinc_curses SUBDIR += bounce SUBDIR += bpfstat SUBDIR += brutecopy diff --git a/net/boinc_curses/Makefile b/net/boinc_curses/Makefile new file mode 100644 index 000000000000..9e4457b4e4eb --- /dev/null +++ b/net/boinc_curses/Makefile @@ -0,0 +1,26 @@ +# New ports collection makefile for: boinc_curses +# Date created: 15 Feb 2007 +# Whom: Pav Lucistnik <pav@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= boinc_curses +PORTVERSION= 0.1.5 +CATEGORIES= net +MASTER_SITES= http://www.oook.cz/bsd/boinc_curses/ + +MAINTAINER= pav@FreeBSD.org +COMMENT= Console, ncurses based monitor and manager for BOINC + +BUILD_DEPENDS= ${LOCALBASE}/lib/libboinc.a:${PORTSDIR}/net/boinc-client + +USE_BZIP2= yes +MAKE_ENV= BOINCLIBDIR=${LOCALBASE}/lib BOINCINCDIR=${LOCALBASE}/include/BOINC + +PLIST_FILES= bin/boinc_curses + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin/ + +.include <bsd.port.mk> diff --git a/net/boinc_curses/distinfo b/net/boinc_curses/distinfo new file mode 100644 index 000000000000..fe2a3bb78350 --- /dev/null +++ b/net/boinc_curses/distinfo @@ -0,0 +1,3 @@ +MD5 (boinc_curses-0.1.5.tar.bz2) = ef1ea449a73e946a2a6921988399ecb8 +SHA256 (boinc_curses-0.1.5.tar.bz2) = ec0dcbdcdb21f29c68c11f3547fe635d06e5409411b0892413f3b430e2a476b2 +SIZE (boinc_curses-0.1.5.tar.bz2) = 5708 diff --git a/net/boinc_curses/pkg-descr b/net/boinc_curses/pkg-descr new file mode 100644 index 000000000000..85203de8a430 --- /dev/null +++ b/net/boinc_curses/pkg-descr @@ -0,0 +1,11 @@ +Console based boinc-client monitor and controller. + +Features +- Colorful console application using ncurses +- Single screen listing of results, transfers and recent messages +- Updated real time +- Control the client with single keypress +- Using same communication protocol as boinc_gui +- Works with all boinc projects + +WWW: http://www.oook.cz/bsd/boinc_curses/ |