diff options
author | dhn <dhn@FreeBSD.org> | 2011-03-21 03:28:37 +0800 |
---|---|---|
committer | dhn <dhn@FreeBSD.org> | 2011-03-21 03:28:37 +0800 |
commit | 73c56fd948ae2f53441d4d45cc2b8d908ba96dcb (patch) | |
tree | 96fb1e140b9529d5606e81eb33d2e6f26e54c272 /sysutils | |
parent | 791b87420feb0822a4e1903136d3681e2905dbf0 (diff) | |
download | freebsd-ports-gnome-73c56fd948ae2f53441d4d45cc2b8d908ba96dcb.tar.gz freebsd-ports-gnome-73c56fd948ae2f53441d4d45cc2b8d908ba96dcb.tar.zst freebsd-ports-gnome-73c56fd948ae2f53441d4d45cc2b8d908ba96dcb.zip |
Light-weight and fast realization of progress-bar for pipe.
WWW: http://code.google.com/p/pipe-progress/
PR: ports/155722
Submitted by: Artem Zaytsev <a.arepo@gmail.com>
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/Makefile | 1 | ||||
-rw-r--r-- | sysutils/pp/Makefile | 22 | ||||
-rw-r--r-- | sysutils/pp/distinfo | 2 | ||||
-rw-r--r-- | sysutils/pp/pkg-descr | 3 |
4 files changed, 28 insertions, 0 deletions
diff --git a/sysutils/Makefile b/sysutils/Makefile index aab4f6c82779..82e9d9f4e4ef 100644 --- a/sysutils/Makefile +++ b/sysutils/Makefile @@ -675,6 +675,7 @@ SUBDIR += polkit-kde SUBDIR += polkit-qt SUBDIR += powerman + SUBDIR += pp SUBDIR += prips SUBDIR += procmap SUBDIR += progsreiserfs diff --git a/sysutils/pp/Makefile b/sysutils/pp/Makefile new file mode 100644 index 000000000000..facc02f91908 --- /dev/null +++ b/sysutils/pp/Makefile @@ -0,0 +1,22 @@ +# New ports collection makefile for: pp +# Date created: 20 March 2011 +# Whom: Artem Zaytsev <a.arepo@gmail.com> +# +# $FreeBSD$ +# + +PORTNAME= pp +PORTVERSION= 1.0 +CATEGORIES= sysutils +MASTER_SITES= http://pipe-progress.googlecode.com/files/ + +MAINTAINER= a.arepo@gmail.com +COMMENT= Small and fast progressbar for pipe + +USE_BZIP2= yes +HAS_CONFIGURE= yes +CONFIGURE_ARGS+= --prefix=${PREFIX} + +PLIST_FILES= bin/pp + +.include <bsd.port.mk> diff --git a/sysutils/pp/distinfo b/sysutils/pp/distinfo new file mode 100644 index 000000000000..2e680fba52e8 --- /dev/null +++ b/sysutils/pp/distinfo @@ -0,0 +1,2 @@ +SHA256 (pp-1.0.tar.bz2) = efb9c08f015d5935e9c81f3eb9267144c76e8ca52aabb390c97316619461b237 +SIZE (pp-1.0.tar.bz2) = 70142 diff --git a/sysutils/pp/pkg-descr b/sysutils/pp/pkg-descr new file mode 100644 index 000000000000..10570f477a8f --- /dev/null +++ b/sysutils/pp/pkg-descr @@ -0,0 +1,3 @@ +Light-weight and fast realization of progress-bar for pipe. + +WWW: http://code.google.com/p/pipe-progress/ |