mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
Remove the broken vide port
This commit is contained in:
parent
0dfee4423b
commit
5c9f948330
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=99795
@ -25,7 +25,6 @@
|
||||
SUBDIR += tkdesk
|
||||
SUBDIR += twander
|
||||
SUBDIR += velocity
|
||||
SUBDIR += vide
|
||||
SUBDIR += worker
|
||||
SUBDIR += workplace
|
||||
SUBDIR += x-files
|
||||
|
@ -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>
|
@ -1 +0,0 @@
|
||||
MD5 (vide-0.5.tar.gz) = e2141aea2576157e9df4f7a94aa3a8b2
|
@ -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);
|
||||
|
||||
}
|
@ -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>
|
@ -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);
|
@ -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
|
@ -1,4 +0,0 @@
|
||||
bin/pauseme
|
||||
bin/vide
|
||||
share/gnome/vide/vide%%VERSION%%.txt
|
||||
@dirrm share/gnome/vide
|
Loading…
Reference in New Issue
Block a user