rpms/xtide/devel sources, 1.4, 1.5 xtide-2.9dev-rcinit.diff, NONE, 1.1 xtide-README.fedora, NONE, 1.1 xtide-get_harmonics-data.sh, NONE, 1.1 xtide.desktop, 1.2, 1.3 xtide.spec, 1.11, 1.12 xttpd-wrapper.sh, NONE, 1.1 xttpd.conf, NONE, 1.1 dead.package, 1.1, NONE

Mamoru Tasaka (mtasaka) fedora-extras-commits at redhat.com
Sun Nov 26 13:47:52 UTC 2006


Author: mtasaka

Update of /cvs/extras/rpms/xtide/devel
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv19607

Added Files:
	sources xtide-2.9dev-rcinit.diff xtide-README.fedora 
	xtide-get_harmonics-data.sh xtide.desktop xtide.spec 
	xttpd-wrapper.sh xttpd.conf 
Removed Files:
	dead.package 
Log Message:
unorphan xtide (bug 211626)


Index: sources
===================================================================
RCS file: sources
diff -N sources
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ sources	26 Nov 2006 13:47:22 -0000	1.5
@@ -0,0 +1 @@
+efc6b3eb603e5b51c13c5dbb7bd29548  xtide-2.9dev-20061122.tar.bz2

xtide-2.9dev-rcinit.diff:

