Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 2 Mar 2002 18:31:47 +0300 (MSK)
From:      miniEleph <nyxo@dnuc.polyn.kiae.su>
To:        FreeBSD-gnats-submit@freebsd.org
Subject:   ports/35481: New port: console text editor looks like Borland
Message-ID:  <200203021531.g22FVlg68864@dnuc.polyn.kiae.su>

next in thread | raw e-mail | index | archive | help

>Number:         35481
>Category:       ports
>Synopsis:       New port: console text editor looks like Borland
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Sat Mar 02 07:30:01 PST 2002
>Closed-Date:
>Last-Modified:
>Originator:     miniEleph
>Release:        FreeBSD 4.4-RELEASE i386
>Organization:
>Environment:
System: FreeBSD dnuc.polyn.kiae.su 4.4-RELEASE FreeBSD 4.4-RELEASE #2: Fri Feb 1 23:23:49 MSK 2002 nyxo@dnuc.polyn.kiae.su:/usr/src/sys/compile/ZANOZA i386


	
>Description:
	Setedit is a friendly console text editor with the look and feel of 
	the Borland editors for DOS. Setedit based on TVision library. InfView is a good replacement
	for the info-stantalone program also included.

	
>How-To-Repeat:
	
>Fix:
# This is a shell archive.  Save it in a file, remove anything before
# this line, and then unpack it by entering "sh file".  Note, it may
# create directories; files and directories will be owned by you and
# have default permissions.
#
# This archive contains:
#
#	setedit
#	setedit/files
#	setedit/files/patch-intgrep.cc
#	setedit/files/patch-calendar.cc
#	setedit/files/patch-editmain.cc
#	setedit/files/patch-config.pl
#	setedit/files/patch-Makefile
#	setedit/files/tvision-patch
#	setedit/files/patch-infINSTALL.MAK
#	setedit/Makefile
#	setedit/distinfo
#	setedit/pkg-descr
#	setedit/pkg-plist.rhtvision
#	setedit/pkg-plist.setedit
#	setedit/pkg-comment
#
echo c - setedit
mkdir -p setedit > /dev/null 2>&1
echo c - setedit/files
mkdir -p setedit/files > /dev/null 2>&1
echo x - setedit/files/patch-intgrep.cc
sed 's/^X//' >setedit/files/patch-intgrep.cc << 'END-of-setedit/files/patch-intgrep.cc'
X*** setedit/intgrep.cc.orig	Sun Feb 24 01:26:15 2002
X--- setedit/intgrep.cc	Sun Feb 24 01:27:02 2002
X***************
X*** 41,47 ****
X  #include <splinman.h>
X  #include <rhutils.h>
X  #include <edhists.h>
X! #ifndef SEOS_Win32
X  #include <ftw.h>
X  #endif
X  #include <dyncat.h>
X--- 41,47 ----
X  #include <splinman.h>
X  #include <rhutils.h>
X  #include <edhists.h>
X! #if ! (defined(SEOS_Win32) || defined(SEOSf_FreeBSD))
X  #include <ftw.h>
X  #endif
X  #include <dyncat.h>
END-of-setedit/files/patch-intgrep.cc
echo x - setedit/files/patch-calendar.cc
sed 's/^X//' >setedit/files/patch-calendar.cc << 'END-of-setedit/files/patch-calendar.cc'
X*** setedit/calendar.cc.orig	Sun Feb 24 01:21:52 2002
X--- setedit/calendar.cc	Sun Feb 24 01:28:05 2002
X***************
X*** 27,32 ****
X--- 27,33 ----
X  #include <stdio.h>
X  
X  #include <calendar.h>
X+ #include <configed.h>
X  
X  
X  static char *monthNames[] = {
X***************
X*** 49,61 ****
X--- 50,71 ----
X  TCalendarView::TCalendarView(TRect& r) : TView( r )
X  {
X      struct tm *tm;
X+ #ifdef	SEOSf_FreeBSD
X+     time_t tt;
X+ #else
X      struct timeb tb;
X+ #endif /* SEOSf_FreeBSD */
X  
X      options |= ofSelectable;
X      eventMask |= evMouseAuto;
X  
X+ #ifdef	SEOSf_FreeBSD
X+     time(&tt);
X+     tm = localtime(&tt);
X+ #else
X      ::ftime(&tb);
X      tm = localtime(&tb.time);
X+ #endif /* SEOSf_FreeBSD */
X      year = curYear = 1900 + tm->tm_year;
X      month = curMonth = tm->tm_mon + 1;
X      curDay = tm->tm_mday;
END-of-setedit/files/patch-calendar.cc
echo x - setedit/files/patch-editmain.cc
sed 's/^X//' >setedit/files/patch-editmain.cc << 'END-of-setedit/files/patch-editmain.cc'
X*** setedit/editmain.cc.orig	Fri Mar  1 18:37:11 2002
X--- setedit/editmain.cc	Fri Mar  1 18:40:25 2002
X***************
X*** 1486,1492 ****
X   else
X      if (Clock)
X         KillClock();
X! 
X   int seconds=inIdleTime/clockResolution;
X   if (seconds==screenSaverTimeMouse)
X     {
X--- 1486,1492 ----
X   else
X      if (Clock)
X         KillClock();
X! #ifndef	SEOSf_FreeBSD
X   int seconds=inIdleTime/clockResolution;
X   if (seconds==screenSaverTimeMouse)
X     {
X***************
X*** 1499,1504 ****
X--- 1499,1505 ----
X   else
X   if (seconds>=screenSaverTime)
X      screenSaver();
X+ #endif /* SEOSf_FreeBSD */
X  }
X  
X  
END-of-setedit/files/patch-editmain.cc
echo x - setedit/files/patch-config.pl
sed 's/^X//' >setedit/files/patch-config.pl << 'END-of-setedit/files/patch-config.pl'
X*** config.pl.orig	Sun Feb 24 02:23:09 2002
X--- config.pl	Sun Feb 24 02:41:10 2002
X***************
X*** 134,139 ****
X--- 134,140 ----
X     # be added for things like FreeBSD or SunOS.
X     $MakeDefsRHIDE[1].=substr($stdcxx,2).' ' unless ($OSf eq 'Linux');
X     $MakeDefsRHIDE[1].='ncurses m ';
X+    $MakeDefsRHIDE[1].='intl ' unless (@conf{'intl'} eq 'no');
X     $MakeDefsRHIDE[1].='gpm ' if @conf{'HAVE_GPM'} eq 'yes';
X     $MakeDefsRHIDE[1].='bz2 ' if @conf{'HAVE_BZIP2'} eq 'yes';
X     $MakeDefsRHIDE[1].=@conf{'mp3lib'}.' ' if (@conf{'mp3'} eq 'yes');
X***************
X*** 153,165 ****
X  $MakeDefsRHIDE[2].=' ../libz' if (@conf{'zlibShipped'} eq 'yes');
X  $MakeDefsRHIDE[2].=' ../libbzip2' if (@conf{'bz2libShipped'} eq 'yes');
X  $MakeDefsRHIDE[2].=' ../libpcre' if (@conf{'PCREShipped'} eq 'yes');
X! $MakeDefsRHIDE[2].=' ../gettext' if (@conf{'intlShipped'} eq 'yes');
X  $MakeDefsRHIDE[3]="TVISION_INC=$TVInclude";
X  $test='';
X  $test.=' ../libz' if (@conf{'zlibShipped'} eq 'yes');
X  $test.=' ../libbzip2' if (@conf{'bz2libShipped'} eq 'yes');
X  $test.=' ../libpcre' if (@conf{'PCREShipped'} eq 'yes');
X! $test.=' ../gettext' if (@conf{'intlShipped'} eq 'yes');
X  $MakeDefsRHIDE[4]='SUPPORT_INC='.$test;
X  # The support libraries shouldn't generate dependencies
X  $MakeDefsRHIDE[0].=$test;
X--- 154,166 ----
X  $MakeDefsRHIDE[2].=' ../libz' if (@conf{'zlibShipped'} eq 'yes');
X  $MakeDefsRHIDE[2].=' ../libbzip2' if (@conf{'bz2libShipped'} eq 'yes');
X  $MakeDefsRHIDE[2].=' ../libpcre' if (@conf{'PCREShipped'} eq 'yes');
X! #$MakeDefsRHIDE[2].=' ../gettext' if (@conf{'intlShipped'} eq 'yes');
X  $MakeDefsRHIDE[3]="TVISION_INC=$TVInclude";
X  $test='';
X  $test.=' ../libz' if (@conf{'zlibShipped'} eq 'yes');
X  $test.=' ../libbzip2' if (@conf{'bz2libShipped'} eq 'yes');
X  $test.=' ../libpcre' if (@conf{'PCREShipped'} eq 'yes');
X! #$test.=' ../gettext' if (@conf{'intlShipped'} eq 'yes');
X  $MakeDefsRHIDE[4]='SUPPORT_INC='.$test;
X  # The support libraries shouldn't generate dependencies
X  $MakeDefsRHIDE[0].=$test;
END-of-setedit/files/patch-config.pl
echo x - setedit/files/patch-Makefile
sed 's/^X//' >setedit/files/patch-Makefile << 'END-of-setedit/files/patch-Makefile'
X*** makes/Makefile.orig	Wed Nov  7 16:11:19 2001
X--- makes/Makefile	Fri Mar  1 15:10:00 2002
X***************
X*** 1,5 ****
X--- 1,8 ----
X  srcdir=.
X  VPATH=$(srcdir)
X+ SET_USE_FHS=yes
X+ EXTRA_INS_OPS=--no-compress
X+ MPREFIX=/usr/local
X  
X  ifneq ($(strip $(DJDIR)),)
X  export editor_OS:=DJGPP
END-of-setedit/files/patch-Makefile
echo x - setedit/files/tvision-patch
sed 's/^X//' >setedit/files/tvision-patch << 'END-of-setedit/files/tvision-patch'
X*** include/cl/needs.h.orig	Fri Mar  1 19:52:00 2002
X--- include/cl/needs.h	Fri Mar  1 19:52:52 2002
X***************
X*** 78,83 ****
X--- 78,86 ----
X    #define NEEDS_ITOA
X    #define NEEDS_NL_LANGINFO
X    #define NEEDS_GETLINE
X+   #if defined(TVOSf_FreeBSD)
X+ 	#define NEEDS_GETOPT
X+   #endif
X   #endif
X  #endif
X  
END-of-setedit/files/tvision-patch
echo x - setedit/files/patch-infINSTALL.MAK
sed 's/^X//' >setedit/files/patch-infINSTALL.MAK << 'END-of-setedit/files/patch-infINSTALL.MAK'
X*** distrib/infINSTALL.MAK.orig	Tue Sep 11 17:58:24 2001
X--- distrib/infINSTALL.MAK	Sat Mar  2 17:52:32 2002
X***************
X*** 33,40 ****
X  data_dir=share
X  info_dir=info
X  doc_dir=doc
X  
X! files:=$(shell find $(bin_dir) $(data_dir) $(info_dir) $(doc_dir) \
X  	-not -type d -print)
X  ALL_FILES=$(addprefix $(prefix)/,$(files))
X  
X--- 33,41 ----
X  data_dir=share
X  info_dir=info
X  doc_dir=doc
X+ man_dir=man
X  
X! files:=$(shell find $(bin_dir) $(data_dir) $(info_dir) $(doc_dir) $(man_dir) \
X  	-not -type d -print)
X  ALL_FILES=$(addprefix $(prefix)/,$(files))
X  
END-of-setedit/files/patch-infINSTALL.MAK
echo x - setedit/Makefile
sed 's/^X//' >setedit/Makefile << 'END-of-setedit/Makefile'
X# New ports collection makefile for:	setedit
X# Date created:				Mar 1, 2002
X# Whom:					Andrew Shevtsov <nyxo@dnuc.polyn.kiae.su>
X#
X# $FreeBSD$
X#
X
XPORTNAME=	setedit
XPORTVERSION=	0.4.54
XCATEGORIES=	editors
XMASTER_SITES=	${MASTER_SITE_SUNSITE}
XMASTER_SITE_SUBDIR=	devel/lang/c++
X
XMAINTAINER=	nyxo@dnuc.polyn.kiae.su
X
XLIB_DEPENDS=	intl.1:${PORTSDIR}/devel/gettext \
X		rhtv.1:${PORTSDIR}/editors/setedit:rhtv
XRUN_DEPENDS=	bzip2:${PORTSDIR}/archivers/bzip2
X
XWRKSRC=		${WRKDIR}/${PORTNAME}
X
XMAN1=		setedit.1 infview.1
XMANCOMPRESSED=	yes
X
XRHTVISION=	rhtvision
XRHTVVERSION=	1.1.4
XRHTVTARGZ=	${RHTVISION}-${RHTVVERSION}.src.tar.gz
XRHDIST=		ftp://dnuc.polyn.kiae.su/pub/tvision
X
XINSTALLS_SHLIB=	yes
XUSE_GMAKE=	yes
XHAS_CONFIGURE=	yes
XCONFIGURE_ARGS=	\
X		--prefix=${PREFIX} \
X		--tv-include=${PREFIX}/include/rhtvision \
X		--tv-lib=${PREFIX}/lib \
X		--cflags= --cxxflags= \
X		--without-mp3
X
Xpost-patch:
X	@${PERL} -pi -e "s@make -f@gmake -f@g" ${WRKSRC}/distrib/INSTALL.LINUX
X	@${PERL} -pi -e "s@-not@\!@g" ${WRKSRC}/distrib/*INSTALL.MAK
X	@${PERL} -pi -e "s@.*/usr/info.*@@g" ${WRKSRC}/distrib/*REMOVE_UNNEEDED
X	@${PERL} -pi -e "s@.*/usr/doc.*@@g" ${WRKSRC}/distrib/REMOVE_UNNEEDED
X	@${PERL} -pi -e "s@m\(\'make@m\(\'gmake@g" ${WRKSRC}/makes/linux/comp*.pl
X	@${PERL} -pi -e "s@FHS\.\'\/man@\.\'\/man@g" ${WRKSRC}/makes/linux/comp*.pl
X	@${PERL} -pi -e "s@FHS\.\'\/info@\.\'\/info@g" ${WRKSRC}/makes/linux/comp*.pl
X
Xpost-configure:
X	@${PERL} -pi -e "s@GS=@GS+=@g" ${WRKSRC}/Makefile
X
Xrhtv:
X	@${ECHO_MSG} "fetching TVision ${RHTVVERSION}..."
X	@if test ! -d ${PORTSDIR}/distfiles/${PORTNAME} ; then \
X		${MKDIR} ${PORTSDIR}/distfiles/${PORTNAME} ; fi
X	@if test ! -f ${PORTSDIR}/distfiles/${PORTNAME}/${RHTVTARGZ} ; then \
X		(cd ${PORTSDIR}/distfiles/${PORTNAME} ; \
X		${FETCH_CMD} ${RHDIST}/${RHTVTARGZ} ) ; fi
X	@if test ! -d ${PORTSDIR}/distfiles/${PORTNAME}/tvision ; then \
X		(cd ${PORTSDIR}/distfiles/${PORTNAME} ; \
X		${TAR} xfz ${RHTVTARGZ} ; cd tvision ; \
X		${PATCH} < ${PORTSDIR}/editors/${PORTNAME}/files/tvision-patch ) ; fi
X	@(cd ${PORTSDIR}/distfiles/${PORTNAME}/tvision ; \
X		./configure --prefix=${PREFIX} ; ${GMAKE} install ; )
X	@(cd ${PREFIX}/lib ; ${LN} -sf librhtv.so.${RHTVVERSION} librhtv.so.1)
X	@${CAT} pkg-plist.${PORTNAME} pkg-plist.${RHTVISION} > pkg-plist
X
Xpre-install:
X	@if test ! -f pkg-plist ; then \
X		${CP} pkg-plist.${PORTNAME} pkg-plist ; fi
X
X.include <bsd.port.mk>
END-of-setedit/Makefile
echo x - setedit/distinfo
sed 's/^X//' >setedit/distinfo << 'END-of-setedit/distinfo'
XMD5 (setedit-0.4.54.tar.gz) = 86e4d5f345f9667c1d77a805d6a29173
END-of-setedit/distinfo
echo x - setedit/pkg-descr
sed 's/^X//' >setedit/pkg-descr << 'END-of-setedit/pkg-descr'
XSetedit is a friendly console text editor with the look and feel of the Borland
Xeditors for DOS. Setedit based on TVision library. InfView is a good replacement
Xfor the info-stantalone program also included. The main objetive of InfView is 
Xto give to the user a friendly and easy to learn tool to browse the 
Xdocumentation found in info format.
X
XWWW: http://setedit.sourceforge.net/
END-of-setedit/pkg-descr
echo x - setedit/pkg-plist.rhtvision
sed 's/^X//' >setedit/pkg-plist.rhtvision << 'END-of-setedit/pkg-plist.rhtvision'
Xlib/librhtv.a
Xlib/librhtv.so
Xlib/librhtv.so.1
Xlib/librhtv.so.1.1.4
Xlib/libtvfintl.a
Xinclude/rhtvision/compatlayer.h
Xinclude/rhtvision/tv.h
Xinclude/rhtvision/tv/app.h
Xinclude/rhtvision/tv/applictn.h
Xinclude/rhtvision/tv/backgrnd.h
Xinclude/rhtvision/tv/button.h
Xinclude/rhtvision/tv/calc.h
Xinclude/rhtvision/tv/chdirdlg.h
Xinclude/rhtvision/tv/checkbox.h
Xinclude/rhtvision/tv/clrdisp.h
Xinclude/rhtvision/tv/clrdlg.h
Xinclude/rhtvision/tv/clrgroup.h
Xinclude/rhtvision/tv/clrgrpli.h
Xinclude/rhtvision/tv/clritem.h
Xinclude/rhtvision/tv/clriteml.h
Xinclude/rhtvision/tv/clrselct.h
Xinclude/rhtvision/tv/cluster.h
Xinclude/rhtvision/tv/cmdset.h
Xinclude/rhtvision/tv/collectn.h
Xinclude/rhtvision/tv/colorsel.h
Xinclude/rhtvision/tv/configtv.h
Xinclude/rhtvision/tv/desktop.h
Xinclude/rhtvision/tv/dialog.h
Xinclude/rhtvision/tv/dialogs.h
Xinclude/rhtvision/tv/dircoll.h
Xinclude/rhtvision/tv/direntr.h
Xinclude/rhtvision/tv/event.h
Xinclude/rhtvision/tv/dirlibo.h
Xinclude/rhtvision/tv/drawbuf.h
Xinclude/rhtvision/tv/editors.h
Xinclude/rhtvision/tv/eventqu.h
Xinclude/rhtvision/tv/filecoll.h
Xinclude/rhtvision/tv/filedlg.h
Xinclude/rhtvision/tv/filelist.h
Xinclude/rhtvision/tv/fileview.h
Xinclude/rhtvision/tv/filinfpn.h
Xinclude/rhtvision/tv/filinpln.h
Xinclude/rhtvision/tv/findrepl.h
Xinclude/rhtvision/tv/fpbase.h
Xinclude/rhtvision/tv/fpstream.h
Xinclude/rhtvision/tv/frame.h
Xinclude/rhtvision/tv/gkey.h
Xinclude/rhtvision/tv/group.h
Xinclude/rhtvision/tv/history.h
Xinclude/rhtvision/tv/histvwer.h
Xinclude/rhtvision/tv/histwind.h
Xinclude/rhtvision/tv/ifpstrm.h
Xinclude/rhtvision/tv/indicato.h
Xinclude/rhtvision/tv/inputln.h
Xinclude/rhtvision/tv/intl.h
Xinclude/rhtvision/tv/iopstrm.h
Xinclude/rhtvision/tv/ipstream.h
Xinclude/rhtvision/tv/label.h
Xinclude/rhtvision/tv/listbox.h
Xinclude/rhtvision/tv/lstviewr.h
Xinclude/rhtvision/tv/menu.h
Xinclude/rhtvision/tv/menubar.h
Xinclude/rhtvision/tv/menubox.h
Xinclude/rhtvision/tv/menuitem.h
Xinclude/rhtvision/tv/menus.h
Xinclude/rhtvision/tv/menuview.h
Xinclude/rhtvision/tv/mnoselct.h
Xinclude/rhtvision/tv/msgbox.h
Xinclude/rhtvision/tv/no_mss.h
Xinclude/rhtvision/tv/nscoll.h
Xinclude/rhtvision/tv/nssorcol.h
Xinclude/rhtvision/tv/object.h
Xinclude/rhtvision/tv/objects.h
Xinclude/rhtvision/tv/ofpstrm.h
Xinclude/rhtvision/tv/opstream.h
Xinclude/rhtvision/tv/otstream.h
Xinclude/rhtvision/tv/palette.h
Xinclude/rhtvision/tv/parmtext.h
Xinclude/rhtvision/tv/point.h
Xinclude/rhtvision/tv/preadobj.h
Xinclude/rhtvision/tv/program.h
Xinclude/rhtvision/tv/pstream.h
Xinclude/rhtvision/tv/pwritobj.h
Xinclude/rhtvision/tv/radiobtn.h
Xinclude/rhtvision/tv/rect.h
Xinclude/rhtvision/tv/rescoll.h
Xinclude/rhtvision/tv/resfile.h
Xinclude/rhtvision/tv/resitem.h
Xinclude/rhtvision/tv/resource.h
Xinclude/rhtvision/tv/screen.h
Xinclude/rhtvision/tv/scrlbar.h
Xinclude/rhtvision/tv/scroller.h
Xinclude/rhtvision/tv/searchrc.h
Xinclude/rhtvision/tv/sitem.h
Xinclude/rhtvision/tv/sortcoll.h
Xinclude/rhtvision/tv/sortlibo.h
Xinclude/rhtvision/tv/statsdef.h
Xinclude/rhtvision/tv/statsitm.h
Xinclude/rhtvision/tv/statslin.h
Xinclude/rhtvision/tv/stddlg.h
Xinclude/rhtvision/tv/streambl.h
Xinclude/rhtvision/tv/strilist.h
Xinclude/rhtvision/tv/strinrec.h
Xinclude/rhtvision/tv/strlistm.h
Xinclude/rhtvision/tv/strmblcl.h
Xinclude/rhtvision/tv/strmblty.h
Xinclude/rhtvision/tv/strncoll.h
Xinclude/rhtvision/tv/sttctext.h
Xinclude/rhtvision/tv/submenu.h
Xinclude/rhtvision/tv/system.h
Xinclude/rhtvision/tv/terminal.h
Xinclude/rhtvision/tv/textdev.h
Xinclude/rhtvision/tv/textview.h
Xinclude/rhtvision/tv/tkeyext.h
Xinclude/rhtvision/tv/tkeys.h
Xinclude/rhtvision/tv/tobjstrm.h
Xinclude/rhtvision/tv/ttypes.h
Xinclude/rhtvision/tv/tvconfig.h
Xinclude/rhtvision/tv/tvedit.h
Xinclude/rhtvision/tv/tvobjs.h
Xinclude/rhtvision/tv/tvutil.h
Xinclude/rhtvision/tv/validate.h
Xinclude/rhtvision/tv/video.h
Xinclude/rhtvision/tv/view.h
Xinclude/rhtvision/tv/views.h
Xinclude/rhtvision/tv/window.h
Xinclude/rhtvision/tv/yes_mss.h
X@dirrm include/rhtvision/tv
Xinclude/rhtvision/cl/dir.h
Xinclude/rhtvision/cl/dirent.h
Xinclude/rhtvision/cl/fnmatch.h
Xinclude/rhtvision/cl/getopt.h
Xinclude/rhtvision/cl/glob.h
Xinclude/rhtvision/cl/needs.h
Xinclude/rhtvision/cl/regex.h
Xinclude/rhtvision/cl/strstream.h
Xinclude/rhtvision/cl/unistd.h
Xinclude/rhtvision/cl/utime.h
Xinclude/rhtvision/cl/utsname.h
X@dirrm include/rhtvision/cl
X@dirrm include/rhtvision
END-of-setedit/pkg-plist.rhtvision
echo x - setedit/pkg-plist.setedit
sed 's/^X//' >setedit/pkg-plist.setedit << 'END-of-setedit/pkg-plist.setedit'
Xbin/e
Xbin/infview
Xbin/setedit
Xinfo/infview.info.gz
Xinfo/sdg.info.gz
Xinfo/setedit.info.gz
Xshare/doc/infview/copying.dj
Xshare/doc/infview/copying.gpl
Xshare/doc/infview/copying.lgp
Xshare/doc/infview/copying.rh
Xshare/doc/infview/copyrigh
Xshare/doc/infview/infview.txt.gz
Xshare/doc/infview/readme.1st
X@dirrm share/doc/infview
Xshare/doc/setedit/change.log.gz
Xshare/doc/setedit/copying.dj
Xshare/doc/setedit/copying.gpl
Xshare/doc/setedit/copying.lgp
Xshare/doc/setedit/copying.rh
Xshare/doc/setedit/copyrigh
Xshare/doc/setedit/faq.txt
Xshare/doc/setedit/infview.txt.gz
Xshare/doc/setedit/readme.1st
Xshare/doc/setedit/sdg.txt.gz
Xshare/doc/setedit/setedit.txt.gz
X@dirrm share/doc/setedit
Xshare/infview/readme.1st
X@dirrm share/infview
Xshare/locale/de/LC_MESSAGES/setedit.mo
Xshare/locale/de/LC_MESSAGES/setedit.mo
Xshare/locale/de/LC_MESSAGES/setedit850.mo
Xshare/locale/de/LC_MESSAGES/setedit850.mo
Xshare/locale/es/LC_MESSAGES/setedit.mo
Xshare/locale/es/LC_MESSAGES/setedit.mo
Xshare/locale/es/LC_MESSAGES/setedit850.mo
Xshare/locale/es/LC_MESSAGES/setedit850.mo
Xshare/setedit/asm51.pmc
Xshare/setedit/clippmac.pmc
Xshare/setedit/cpmacros.pmc
Xshare/setedit/editor.tip
Xshare/setedit/errors.cle
Xshare/setedit/eterm/Setedit/MAIN
Xshare/setedit/eterm/Setedit/Setedit.menu
X@dirrm share/setedit/eterm/Setedit
Xshare/setedit/eterm/readme.txt
Xshare/setedit/eterm/xterm-eterm-tv
X@dirrm share/setedit/eterm
Xshare/setedit/examples.slp
Xshare/setedit/html.frt
Xshare/setedit/htmlmac.pmc
Xshare/setedit/macros.slp
Xshare/setedit/menubind.smn
Xshare/setedit/multi.frt
Xshare/setedit/perlmac.pmc
Xshare/setedit/pmacros.pmc
Xshare/setedit/readme.1st
Xshare/setedit/redmond.smn
Xshare/setedit/simple.tip
Xshare/setedit/syntaxhl.shl
Xshare/setedit/tex.frt
Xshare/setedit/txhgen-i.htm
Xshare/setedit/txhgen-i.txi
Xshare/setedit/txhgen-i.txt
X@dirrm share/setedit
END-of-setedit/pkg-plist.setedit
echo x - setedit/pkg-comment
sed 's/^X//' >setedit/pkg-comment << 'END-of-setedit/pkg-comment'
XA console text editor look like the Borland editors for DOS
END-of-setedit/pkg-comment
exit


	
>Release-Note:
>Audit-Trail:
>Unformatted:

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-ports" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200203021531.g22FVlg68864>