summaryrefslogtreecommitdiff
path: root/x11-fm
diff options
context:
space:
mode:
authorKris Kennaway <kris@FreeBSD.org>2004-02-02 09:25:12 +0000
committerKris Kennaway <kris@FreeBSD.org>2004-02-02 09:25:12 +0000
commit5c9f9483303a4f04e1f7fab6cc0b30595f0c61ba (patch)
tree786fb6cb56f2424eabd5fb7ae21d40732f02baee /x11-fm
parentRemove the broken ruby-gsl port (diff)
Remove the broken vide port
Notes
Notes: svn path=/head/; revision=99795
Diffstat (limited to 'x11-fm')
-rw-r--r--x11-fm/Makefile1
-rw-r--r--x11-fm/vide/Makefile34
-rw-r--r--x11-fm/vide/distinfo1
-rw-r--r--x11-fm/vide/files/patch-config_files.c25
-rw-r--r--x11-fm/vide/files/patch-search_mode.c15
-rw-r--r--x11-fm/vide/files/patch-vide.c45
-rw-r--r--x11-fm/vide/pkg-descr10
-rw-r--r--x11-fm/vide/pkg-plist4
8 files changed, 0 insertions, 135 deletions
diff --git a/x11-fm/Makefile b/x11-fm/Makefile
index ebedd86d8d86..aa761afff91b 100644
--- a/x11-fm/Makefile
+++ b/x11-fm/Makefile
@@ -25,7 +25,6 @@
SUBDIR += tkdesk
SUBDIR += twander
SUBDIR += velocity
- SUBDIR += vide
SUBDIR += worker
SUBDIR += workplace
SUBDIR += x-files
diff --git a/x11-fm/vide/Makefile b/x11-fm/vide/Makefile
deleted file mode 100644
index 41826a5852d8..000000000000
--- a/x11-fm/vide/Makefile
+++ /dev/null
@@ -1,34 +0,0 @@
-# New ports collection makefile for: vide
-# Date created: May 17 2000
-# Whom: careilly
-#
-# $FreeBSD$
-#
-
-PORTNAME= vide
-PORTVERSION= 0.5
-CATEGORIES= x11-fm
-MASTER_SITES= http://vide.sourceforge.net/
-
-MAINTAINER= careilly@thecia.ie
-COMMENT= Simple Gtk+ based filemanager with vi keybindings
-
-RUN_DEPENDS= vim:${PORTSDIR}/editors/vim5
-
-BROKEN= "Broken checksum; will be removed after Feb 2"
-
-USE_X_PREFIX= yes
-USE_GMAKE= yes
-USE_GNOME= gnomeprefix gnomelibs
-USE_REINPLACE= yes
-GNU_CONFIGURE= yes
-CONFIGURE_ENV= CPPFLAGS="-DHAVE_SYS_PARAM_H"
-
-PLIST_SUB= VERSION=${PORTVERSION}
-
-PATCH_WRKSRC= ${WRKSRC}/src
-
-post-patch:
- @${REINPLACE_CMD} -e "s|%%PREFIX%%|${PREFIX}|g" ${WRKSRC}/src/*.c
-
-.include <bsd.port.mk>
diff --git a/x11-fm/vide/distinfo b/x11-fm/vide/distinfo
deleted file mode 100644
index 980ae16975ec..000000000000
--- a/x11-fm/vide/distinfo
+++ /dev/null
@@ -1 +0,0 @@
-MD5 (vide-0.5.tar.gz) = e2141aea2576157e9df4f7a94aa3a8b2
diff --git a/x11-fm/vide/files/patch-config_files.c b/x11-fm/vide/files/patch-config_files.c
deleted file mode 100644
index fd2ded7da331..000000000000
--- a/x11-fm/vide/files/patch-config_files.c
+++ /dev/null
@@ -1,25 +0,0 @@
---- config_files.c.orig Tue Jan 30 12:58:08 2001
-+++ config_files.c Sat Feb 24 15:14:46 2001
-@@ -16,6 +16,12 @@
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
- */
-
-+#include<sys/param.h>
-+#if defined(__FreeBSD_version)
-+ #define CP_HELP "cp /usr/X11R6/share/vide/vide%s.txt %s"
-+#else
-+ #define CP_HELP "cp /usr/local/share/vide/vide%s.txt %s"
-+#endif
-
- #include <stdlib.h>
- #include <stdio.h>
-@@ -60,8 +66,7 @@
- {
- gchar command[PATH_MAX];
-
-- g_snprintf(command, sizeof(command), "cp /usr/local/share/vide/vide%s.txt %s",
-- VERSION, help_file);
-+ g_snprintf(command, sizeof(command), CP_HELP, VERSION, help_file);
- file_exec(command);
-
- }
diff --git a/x11-fm/vide/files/patch-search_mode.c b/x11-fm/vide/files/patch-search_mode.c
deleted file mode 100644
index fd43c645c886..000000000000
--- a/x11-fm/vide/files/patch-search_mode.c
+++ /dev/null
@@ -1,15 +0,0 @@
---- search_mode.c.orig Thu Oct 12 23:36:05 2000
-+++ search_mode.c Sat Feb 24 15:14:47 2001
-@@ -16,6 +16,12 @@
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
- */
-
-+#include<sys/param.h>
-+#if (defined(BSD) && (BSD>=199103))
-+ /* Required by regex.h on FreeBSD 4.2 at least. */
-+ #include<sys/types.h>
-+#endif
-+
- #include <fnmatch.h>
- #include<stdio.h>
- #include<string.h>
diff --git a/x11-fm/vide/files/patch-vide.c b/x11-fm/vide/files/patch-vide.c
deleted file mode 100644
index e7543b2bc261..000000000000
--- a/x11-fm/vide/files/patch-vide.c
+++ /dev/null
@@ -1,45 +0,0 @@
---- vide.c.orig Sun Feb 18 15:43:10 2001
-+++ vide.c Sat Feb 24 15:14:47 2001
-@@ -16,7 +16,14 @@
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
- */
-
--
-+#include<sys/param.h>
-+#if defined(__FreeBSD_version)
-+ #define RXVT_VIM "xterm -e vim"
-+ #define RXVT "xterm"
-+#else
-+ #define RXVT_VIM "rxvt -e vim"
-+ #define RXVT "rxvt"
-+#endif
-
- #include <string.h>
- #include <unistd.h>
-@@ -280,6 +287,8 @@
-
- getcwd(current_dir, sizeof(current_dir));
-
-+ /* i18n support */
-+ gtk_set_locale();
-
- /* Set up handler for sigchild so that we don't get zombies */
- new_action.sa_handler = received_sigchild;
-@@ -329,7 +338,7 @@
- cfg.start_with_cwd = FALSE;
- strncpy(cfg.vi_clone, "vim", sizeof(cfg.vi_clone));
- strncpy(cfg.vi_command, "vim", sizeof(cfg.vi_command));
-- strncpy (cfg.viewer_command, "rxvt -e vim",
-+ strncpy (cfg.viewer_command, RXVT_VIM,
- sizeof (cfg.viewer_command));
- cfg.window_width = 640;
- cfg.window_height = 480;
-@@ -337,7 +346,7 @@
- cfg.window_ypos = 0;
- cfg.dir_history_max_length = 15;
- cfg.command_history_max_length = 10;
-- strncpy (cfg.xterm_command, "rxvt", sizeof (cfg.xterm_command));
-+ strncpy (cfg.xterm_command, RXVT, sizeof (cfg.xterm_command));
- chdir (getenv ("HOME"));
- getcwd (app.left_view.dir, PATH_MAX);
- strncpy (app.right_view.dir, app.left_view.dir, PATH_MAX);
diff --git a/x11-fm/vide/pkg-descr b/x11-fm/vide/pkg-descr
deleted file mode 100644
index 0731622486e8..000000000000
--- a/x11-fm/vide/pkg-descr
+++ /dev/null
@@ -1,10 +0,0 @@
-Vide is a simple filemanager with vi keybindings. If you already
-use vi, Vide enables you to have complete keyboard control over
-your filemanager without having to learn a new set of commands.
-
-Vide runs under X11 and is based on Gtk+
-
-WWW: http://vide.sourceforge.net/
-
-- Colman
-careilly@thecia.ie
diff --git a/x11-fm/vide/pkg-plist b/x11-fm/vide/pkg-plist
deleted file mode 100644
index d5e50b563b09..000000000000
--- a/x11-fm/vide/pkg-plist
+++ /dev/null
@@ -1,4 +0,0 @@
-bin/pauseme
-bin/vide
-share/gnome/vide/vide%%VERSION%%.txt
-@dirrm share/gnome/vide