--- NEW FILE xtide-2.9dev-rcinit.diff ---
--- rc.xttpd.fedora	2006-11-23 07:22:31.000000000 +0900
+++ rc.xttpd	2006-11-23 20:33:49.000000000 +0900
@@ -26,22 +26,15 @@
 start(){
     echo -n $"Starting $PROG: "
     if ! test -f "$DAEMON" ; then 
-	echo $"$DAEMON is not set." >&2
-	echo_failure
+	echo -n $"$DAEMON is not set."
+	failure
 	echo
 	RETVAL=1
 	return $RETVAL
     fi
     if test -z "$PORT" ; then
-	echo $"PORT environment is not set." >&2
-	echo_failure
-	echo
-	RETVAL=1
-	return $RETVAL
-    fi
-    if test -z "$HOME" ; then
-	echo $"HOME environment is not set." >&2
-	echo_failure
+	echo -n $"PORT environment is not set."
+	failure
 	echo
 	RETVAL=1
 	return $RETVAL
@@ -100,3 +93,4 @@
 esac
 
 exit $?
+


--- NEW FILE xtide-README.fedora ---
================================================
# xtide-README.fedora
# Written by Patrice Dumas and Mamoru Tasaka

# If you have some questions, please report it
# with redhat bugzilla:
# https://bugzilla.redhat.com/bugzilla/index.cgi
================================================

Availability and installation of harmonics files
================================================

To use xtide and related utilities (like xttpd, 
tideEditor), you need an harmonics file.
However, existing files cannot be distributed as part of Fedora, 
because their license restricts commercial redistribution and selling,
which is too restrictive for Fedora. These files should therefore 
be installed after the package installation by yourself.

Such files are available at:
http://www.flaterco.com/xtide/files.html
As the time of writing, the latest harmonics file is:
ftp://ftp.flaterco.com/xtide/harmonics-dwf-20060708.tcd.bz2
The utilities can only use uncompressed harmonics files.

There are 2 possibilities to have the utilities become aware of
the harmonics file location:

1) by editing /etc/xtide.conf, and setting the first line of the file
  to the path of the directory containing the harmonics files, or  
  to the harmonics file location (the utilities will also accept a colon `:' 
  delimited list of paths). 
  The second line of /etc/xtide.conf sets the directory which 
  contains world vector shoreline data. The second line can accept only
  one directory and cannot be colon-delimited.
  
  The default content of /etc/xtide.conf used by fedora is:

  /usr/share/xtide-harmonics/
  /usr/share/wvs-data/

  which means that all the files in /usr/share/xtide-harmonics
  are considered to be harmonics files and all under /usr/share/wvs-data
  are considered to be WVS data.

2) by setting the environment variable HFILE_PATH. You can also
   set WVS_PATH to specify the directory under which WVS data are
   stored.

You can run the provided script xtide-get_harmonics-data.sh
under /usr/sbin to install harmonics files to 
/usr/share/xtide-harmonics. This script requires 
administrator previledges.


--- NEW FILE xtide-get_harmonics-data.sh ---
#!/bin/sh

DATE=${DATE:-20060708}
INSTALL_DIR=${INSTALL_DIR:-/usr/share/xtide-harmonics/}

FILE=harmonics-dwf-${DATE}.tcd.bz2

if [ "`id -u -n`" != "root" ] ; then
    echo "You must do this by root"
    exit 1
fi

wget -N ftp://ftp.flaterco.com/xtide/$FILE || \
    ( echo ; echo "Downloading failed." ; exit 1 )

bzip2 -d $FILE
mkdir -p $INSTALL_DIR
install -m 644 harmonics-dwf-${DATE}.tcd $INSTALL_DIR
rm -f ${FILE%.bz2}


Index: xtide.desktop
===================================================================
RCS file: xtide.desktop
diff -N xtide.desktop
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ xtide.desktop	26 Nov 2006 13:47:22 -0000	1.3
@@ -0,0 +1,11 @@
+[Desktop Entry]
+Version=1.0
+Encoding=UTF-8
+Name=XTide
+Comment=Predict tides
+Exec=xtide
+Icon=xtide
+Terminal=false
+Type=Application
+Categories=Application;Science;Education;
+


Index: xtide.spec
===================================================================
RCS file: xtide.spec
diff -N xtide.spec
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ xtide.spec	26 Nov 2006 13:47:22 -0000	1.12
@@ -0,0 +1,382 @@
+%{!?with_harmonics: %define   with_harmonics 0}
+%define          src_date   20061122    
+
+Summary:         Calculate tide all over the world
+Name:            xtide
+Version:         2.9
+Release:         0.2.date%{src_date}%{?dist}
+
+URL:             http://www.flaterco.com/xtide/
+Source0:         ftp://ftp.flaterco.com/xtide/%{name}-%{version}dev-%{src_date}.tar.bz2
+%if %{with_harmonics}
+Source1:         http://harmonics.unh.edu/xtide/harmonics.txt.gz
+%endif
+
+Patch18:         xtide-2.9dev-rcinit.diff
+
+Source11:        xttpd.conf
+Source14:        xtide-get_harmonics-data.sh
+Source15:        xttpd-wrapper.sh
+Source20:        %{name}.desktop
+Source30:        xtide-README.fedora
+
+License:         GPL
+Group:           Applications/Engineering
+BuildRoot:       %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+
+BuildRequires:   autoconf
+
+BuildRequires:   libXaw-devel
+BuildRequires:   libXext-devel
+BuildRequires:   libpng-devel
+BuildRequires:   zlib-devel
+Buildrequires:   desktop-file-utils
+BuildRequires:   libtcd-devel
+%if %{with_harmonics}
+BuildRequires:   tcd-utils
+%endif
+Requires:        wvs-data
+Requires:        xtide-common
+
+Requires(pre):      %{_sbindir}/useradd
+Requires(preun):    /sbin/service
+Requires(preun):    /sbin/chkconfig
+Requires(postun):   /sbin/service
+Requires(post):     /sbin/chkconfig
+
+%package         common
+Summary:         Xtide common files
+Group:           Applications/Engineering
+License:         Public Domain
+Requires:        bzip2
+Requires:        wget
+
+%description
+XTide is a package that provides tide and current
+predictions in a wide variety of formats.  Graphs, text listings, and
+calendars can be generated, or a tide clock can be provided on your
+desktop.
+
+XTide can work with X-windows, plain text terminals, or the web. This
+is accomplished with three separate programs: the interactive
+interface (xtide), the non-interactive or command line interface
+(tide), and the web interface.
+
+The algorithm that XTide uses to predict tides is the one used by the
+National Ocean Service in the U.S.  It is significantly more accurate
+than the simple tide clocks that can be bought in novelty stores.
+However, it takes more to predict tides accurately than just a spiffy
+algorithm -- you also need some special data for each and every
+location for which you want to predict tides.  XTide reads this data
+from harmonics files.  See http://www.flaterco.com/xtide/files.html
+for details on where to get these (note: please also see README.fedora
+in common package for Fedora specific issue.).
+
+Ultimately, XTide's predictions can only be as good as the available
+harmonics data.  Due to issues of data availability and of
+compatibility with non-U.S. tide systems, the predictions for
+U.S. locations tend to be a lot better on average than those for
+locations outside of the U.S.  It is up to you to verify that the
+predictions for your locale match up acceptably well with the
+officially sanctioned ones.
+
+    * Deviations of 1 minute from official predictions are typical for
+      U.S. locations having the latest data.
+    * Deviations of 20 minutes are typical for non-U.S. locations or
+      U.S. locations that are using obsolete data.
+    * Much longer deviations indicate a problem.
+
+%description common
+This package contains common files needed by xtide, xttpd and
+tideEditor.
+Please read README.fedora for Fedora specific issue.
+
+%prep
+%setup -q -n %{name}-2.9dev
+
+pushd scripts/Fedora
+%patch18 -p0 -b .fedora
+popd
+
+%build
+export xttpd_user=xttpd
+export xttpd_group=xttpd
+%configure
+
+%{__make} %{?_smp_mflags}
+
+# harmonics file
+%if %{with_harmonics}
+%{__install} -c -p -m 644 %{SOURCE1} .
+%{__gzip} -d harmoni*
+
+for f in harmonics*.txt ; do
+   TCD=${f%.txt}.tcd
+done
+
+build_tide_db $TCD harmonics-*.txt &> harmonics.out
+%endif
+
+echo "%{_datadir}/xtide-harmonics/" > %{name}.conf
+echo "%{_datadir}/wvs-data/" >> %{name}.conf
+
+%install
+%{__rm} -rf $RPM_BUILD_ROOT
+%{__mkdir_p} $RPM_BUILD_ROOT
+ 
+# 1. install xtide
+%{__make} DESTDIR=$RPM_BUILD_ROOT install
+
+%{__mkdir_p} $RPM_BUILD_ROOT%{_sbindir}
+%{__mkdir_p} $RPM_BUILD_ROOT%{_libexecdir}
+
+# xttpd treatment
+# xttpd is wrapped
+%{__install} -c -p -m 755 %{SOURCE14} \
+   $RPM_BUILD_ROOT%{_sbindir}
+%{__mv} $RPM_BUILD_ROOT%{_sbindir}/xttpd $RPM_BUILD_ROOT%{_libexecdir}
+%{__install} -c -p -m 755 %{SOURCE15} $RPM_BUILD_ROOT%{_sbindir}/xttpd
+# ensure xttpd binary installation directory (original
+# wrapper script is hardcorded
+%{__sed} -i -e 's|/usr/libexec|%{_libexecdir}|' \
+   $RPM_BUILD_ROOT%{_sbindir}/xttpd
+
+
+# 1A Install harmonics file
+%{__mkdir_p} ${RPM_BUILD_ROOT}%{_datadir}/%{name}
+%{__mkdir_p} ${RPM_BUILD_ROOT}%{_datadir}/%{name}-harmonics
+%if %{with_harmonics}
+%{__install} -c -p -m 644 harmonics*.tcd \
+   ${RPM_BUILD_ROOT}%{_datadir}/%{name}-harmonics/
+%endif
+
+# 1B Add configuration file
+%{__mkdir_p} ${RPM_BUILD_ROOT}%{_sysconfdir}
+%{__install} -c -p -m 644 %{name}.conf ${RPM_BUILD_ROOT}%{_sysconfdir}/
+
+# 1C Add desktop entry (xtide)
+%{__mkdir_p} $RPM_BUILD_ROOT%{_datadir}/applications
+desktop-file-install \
+   --vendor fedora \
+   --dir $RPM_BUILD_ROOT%{_datadir}/applications \
+   --remove-category Application \
+   %{SOURCE20}
+
+# 1D Install icon
+for f in iconsrc/icon_*_orig.png ; do
+   %{__install} -c -p -m 644 $f $RPM_BUILD_ROOT%{_datadir}/%{name}/
+done
+%{__mkdir_p} $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/16x16/apps/
+%{__mkdir_p} $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/48x48/apps/
+%{__ln_s} -f ../../../../%{name}/icon_16x16_orig.png \
+   $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/16x16/apps/%{name}.png
+%{__ln_s} -f ../../../../%{name}/icon_48x48_orig.png \
+   $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/48x48/apps/%{name}.png
+
+# 1E install xttpd conf file
+%{__mkdir_p} $RPM_BUILD_ROOT%{_sysconfdir}/rc.d/init.d
+%{__mkdir_p} $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig
+%{__mkdir_p} $RPM_BUILD_ROOT%{_sysconfdir}/xtide
+%{__install} -c -p -m 755 scripts/Fedora/rc.xttpd \
+   $RPM_BUILD_ROOT%{_sysconfdir}/rc.d/init.d/xttpd
+%{__install} -c -p -m 644 %{SOURCE11} \
+   $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig/xttpd
+
+# 1F and others
+%{__install} -c -p -m 644 %{SOURCE30} README.fedora
+
+%clean
+%{__rm} -rf $RPM_BUILD_ROOT
+
+%post
+touch --no-create %{_datadir}/icons/hicolor || :
+%{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
+
+/sbin/chkconfig --add xttpd
+
+%postun
+touch --no-create %{_datadir}/icons/hicolor || :
+%{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
+
+if [ $1 -ge 1 ] ; then
+   /sbin/service xttpd condrestart &>/dev/null || :
+fi
+
+%pre 
+%{_sbindir}/useradd \
+   -c "XTide web server" \
+   -d %{_sysconfdir}/%{name} \
+   -r \
+   -s /sbin/nologin \
+   xttpd 2>/dev/null || :
+
+%preun
+if [ $1 = 0 ] ; then
+   /sbin/service xttpd stop &>/dev/null
+   /sbin/chkconfig --del xttpd
+fi
+
+%files common
+%doc README.fedora
+%config(noreplace) %{_sysconfdir}/%{name}.conf
+
+%dir %{_datadir}/%{name}
+%dir %{_datadir}/%{name}-harmonics
+%dir %{_sysconfdir}/%{name}
+%if %{with_harmonics}
+%{_datadir}/%{name}-harmonics/harmonics*.tcd
+%endif
+
+%{_sbindir}/xtide-get*.sh
+
+%files
+%defattr(-,root,root,-)
+
+%doc AUTHORS COPYING README README-QUICK
+# xtide
+%{_mandir}/man1/*tide.1*
+
+%{_datadir}/applications/fedora-%{name}.desktop
+%{_datadir}/icons/hicolor/*/apps/%{name}.png
+%{_datadir}/%{name}/icon_*_orig.png
+
+%{_bindir}/*tide
+
+# xttpd
+%config(noreplace) %{_sysconfdir}/sysconfig/xttpd
+%{_sysconfdir}/rc.d/init.d/xttpd
+
+%{_sbindir}/xttpd
+%{_libexecdir}/xttpd
+%{_datadir}/man/man8/xttpd.8*
+
+%changelog
+* Sun Nov 26 2006 Mamoru Tasaka <mtasaka at ioa.s.u-tokyo.ac.jp> - 2.9-0.2.date20061122
+- Ensure the hardcorded directories in some scripts can be 
+  appropriately changed.
+- Fix some typo in README.fedora
+
+* Thu Nov 23 2006 Mamoru Tasaka <mtasaka at ioa.s.u-tokyo.ac.jp> - 2.9-0.1.date20061122
+- 2.9 dev 20061122 release
+
+* Mon Nov 20 2006 Mamoru Tasaka <mtasaka at ioa.s.u-tokyo.ac.jp> - 2.9-0.1.dev1
+- Version down temporarily
+- re-split libtcd, tcd-utils (see bug 211626)
+- again include xttpd
+
+* Sun Oct 29 2006 Mamoru Tasaka <mtasaka at ioa.s.u-tokyo.ac.jp> - 2.9-0.14.dev20061027
+- xtide-2.9dev20061029, tcd-utils-1.3.11(2005-08-11),
+  update patches.
+- Remove -DCOMPAT114 as required by newer tcd-utils
+- Bump somajor of tcd-utils for API change.
+
+* Fri Oct 27 2006 Mamoru Tasaka <mtasaka at ioa.s.u-tokyo.ac.jp> - 2.9-0.13.dev20061015
+- Fix some change in xtide-2.9dev-change-uidgid.patch
+
+* Fri Oct 27 2006 Mamoru Tasaka <mtasaka at ioa.s.u-tokyo.ac.jp> - 2.9-0.12.dev20061015
+- More restrictive uid/gid mode for xttpd
+- Another fix for xttpd.init
+
+* Thu Oct 26 2006 Mamoru Tasaka <mtasaka at ioa.s.u-tokyo.ac.jp> - 2.9-0.11.dev20061015
+- Other fixes for xttpd.init, xttpd.conf
+- Create "xttpd" user and use xttpd user for daemon.
+
+* Wed Oct 25 2006 Mamoru Tasaka <mtasaka at ioa.s.u-tokyo.ac.jp> - 2.9-0.10.dev20061015
+- xtide doesn't need wrapperd, however, xttpd does.
+- Fix xttpd init script
+
+* Wed Oct 25 2006 Mamoru Tasaka <mtasaka at ioa.s.u-tokyo.ac.jp> - 2.9-0.9.dev20061015
+- Adjustment for WVS data directory change.
+
+* Wed Oct 25 2006 Mamoru Tasaka <mtasaka at ioa.s.u-tokyo.ac.jp> - 2.9-0.8.dev20061015
+- Split WVS data.
+- desktop-file-utils 0.11 change: X-Fedora, Application is no longer
+  accepted (will be fixed in rawhide).
+
+* Wed Oct 25 2006 Mamoru Tasaka <mtasaka at ioa.s.u-tokyo.ac.jp> - 2.9-0.7.dev20061015
+- Drop harmonics data for now.
+- Define WVS_DIR, then rewrite tideEditor-wrapper.sh and wrap xtide
+- Add fedora-specific document
+- Include WVS data
+
+* Sun Oct 22 2006 Mamoru Tasaka <mtasaka at ioa.s.u-tokyo.ac.jp> - 2.9-0.6.dev20061015
+- Install 48x48 icon as well.
+
+* Sun Oct 22 2006 Mamoru Tasaka <mtasaka at ioa.s.u-tokyo.ac.jp> - 2.9-0.5.dev20061015
+- Use icon in xtide source
+- Fix Group entry
+- Re-source profile shell script for easier rebuilding
+
+* Sun Oct 22 2006 Mamoru Tasaka <mtasaka at ioa.s.u-tokyo.ac.jp> - 2.9-0.4.dev20061015
+- Introduce common files package.
+- CFLAGS treatment change.
+- Treak configuration files and their locations.
+
+* Sat Oct 21 2006 Mamoru Tasaka <mtasaka at ioa.s.u-tokyo.ac.jp> - 2.9-0.3.dev20061015
+- Various changes about compilation optflags.
+- Change libtcd soname numbering
+- Sprit xttpd, include scripts
+- tideEditor wrapper script included and desktop files added.
+- use "/sbin/ldconfig -n"
+- Lots of help from Michael Schwendt and Patrice Dumas, thanks!!
+
+* Sat Oct 21 2006 Mamoru Tasaka <mtasaka at ioa.s.u-tokyo.ac.jp> - 2.9-0.2.dev20061015
+- Re-unify libtcd and xtide, and include tcd-utils, 
+  build all at once.
+
+* Fri Oct 20 2006 Mamoru Tasaka <mtasaka at ioa.s.u-tokyo.ac.jp> - 2.9-0.1.dev20061015
+- Resubmit to Fedora Extras (bug #211626)
+- Split libtcd to another package, require tcd-utils to
+  rebuild tcd data.
+
+* Sun May 22 2005 Jeremy Katz <katzj at redhat.com> - 2.8-4
+- rebuild on all arches
+
+* Fri Apr  7 2005 Michael Schwendt <mschwendt[AT]users.sf.net>
+- rebuilt
+
+* Fri Dec 17 2004 David M. Kaplan <dmk at erizo.ucdavis.edu> 0:2.8-2
+- Made a small hack that should make it compile on x86_64 systems.
+
+* Wed Dec 15 2004 David M. Kaplan <dmk at erizo.ucdavis.edu> 0:2.8-1
+- Updated to version 2.8
+- Cleaned up spec file because much of the tricks to get it to work
+  are no longer necessary.
+
+* Mon Dec  8 2003 David M. Kaplan <dmk at erizo.ucdavis.edu> 0:2.6.4-0.fdr.4
+- Removed 644 permissions.
+
+* Tue Dec  2 2003 David M. Kaplan <dmk at erizo.ucdavis.edu> 0:2.6.4-0.fdr.3
+- Fixed problem with debuginfo rpm and lex.xml.c.
+- Changed attributes to 644/755 to agree with Fedora specification.
+
+* Mon Nov 17 2003 David M. Kaplan <dmk at erizo.ucdavis.edu> 0:2.6.4-0.fdr.1
+- Updated to 2.6.4 version of xtide
+
+* Mon Oct 20 2003 David M. Kaplan <dmk at erizo.ucdavis.edu> 0:2.6.3-0.fdr.2
+- Made changes to spec and patch as per Michael Schwendt's suggestions
+
+* Fri Oct 17 2003 David M. Kaplan <dmk at erizo.ucdavis.edu> 0:2.6.3-0.fdr.1
+- Modified spec file to meet requirements for fedora
+
+* Tue Oct 14 2003 David M. Kaplan <dmk at erizo.ucdavis.edu> 2.6.3-0.fdr.0
+- Modify for Fedora submission
+
+* Tue Oct 14 2003 David M. Kaplan <dmkaplan at ucdavis.edu> 2.6.3-0
+- Update to XTide 2.6.3
+
+* Fri Sep 05 2003 David M. Kaplan <dmkaplan at ucdavis.edu>
+- Updated to XTide 2.6.2
+
+* Thu Feb 17 2003 David M. Kaplan <dmkaplan at ucdavis.edu>
+- Updated to XTide 2.6 FINAL (2003-02-12)
+
+* Thu Feb 17 2003 David M. Kaplan <dmkaplan at ucdavis.edu>
+- Updated to XTide 2.6 DEVELOPMENT (2003-02-12)
+
+* Thu Jan 23 2003 David M. Kaplan <dmkaplan at ucdavis.edu>
+- Updated to XTide 2.6 DEVELOPMENT (2003-01-17)
+
+* Sat Dec 28 2002 David M. Kaplan <dmkaplan at ucdavis.edu>
+- First RPM build.
+


--- NEW FILE xttpd-wrapper.sh ---
#!/bin/sh

unset XTTPD_ARG
for ARG in $* ; do
   case $ARG in
      *=* )
	eval export $ARG
        ;;
      * )
        XTTPD_ARG="$XTTPD_ARG $ARG"
	;;
   esac
done
			
exec /usr/libexec/xttpd $XTTPD_ARG

--- NEW FILE xttpd.conf ---
# Originally from debian.
# The following is from debian's comment.
#---------------------------------------------------------
#
# skeleton	example file to build /etc/init.d/ scripts.
#		This file should be used to construct scripts for /etc/init.d.
#
#		Written by Miquel van Smoorenburg <miquels at cistron.nl>.
#		Modified for Debian GNU/Linux
#		by Ian Murdock <imurdock at gnu.ai.mit.edu>.
#
# Version:	@(#)skeleton  1.6  11-Nov-1996  miquels at cistron.nl
#
# This file by Peter S Galbraith <psg at debian.org> for the xtide package.

#---------------------------------------
# Configuration:  
#  
#  Uncommenting the PORT line below enables this daemon at bootup.
#  To start the server after uncommenting the line, there is no need 
#  to reboot, simply invoke:
#                            # /etc/init.d/xttpd start
#
#  PORT: Port number used by xttpd
#   - If you use 80, xttpd will be your standard web server and will be 
#     visible as http://localhost  (Make sure no other web server is installed)
#   - Alternatively, use a higher unprivileged port number (e.g. 8080) to have
#     xttpd running in addition to a standard web server.  xttpd would then 
#     be visble as http://localhost:8080/
#  XTTPD_FEEDBACK:
#   - Set the environment variable XTTPD_FEEDBACK to change the feedback 
#     address email address.
#PORT=8080
#XTTPD_FEEDBACK=user at your.site
#-Edit-lines-above-and-uncomment--------


--- dead.package DELETED ---




More information about the scm-commits mailing list