Bug 21811 - New Port: editors/dte - simple text editor with MSDOS EDIT keybindings.
Summary: New Port: editors/dte - simple text editor with MSDOS EDIT keybindings.
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: freebsd-ports (Nobody)
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2000-10-07 07:00 UTC by sjhports
Modified: 2000-11-02 15:51 UTC (History)
0 users

See Also:


Attachments
file.shar (5.08 KB, text/plain)
2000-10-07 07:00 UTC, sjhports
no flags Details

Note You need to log in before you can comment on or make changes to this bug.
Description sjhports 2000-10-07 07:00:01 UTC
	A simple text editor that uses many of MSDOS EDIT's command shortcuts keybindings.
	Also makes a nice text editor for use with mailers like mutt.
Comment 1 Maxim Sobolev freebsd_committer freebsd_triage 2000-11-02 15:44:06 UTC
State Changed
From-To: open->closed

Committed with several changes/cleanups: 
- you don't have to strip installed binary if `-s' install(1) flags used 
(${INSTALL_PROGRAM} includes it). 
- mkstemp(3) function used improperly in your patch - unlike mktemp(3) it's not 
only constructs filename for temporary file, but (and it's the difference 
between those two functions) opens it and returns descriptor of this file. 
Therefore you don't have to open this file again. RTFM. 
- There is no gurantee that USER variable is set, therefore you can't just replace 
cuserid(3) with getenv("USER"). 

I also made this port respecting global CFLAGS.