X Northern Captain (XNC) - filemanager for X Window.

XNC - uses conception of two panels. These panels with highlighted directory
listings give You simple and easy way to manipulate files on Your system.
Bookmark feature allow You to remember Hot Directories and quick changing
to it. Virtual File System can manipulate files in popular archieve formats
as easy as files on normal Disk FS (copy/delete/view/edit/execute inside
archive).
MultiWindow Editing and Viewing System (IVES) edit text files and view
ASCII/HEX and many image formats ; built in xterminal (rxvt 2.20) shows
output from applications;
configurable User menu do quick execute for usefull commands;
exention association and execution list allow execute application by
associated extension;
processes information shows list of processes and can send signal to its;
disk and memory summary information; QuickScan Directories and files info;
Drag 'n' Drop for files manipulation - easy way to work for Mouse Fans;
built in archive support for TAR, TARGZ, TRABZ2, GZIP, BZIP2, ARJ, ZIP,
RAR, RPM, DEB, LHA;
Hot keys, colors, sizes, fonts and panels layout easy customization
with XNCSetup make XNC very usefull tool.
This commit is contained in:
reinhard 2000-12-31 12:54:27 +00:00
parent 09b96be987
commit caadf8c214
11 changed files with 160 additions and 0 deletions

38
misc/xnc/Makefile Normal file
View File

@ -0,0 +1,38 @@
# $OpenBSD: Makefile,v 1.1.1.1 2000/12/31 12:54:27 reinhard Exp $
DISTNAME= xnc-4.4.0
DISTFILES= ${DISTNAME}.src${EXTRACT_SUFX}
CATEGORIES= misc x11
NEED_VERSION= 1.348
MAINTAINER= Reinhard J. Sammer <reinhard@openbsd.org>
HOMEPAGE= http://xnc.dubna.su
MASTER_SITES= ${HOMEPAGE}/src/
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
LIB_DEPENDS= jpeg.62.::graphics/jpeg \
png.1.::graphics/png
USE_X11= Yes
CONFIGURE_STYLE= gnu old
CONFIGURE_ENV= CFLAGS="-I${LOCALBASE}/include" \
CPPFLAGS="-I${LOCALBASE}/include" \
LIBS="-L${LOCALBASE}/lib"
CONFIGURE_ARGS= --with-x --disable-plugins
XNLAUNCHFILES= .launch.menu .xnlaunch.ini graphs.gif ives.gif kill.gif \
map.gif netscape.gif term.gif tnet.gif
post-install:
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/xnc
cd ${WRKSRC}/.xlaunch && ${INSTALL_DATA} ${XNLAUNCHFILES} ${PREFIX}/share/examples/xnc
.include <bsd.port.mk>

3
misc/xnc/files/md5 Normal file
View File

@ -0,0 +1,3 @@
MD5 (xnc-4.4.0.src.tar.gz) = cf3feffce6b562c6055aec4827615e3f
RMD160 (xnc-4.4.0.src.tar.gz) = a9fcce024be20f3a6474a22b099594c7233c59d6
SHA1 (xnc-4.4.0.src.tar.gz) = 4034b5ce35815e83c84ba66b8253be5eeeb2caa8

View File

@ -0,0 +1,13 @@
$OpenBSD: patch-Makefile_in,v 1.1.1.1 2000/12/31 12:54:27 reinhard Exp $
--- Makefile.in.orig Fri Dec 22 07:12:28 2000
+++ Makefile.in Sun Dec 31 12:49:38 2000
@@ -179,6 +179,9 @@ config: FORCE
# $(INSOWN) -m 0600 ./.xlaunch/* $(HOME)/.xlaunch
# $(INSOWN) -m 0600 ./.xlaunch/.*a* $(HOME)/.xlaunch
+INSTDIR=${PREFIX}/bin # for faking
+INSTMAN=${PREFIX}/man # for faking
+INSTPLUG=${PREFIX}/lib # for faking
install:
#Installing X Northern Captain...
$(INS) ./users.xnc $(INSTDIR)

View File

@ -0,0 +1,12 @@
$OpenBSD: patch-_xlaunch__launch_menu,v 1.1.1.1 2000/12/31 12:54:27 reinhard Exp $
--- .xlaunch/.launch.menu.orig Fri Nov 10 09:19:22 2000
+++ .xlaunch/.launch.menu Sun Dec 31 12:19:10 2000
@@ -4,7 +4,7 @@
# "Key name" : pixmap_name : execute string
#Attension Key name must be in "" but other names without it.
#Key name or pixmap_name may be empty but ':' must be otherwise.
-: kill.gif : /usr/X11/bin/xkill
+: kill.gif : /usr/X11R6/bin/xkill
: term.gif: xterm -ls -sb -fn 10x20 -title "XTerminal"
: ives.gif : /usr/local/bin/ives
"XNC" :: /usr/local/bin/xnc

