head	1.2;
access;
symbols
	RELEASE_4_7_0:1.1.1.1
	RELEASE_4_6_2:1.1.1.1
	RELEASE_4_6_1:1.1.1.1
	RELEASE_4_6_0:1.1.1.1
	RELEASE_5_0_DP1:1.1.1.1
	RELEASE_4_5_0:1.1.1.1
	RELEASE_4_4_0:1.1.1.1
	RELEASE_4_3_0:1.1.1.1
	RELEASE_4_2_0:1.1.1.1
	RELEASE_4_1_1:1.1.1.1
	RELEASE_4_1_0:1.1.1.1
	RELEASE_3_5_0:1.1.1.1
	RELEASE_4_0_0:1.1.1.1
	RELEASE_3_4_0:1.1.1.1
	RELEASE_3_3_0:1.1.1.1
	RELEASE_3_2_0:1.1.1.1
	RELEASE_3_1_0:1.1.1.1
	v4_3:1.1.1.1
	AXL:1.1.1;
locks; strict;
comment	@# @;


1.2
date	2002.10.14.01.15.46;	author kris;	state dead;
branches;
next	1.1;

1.1
date	98.12.01.02.15.41;	author jkoshy;	state Exp;
branches
	1.1.1.1;
next	;

1.1.1.1
date	98.12.01.02.15.41;	author jkoshy;	state Exp;
branches;
next	;


desc
@@


1.2
log
@Remove the marc-search port, which has been broken for 2 years and 8
months because it depends on software not in the ports collection.

Reviewed by:	sheldonh (maintainer)
@
text
@--- marc-search.cgi.orig	Fri Apr  4 22:06:42 1997
+++ marc-search.cgi	Sat Nov 28 17:59:27 1998
@@@@ -1,3 +1,3 @@@@
-#!/dcs/bin/perl5 -w
+#!/usr/local/bin/perl
 ##------------------------------------------------------------------------##
 ##  File:
@@@@ -15,14 +15,13 @@@@
 ## Configurable options - described in great detail in the POD - READ IT!
 
-my $server = 'http://eee.uci.edu';
-my $help = $server . '/toolbox/marc-search.html';
-my $doc_root = '/Web/doc';
-my $script = $server . '/cgi-bin/marc-search.edf.cgi';
-my $usersubdir = 'public_html';         # Tells which subdirectory of
-                                        # a user's home directory
-                                        # (file system) corresponds to
-                                        # http://server/~user/ . (Only
-                                        # needed if marc-search
-                                        # supports URLs with tildes.)
+require AppCfg;
+
+my ($server, $help, $doc_root, $script, $usersubdir);
+my $my_config = new AppCfg "/usr/local/etc/marc-search.conf";
+$server = $my_config->get_scalar("server");
+$help = $my_config->get_scalar("help");
+$doc_root = $my_config->get_scalar("doc_root");
+$script = $my_config->get_scalar("script");
+$usersubdir = $my_config->get_scalar("usersubdir");
 
 ##------------------------------------------------------------------------##
@@@@ -30,6 +29,6 @@@@
 
 # This next line tells perl where the CGI_Lite module was installed.
-use lib '/users/asc/friedman/www/cgi-bin';
-use lib '/Web/httpd/cgi-bin';
+use lib '/usr/local/lib/perl5/site_perl/5.005';
+use lib '/usr/local/lib/perl5/site_perl/5.005/Marc';
 use CGI_Lite;  # Substitute other CGI libraries if need be (see next section)
 use strict;
@


1.1
log
@Initial revision
@
text
@@


1.1.1.1
log
@Import of a port for `marc-search' which offers a web based search
interface for the MHonArc mail archiver.

Reviewed by:	jkoshy
Submitted by:	Sheldon Hearn <axl@@iafrica.com> (maintainer)
@
text
@@
