Instal w/Darwinports successful; pgm not found

mk9y

Registered
Here is what I did:

% sudo mkdir /opt/local/bin/portslocation/dports/abiword
% cd /opt/local/bin/portslocation/dports/abiword
% sudo port install abiword
---> Fetching abiword
...
---> Cleaning abiword
% man abiword
No manual entry for abiword


I'm using tcsh:

k% echo $SHELL
/bin/tcsh

Here is the rc file:

% more .tcshrc
setenv LC_CTYPE en_US.UTF-8
#
# Set paths
#
set path = (/Developer/Tools \
/Developer/Applications \
/usr/texbin \
/usr/local/bin \
/usr/bin \
/bin \
/usr/local/sbin \
/usr/sbin \
/sbin \
/usr/local/src/RTcmix-4.0.1/bin \
/Library/Frameworks/Python.framework/Versions/Current/bin \
/opt/local/bin \
/Applications/~LocalApps/sound/Cog \
/Users/mk/bin \
/usr/local/netpbm/bin \
./ )
#
# Set the DISPLAY variable -- works for Apple X11 with Fast User Switching
#
if (! $?DISPLAY && ! $?SSH_CONNECTION ) then
setenv DISPLAY `ps -ax | grep X11.app | grep -v Xauthority | grep -v grep | awk '{print $7}' `.0
if ( $DISPLAY == '.0' )then
setenv DISPLAY :0.0
endif
#
# alias cd 'cd \!*;SetTab;SetTitle'
#
# Start the label update process on login to window
#
setenv LC_CTYPE en_US.UTF-8
# echo "lias SetTitle 'settitle \[tcsh\]\ \ \ $HOST:r:r\:\:$cwd ' "
# alias settab 'echo -n "Dlias SetTab 'settab $cwd:h:t/$cwd:t <CA><CA><CA><CA>'
# ISPLAY has been set to $DISPLAY"

test -r /sw/bin/init.csh && source /sw/bin/init.csh
#
# Initialize FINK, if it is present
#
if ( -d /sw/bin ) then
source /sw/bin/init.csh
endif

##
# Your previous /Users/mk/.tcshrc file was backed up as /Users/mk/.tcshrc.macports-saved_2009-01-07_at_13:08:30
##

# MacPorts Installer addition on 2009-01-07_at_13:08:30: adding an appropriate PATH variable for use with MacPorts.
setenv PATH /opt/local/bin:/opt/local/sbin:$PATH
# Finished adapting your PATH environment variable for use with MacPorts.


Any help appreciate.
 
Back
Top