shells/viewglob: Remove port
Desktop application not relevant to server environment
This commit is contained in:
@@ -6713,6 +6713,7 @@ shells/ch
|
||||
shells/oksh
|
||||
shells/powershell
|
||||
shells/scponly
|
||||
shells/viewglob
|
||||
sysutils/abgx360
|
||||
sysutils/accounts-qml-module
|
||||
sysutils/android-file-transfer
|
||||
|
||||
@@ -56,7 +56,6 @@
|
||||
SUBDIR += switchBashZsh
|
||||
SUBDIR += tcshrc
|
||||
SUBDIR += v7sh
|
||||
SUBDIR += viewglob
|
||||
SUBDIR += vshnu
|
||||
SUBDIR += wcd
|
||||
SUBDIR += xonsh
|
||||
|
||||
@@ -1,21 +0,0 @@
|
||||
PORTNAME= viewglob
|
||||
PORTVERSION= 2.0.4
|
||||
PORTREVISION= 10
|
||||
CATEGORIES= shells
|
||||
MASTER_SITES= SF
|
||||
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
COMMENT= GTK add-on to bash and zsh
|
||||
WWW= https://viewglob.sourceforge.net/
|
||||
|
||||
BUILD_DEPENDS= bash:shells/bash
|
||||
RUN_DEPENDS= bash:shells/bash
|
||||
|
||||
USES= gnome pkgconfig xorg
|
||||
USE_XORG= x11
|
||||
USE_GNOME= gtk20
|
||||
GNU_CONFIGURE= yes
|
||||
GNU_CONFIGURE_MANPREFIX=${PREFIX}/share
|
||||
LDFLAGS+= -lm
|
||||
|
||||
.include <bsd.port.mk>
|
||||
@@ -1,2 +0,0 @@
|
||||
SHA256 (viewglob-2.0.4.tar.gz) = 69ef6c62de26b2fad82ddff3fcc72e15ddf7eed7047492218f7c6387c0e7c6f4
|
||||
SIZE (viewglob-2.0.4.tar.gz) = 324752
|
||||
@@ -1,22 +0,0 @@
|
||||
--- vgseer/ptytty.c.orig Mon Apr 25 18:21:55 2005
|
||||
+++ vgseer/ptytty.c Tue Sep 6 15:43:01 2005
|
||||
@@ -60,7 +60,6 @@
|
||||
# include <sys/ioctl.h>
|
||||
#endif
|
||||
#if defined(PTYS_ARE_PTMX) && !defined(__CYGWIN32__)
|
||||
-# include <sys/stropts.h> /* for I_PUSH */
|
||||
#endif
|
||||
|
||||
|
||||
@@ -83,6 +82,11 @@
|
||||
rxvt_get_pty(int *fd_tty, const char **ttydev)
|
||||
{
|
||||
int pfd;
|
||||
+
|
||||
+ if ((pfd = posix_openpt(O_RDWR | O_NOCTTY)) != -1)
|
||||
+ *ttydev = ptsname(pfd);
|
||||
+
|
||||
+ return pfd;
|
||||
|
||||
#ifdef PTYS_ARE_OPENPTY
|
||||
char tty_name[sizeof "/dev/pts/????\0"];
|
||||
@@ -1,15 +0,0 @@
|
||||
viewglob is an utility designed to complement the Unix shell in
|
||||
graphical environments. It has two parts:
|
||||
|
||||
1. A tool that sits as a layer between the shell and X terminal,
|
||||
keeping track of the user's current directory and command line.
|
||||
2. A graphical display which shows the layouts of directories
|
||||
referenced on the command line (including pwd).
|
||||
|
||||
The display reveals the results of file globs and expansions as they
|
||||
are typed (hence the name), highlighting selected files and potential
|
||||
name completions.
|
||||
|
||||
It can also be used as a surrogate terminal, where keystrokes typed in
|
||||
the display are passed to the shell. Files and directories can be
|
||||
double-clicked to insert their names and/or paths into the terminal.
|
||||
@@ -1,14 +0,0 @@
|
||||
bin/vgd
|
||||
bin/vgseer
|
||||
bin/viewglob
|
||||
lib/viewglob/.zshrc
|
||||
lib/viewglob/conf-to-args.sh
|
||||
lib/viewglob/getopt.sh
|
||||
lib/viewglob/init-viewglob.bashrc
|
||||
lib/viewglob/vgclassic
|
||||
lib/viewglob/vgexpand
|
||||
lib/viewglob/vgmini
|
||||
lib/viewglob/vgping
|
||||
share/man/man1/vgd.1.gz
|
||||
share/man/man1/vgseer.1.gz
|
||||
share/man/man1/viewglob.1.gz
|
||||
Reference in New Issue
Block a user