Add mog 0.4, different take on the UNIX tool cat.
This commit is contained in:
parent
cb5cceecea
commit
ddd87a4c4a
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=435147
4 changed files with 41 additions and 0 deletions
|
@ -613,6 +613,7 @@
|
|||
SUBDIR += mksunbootcd
|
||||
SUBDIR += mnrpes
|
||||
SUBDIR += modules
|
||||
SUBDIR += mog
|
||||
SUBDIR += monit
|
||||
SUBDIR += monitord
|
||||
SUBDIR += monitorix
|
||||
|
|
25
sysutils/mog/Makefile
Normal file
25
sysutils/mog/Makefile
Normal file
|
@ -0,0 +1,25 @@
|
|||
# Created by: Emanuel Haupt <ehaupt@FreeBSD.org>
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= mog
|
||||
PORTVERSION= 0.4
|
||||
CATEGORIES= sysutils
|
||||
|
||||
MAINTAINER= ehaupt@FreeBSD.org
|
||||
COMMENT= Different take on the UNIX tool cat
|
||||
|
||||
LICENSE= MIT
|
||||
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
|
||||
|
||||
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pygments>0:textproc/py-pygments \
|
||||
mdv:devel/py-mdv
|
||||
RUN_DEPENDS:= ${BUILD_DEPENDS}
|
||||
|
||||
USES= python
|
||||
USE_GITHUB= yes
|
||||
USE_PYTHON= autoplist distutils
|
||||
NO_ARCH= yes
|
||||
|
||||
GH_ACCOUNT= witchard
|
||||
|
||||
.include <bsd.port.mk>
|
3
sysutils/mog/distinfo
Normal file
3
sysutils/mog/distinfo
Normal file
|
@ -0,0 +1,3 @@
|
|||
TIMESTAMP = 1488372190
|
||||
SHA256 (witchard-mog-0.4_GH0.tar.gz) = 41f2592de8716b5609bce957a973f66d4acb4544a6cf021daaefa5d4da5bb2b5
|
||||
SIZE (witchard-mog-0.4_GH0.tar.gz) = 61029
|
12
sysutils/mog/pkg-descr
Normal file
12
sysutils/mog/pkg-descr
Normal file
|
@ -0,0 +1,12 @@
|
|||
The man page for cat says that it can: concatenate files and print on the
|
||||
standard output. Often its main use is for the latter. mog tries to help you
|
||||
"print on the standard output" in a more intelligent way. For example, it can
|
||||
be configured to:
|
||||
|
||||
* Syntax highlight scripts
|
||||
* Print a hex dump of binary files
|
||||
* Show details of image files
|
||||
* Perform objdump on executables
|
||||
* List a directory
|
||||
|
||||
WWW: https://github.com/witchard/mog/
|
Loading…
Reference in a new issue