mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-02 01:20:54 +00:00
9168b9be03
* 'ls --color' -> 'ls -G' * adjusted manpath NOTE: Submitter is encouraged to submit the changes to the author. PR: 105154 (based on) Submitted by: ingo.petersen.webfreenet.de
32 lines
942 B
Plaintext
32 lines
942 B
Plaintext
--- ./tcshrc_config.orig Fri Aug 13 19:21:42 2004
|
|
+++ ./tcshrc_config Tue Dec 26 14:13:16 2006
|
|
@@ -36,7 +36,7 @@
|
|
SYSTEM=y
|
|
;;
|
|
-v|--verbose)
|
|
- VERBOSE=--verbose
|
|
+ VERBOSE=-v
|
|
;;
|
|
-*)
|
|
usage
|
|
@@ -62,7 +62,18 @@
|
|
/bin/cp -f ${VERBOSE} ${SOURCE}/tcshrc.set ${HOME}/.tcshrc.set
|
|
/bin/cp -f ${VERBOSE} ${SOURCE}/tcshrc.alias ${HOME}/.tcshrc.alias
|
|
/bin/cp -f ${VERBOSE} ${SOURCE}/tcshrc.hosts ${HOME}/.tcshrc.hosts
|
|
- /bin/cp -u ${VERBOSE} ${SOURCE}/tcshrc.local ${HOME}/.tcshrc.local
|
|
+
|
|
+ if [ "`uname`" != "Linux" ] ; then
|
|
+ if [ -e "${HOME}/.tcshrc.local" ] ; then
|
|
+ /bin/cp -f ${VERBOSE} ${HOME}/.tcshrc.local ${HOME}/.tcshrc.local.old
|
|
+ /bin/cp -f ${VERBOSE} ${SOURCE}/tcshrc.local ${HOME}/.tcshrc.local
|
|
+
|
|
+ else /bin/cp -f ${VERBOSE} ${SOURCE}/tcshrc.local ${HOME}/.tcshrc.local
|
|
+ fi
|
|
+ else /bin/cp -u ${VERBOSE} ${SOURCE}/tcshrc.local ${HOME}/.tcshrc.local
|
|
+
|
|
+ fi
|
|
+
|
|
echo " done." >&2
|
|
exit 0
|
|
fi
|