View File

@ -0,0 +1,12 @@
$OpenBSD: patch-_xlaunch__xnlaunch_ini,v 1.1.1.1 2000/12/31 12:54:27 reinhard Exp $
--- .xlaunch/.xnlaunch.ini.orig Fri Nov 10 09:19:22 2000
+++ .xlaunch/.xnlaunch.ini Sun Dec 31 12:19:49 2000
@@ -15,7 +15,7 @@ xnc.sysfiles.path: /xnctmp
#Path for pixmaps search. First of all launch search for pixmaps in current
#directory, then in $HOME/.xlaunch and then in searchpath...
-xnlaunch.pixmaps.searchpath: /usr/X11/include/X11/pixmaps
+xnlaunch.pixmaps.searchpath: /usr/X11R6/include/X11/pixmaps
#Width and Height for one button and X,Y for launch pad.
xnlaunch.geometry: 42x42+978+5

View File

@ -0,0 +1,13 @@
$OpenBSD: patch-image_picinfo_h,v 1.1.1.1 2000/12/31 12:54:27 reinhard Exp $
--- image/picinfo.h.orig Thu Dec 28 12:26:51 2000
+++ image/picinfo.h Fri Dec 29 15:01:11 2000
@@ -11,7 +11,8 @@
#include <string.h>
#include <sys/param.h>
#include <sys/types.h>
-#ifndef __FreeBSD__
+#ifndef __FreeBSD__
+#elif ! defined __OpenBSD__
#include <malloc.h>
#endif
#include <fcntl.h>

View File

@ -0,0 +1,12 @@
$OpenBSD: patch-xh_cxx,v 1.1.1.1 2000/12/31 12:54:27 reinhard Exp $
--- xh.cxx.orig Thu Dec 7 09:12:00 2000
+++ xh.cxx Sun Dec 31 13:34:51 2000
@@ -40,7 +40,7 @@ int init_starts=0, xnc_starts=0;
int wm_y_correction=21; //Correction for Window manager title window
-char magic_file_location[256]="/usr/share/magic";
+char magic_file_location[256]="/etc/magic";
extern int detect_tar_output(char *path);

1
misc/xnc/pkg/COMMENT Normal file
View File

@ -0,0 +1 @@
filemanager for X Window

22
misc/xnc/pkg/DESCR Normal file
View File

@ -0,0 +1,22 @@
X Northern Captain (XNC) - filemanager for X Window.
XNC - uses conception of two panels. These panels with highlighted directory
listings give You simple and easy way to manipulate files on Your system.
Bookmark feature allow You to remember Hot Directories and quick changing
to it. Virtual File System can manipulate files in popular archieve formats
as easy as files on normal Disk FS (copy/delete/view/edit/execute inside
archive).
MultiWindow Editing and Viewing System (IVES) edit text files and view
ASCII/HEX and many image formats ; built in xterminal (rxvt 2.20) shows
output from applications;
configurable User menu do quick execute for usefull commands;
exention association and execution list allow execute application by
associated extension;
processes information shows list of processes and can send signal to its;
disk and memory summary information; QuickScan Directories and files info;
Drag 'n' Drop for files manipulation - easy way to work for Mouse Fans;
built in archive support for TAR, TARGZ, TRABZ2, GZIP, BZIP2, ARJ, ZIP,
RAR, RPM, DEB, LHA;
Hot keys, colors, sizes, fonts and panels layout easy customization
with XNCSetup make XNC very usefull tool.
WWW: ${HOMEPAGE}

4
misc/xnc/pkg/MESSAGE Normal file
View File

@ -0,0 +1,4 @@
NB: All new users have to run ${PREFIX}/bin/xncsetup first before
using X Northern Captain.
Example configuration files for xnlaunch have been installed in
${PREFIX}/share/examples/xnc.

30
misc/xnc/pkg/PLIST Normal file
View File

@ -0,0 +1,30 @@
@comment $OpenBSD: PLIST,v 1.1.1.1 2000/12/31 12:54:27 reinhard Exp $
bin/bzip.xnc
bin/es
bin/groups.xnc
bin/gzip.xnc
bin/ives
bin/rpm.xnc
bin/users.xnc
bin/vs
bin/xjpegroot
bin/xnc
bin/xncsetup
bin/xnlaunch
bin/zips.xnc
man/man1/es.1
man/man1/ives.1
man/man1/vs.1
man/man1/xjpegroot.1
man/man1/xnc.1
man/man1/xnlaunch.1
share/examples/xnc/.launch.menu
share/examples/xnc/.xnlaunch.ini
share/examples/xnc/graphs.gif
share/examples/xnc/ives.gif
share/examples/xnc/kill.gif
share/examples/xnc/map.gif
share/examples/xnc/netscape.gif
share/examples/xnc/term.gif
share/examples/xnc/tnet.gif
@dirrm share/examples/xnc