View | Details | Raw Unified | Return to bug 227537 | Differences between
and this patch

Collapse All | Expand All

(-)devel/Makefile (+1 lines)
Lines 5978-5983 Link Here
5978
    SUBDIR += shapelib
5978
    SUBDIR += shapelib
5979
    SUBDIR += shards
5979
    SUBDIR += shards
5980
    SUBDIR += shedskin
5980
    SUBDIR += shedskin
5981
    SUBDIR += shell-toolbox
5981
    SUBDIR += shflags
5982
    SUBDIR += shflags
5982
    SUBDIR += shiboken
5983
    SUBDIR += shiboken
5983
    SUBDIR += shmap
5984
    SUBDIR += shmap
(-)devel/shell-toolbox/Makefile (+20 lines)
Added Link Here
1
# $FreeBSD$
2
3
PORTNAME=		shell-toolbox
4
DISTVERSION=		20180415
5
CATEGORIES=		devel
6
7
MAINTAINER=		0mp@FreeBSD.org
8
COMMENT=		Collection of shell script development tools
9
10
LICENSE=		BSD3CLAUSE
11
LICENSE_FILE=		${WRKSRC}/LICENSE
12
13
NO_ARCH=	yes
14
15
USES=	libtool
16
GNU_CONFIGURE=	yes
17
USE_GITHUB=	yes
18
GH_ACCOUNT=	kusalananda
19
20
.include <bsd.port.mk>
(-)devel/shell-toolbox/distinfo (+3 lines)
Added Link Here
1
TIMESTAMP = 1523820747
2
SHA256 (kusalananda-shell-toolbox-20180415_GH0.tar.gz) = 993e30fab5b53c8fbe1b9599989cf270b74e85630d93e812f0fcf597cb138145
3
SIZE (kusalananda-shell-toolbox-20180415_GH0.tar.gz) = 70569
(-)devel/shell-toolbox/pkg-descr (+16 lines)
Added Link Here
1
shell-toolbox is a collection of shell script development tools.
2
3
Currently, the only included script is "shell", which is useful for testing
4
things in an interactive environment other than your usual shell, or for
5
testing things in a clean environment with automatic cleanup of any files left
6
behind.
7
8
It creates a "temporary interactive shell" with a temporary working directory
9
(unless the "-d" flag is used to specify an existing directory) and clean
10
environment.  The working directory is removed when the shell exits
11
(unless the "-k" or "-d" flag was used).
12
13
The temporary working directory may also be pre-populated with the
14
contents of an existing directory (using the "-s" flag).
15
16
WWW: https://github.com/kusalananda/shell-toolbox
(-)devel/shell-toolbox/pkg-plist (+4 lines)
Added Link Here
1
bin/shell
2
man/man1/shell.1.gz
3
%%PORTDOCS%%%%DOCSDIR%%/shell.md
4
%%PORTDOCS%%%%DOCSDIR%%/shell.txt

Return to bug 227537